Home
last modified time | relevance | path

Searched refs:lv_fs_file_t (Results 1 – 4 of 4) sorted by relevance

/lvgl-2.7.6/src/lv_misc/
Dlv_fs.h93 } lv_fs_file_t; typedef
146 lv_fs_res_t lv_fs_open(lv_fs_file_t * file_p, const char * path, lv_fs_mode_t mode);
153 lv_fs_res_t lv_fs_close(lv_fs_file_t * file_p);
170 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br);
180 lv_fs_res_t lv_fs_write(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32_t * bw);
188 lv_fs_res_t lv_fs_seek(lv_fs_file_t * file_p, uint32_t pos);
196 lv_fs_res_t lv_fs_tell(lv_fs_file_t * file_p, uint32_t * pos);
204 lv_fs_res_t lv_fs_trunc(lv_fs_file_t * file_p);
212 lv_fs_res_t lv_fs_size(lv_fs_file_t * file_p, uint32_t * size);
Dlv_fs.c86 lv_fs_res_t lv_fs_open(lv_fs_file_t * file_p, const char * path, lv_fs_mode_t mode) in lv_fs_open()
138 lv_fs_res_t lv_fs_close(lv_fs_file_t * file_p) in lv_fs_close()
191 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br) in lv_fs_read()
212 lv_fs_res_t lv_fs_write(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32_t * bw) in lv_fs_write()
237 lv_fs_res_t lv_fs_seek(lv_fs_file_t * file_p, uint32_t pos) in lv_fs_seek()
258 lv_fs_res_t lv_fs_tell(lv_fs_file_t * file_p, uint32_t * pos) in lv_fs_tell()
281 lv_fs_res_t lv_fs_trunc(lv_fs_file_t * file_p) in lv_fs_trunc()
301 lv_fs_res_t lv_fs_size(lv_fs_file_t * file_p, uint32_t * size) in lv_fs_size()
/lvgl-2.7.6/src/lv_font/
Dlv_font_loader.c24 lv_fs_file_t * fp;
68 static bit_iterator_t init_bit_iterator(lv_fs_file_t * fp);
69 static bool lvgl_load_font(lv_fs_file_t * fp, lv_font_t * font);
70 int32_t load_kern(lv_fs_file_t * fp, lv_font_fmt_txt_dsc_t * font_dsc, uint8_t format, uint32_t sta…
96 lv_fs_file_t file; in lv_font_load()
193 static bit_iterator_t init_bit_iterator(lv_fs_file_t * fp) in init_bit_iterator()
235 static int read_label(lv_fs_file_t * fp, int start, const char * label) in read_label()
252 static bool load_cmaps_tables(lv_fs_file_t * fp, lv_font_fmt_txt_dsc_t * font_dsc, in load_cmaps_tables()
333 static int32_t load_cmaps(lv_fs_file_t * fp, lv_font_fmt_txt_dsc_t * font_dsc, uint32_t cmaps_start) in load_cmaps()
362 static int32_t load_glyph(lv_fs_file_t * fp, lv_font_fmt_txt_dsc_t * font_dsc, in load_glyph()
[all …]
/lvgl-2.7.6/src/lv_draw/
Dlv_img_decoder.c31 lv_fs_file_t * f;
280 lv_fs_file_t file; in lv_img_decoder_built_in_info()
328 lv_fs_file_t f; in lv_img_decoder_built_in_open()