/lvgl-3.7.0/src/font/ |
D | lv_font_loader.c | 203 *res = lv_fs_read(it->fp, &(it->byte_value), 1, NULL); in read_bits() 232 if(lv_fs_read(fp, &length, 4, NULL) != LV_FS_RES_OK in read_label() 233 || lv_fs_read(fp, buf, 4, NULL) != LV_FS_RES_OK in read_label() 245 …if(lv_fs_read(fp, cmap_table, font_dsc->cmap_num * sizeof(cmap_table_bin_t), NULL) != LV_FS_RES_OK… in load_cmaps_tables() 269 if(lv_fs_read(fp, glyph_id_ofs_list, ids_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 286 if(lv_fs_read(fp, unicode_list, list_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 295 … if(lv_fs_read(fp, buf, sizeof(uint16_t) * cmap->list_length, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 317 if(lv_fs_read(fp, &cmaps_subtables_count, sizeof(uint32_t), NULL) != LV_FS_RES_OK) { in load_cmaps() 445 if(lv_fs_read(fp, &glyph_bmp[cur_bmp_size], bmp_size, NULL) != LV_FS_RES_OK) { in load_glyph() 499 if(lv_fs_read(fp, &font_header, sizeof(font_header_bin_t), NULL) != LV_FS_RES_OK) { in lvgl_load_font() [all …]
|
/lvgl-3.7.0/tests/src/test_cases/ |
D | test_fs.c | 38 res = lv_fs_read(&fa, buf, sizeof(buf), &br); in test_read() 42 res = lv_fs_read(&fb, buf, sizeof(buf), &br); in test_read()
|
/lvgl-3.7.0/src/extra/libs/bmp/ |
D | lv_bmp.c | 88 lv_fs_read(&f, headers, 54, NULL); in decoder_info() 141 lv_fs_read(&b.f, header, 54, NULL); in decoder_open() 201 lv_fs_read(&b->f, buf, len * (b->bpp / 8), NULL); in decoder_read_line()
|
/lvgl-3.7.0/src/draw/ |
D | lv_img_decoder.c | 294 res = lv_fs_read(&f, header, sizeof(lv_img_header_t), &rn); in lv_img_decoder_built_in_info() 380 lv_fs_res_t res = lv_fs_read(&user_data->f, fs_buf, len, NULL); in lv_img_decoder_built_in_open() 437 lv_fs_read(&user_data->f, &cur_color, sizeof(lv_color32_t), NULL); in lv_img_decoder_built_in_open() 553 res = lv_fs_read(&user_data->f, buf, btr, &br); in lv_img_decoder_built_in_line_true_color() 633 lv_fs_read(&user_data->f, fs_buf, w, NULL); in lv_img_decoder_built_in_line_alpha() 700 lv_fs_read(&user_data->f, fs_buf, w, NULL); in lv_img_decoder_built_in_line_indexed()
|
/lvgl-3.7.0/src/misc/ |
D | lv_fs.h | 172 lv_fs_res_t lv_fs_read(lv_fs_file_t * file_p, void * buf, uint32_t btr, uint32_t * br);
|
D | lv_fs.c | 205 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() function
|
/lvgl-3.7.0/src/extra/libs/sjpg/ |
D | lv_sjpg.c | 223 res = lv_fs_read(&file, buff, 8, &rn); in decoder_info() 231 res = lv_fs_read(&file, buff, 4, &rn); in decoder_info() 324 lv_fs_read(lv_file_p, buff, (uint32_t)ndata, &rn); in input_func() 516 res = lv_fs_read(&lv_file, buff, 22, &rn); in decoder_open() 564 res = lv_fs_read(&lv_file, buff, 2, &rn); in decoder_open()
|
/lvgl-3.7.0/docs/libs/ |
D | fsdrv.md | 45 Cached reading is also supported if `LV_FS_..._CACHE_SIZE` is set to not `0` value. `lv_fs_read` ca…
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lv_png.c | 87 lv_fs_read(&f, &size, 8, &rn); in decoder_info()
|
D | lodepng.c | 365 res = lv_fs_read(&f, out, size, &br); in lodepng_buffer_file()
|
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 32 lv_fs_read(stream->file, data, to_read, &br); in ttf_cb_stream_read()
|
/lvgl-3.7.0/docs/overview/ |
D | file-system.md | 78 res = lv_fs_read(&f, buf, 8, &read_num);
|
/lvgl-3.7.0/ |
D | Kconfig | 925 int ">0 to cache this number of bytes in lv_fs_read()" 939 int ">0 to cache this number of bytes in lv_fs_read()" 953 int ">0 to cache this number of bytes in lv_fs_read()" 964 int ">0 to cache this number of bytes in lv_fs_read()" 975 int ">0 to cache this number of bytes in lv_fs_read()"
|
/lvgl-3.7.0/src/extra/libs/gif/ |
D | gifdec.c | 648 lv_fs_read(&gif->fd, buf, len, NULL); in f_gif_read()
|