/lvgl-latest/src/font/ |
D | lv_binfont_loader.c | 179 *res = lv_fs_read(it->fp, &(it->byte_value), 1, NULL); in read_bits() 208 if(lv_fs_read(fp, &length, 4, NULL) != LV_FS_RES_OK in read_label() 209 || lv_fs_read(fp, buf, 4, NULL) != LV_FS_RES_OK in read_label() 221 …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() 245 if(lv_fs_read(fp, glyph_id_ofs_list, ids_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 262 if(lv_fs_read(fp, unicode_list, list_size, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 271 … if(lv_fs_read(fp, buf, sizeof(uint16_t) * cmap->list_length, NULL) != LV_FS_RES_OK) { in load_cmaps_tables() 293 if(lv_fs_read(fp, &cmaps_subtables_count, sizeof(uint32_t), NULL) != LV_FS_RES_OK) { in load_cmaps() 421 if(lv_fs_read(fp, &glyph_bmp[cur_bmp_size], bmp_size, NULL) != LV_FS_RES_OK) { in load_glyph() 475 if(lv_fs_read(fp, &font_header, sizeof(font_header_bin_t), NULL) != LV_FS_RES_OK) { in lvgl_load_font() [all …]
|
/lvgl-latest/tests/src/test_cases/ |
D | test_fs.c | 54 res = lv_fs_read(&fa, buf, sizeof(buf), &br); in test_read() 58 res = lv_fs_read(&fb, buf, sizeof(buf), &br); in test_read() 94 lv_fs_read(f, buf_rd, len, &br); in read_range() 108 lv_fs_read(f, buf_rd, len, &br); in read_next() 237 res = lv_fs_read(&f, buf, amount, &bres); in test_write_read_random()
|
/lvgl-latest/src/libs/bmp/ |
D | lv_bmp.c | 105 lv_fs_read(&dsc->file, headers, 54, NULL); in decoder_info() 166 lv_fs_read(&b.f, header, 54, NULL); in decoder_open() 234 lv_fs_read(&b->f, decoded->data, line_width_byte, NULL); in decoder_get_area()
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_decoder.c | 254 res = lv_fs_read(&file, &src_header, sizeof(src_header), &header_br); in decoder_open_file() 288 res = lv_fs_read(&file, dest, palette_size_bytes, &palette_br); in decoder_open_file() 312 res = lv_fs_read(&file, src_temp, src_stride, &br); in decoder_open_file()
|
/lvgl-latest/src/libs/libpng/ |
D | lv_libpng.c | 102 lv_fs_read(&dsc->file, buf, sizeof(buf), &rn); in decoder_info() 246 res = lv_fs_read(&f, data, data_size, &rn); in alloc_file()
|
/lvgl-latest/src/misc/ |
D | lv_fs.h | 168 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 | 186 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-latest/docs/details/main-components/ |
D | fs.rst | 242 res = lv_fs_read(&f, buf, 8, &read_num); 311 times than ``lv_fs_read`` is called. In the best case where the cache size is 319 to other driver FS functions when the cache is enabled. i.e., ``lv_fs_read`` may call the driver's … 322 ``lv_fs_read`` :sub:`(behavior when cache is enabled)` 330 A["call lv_fs_read and
|
/lvgl-latest/src/libs/freetype/ |
D | lv_ftsystem.c | 284 lv_fs_res_t res = lv_fs_read(file_p, buffer, count, &br); in ft_lv_fs_stream_io()
|
/lvgl-latest/src/libs/lodepng/ |
D | lv_lodepng.c | 103 lv_fs_read(&dsc->file, buf, sizeof(buf), &rn); in decoder_info()
|
D | lodepng.c | 396 res = lv_fs_read(&f, out, size, &br); in lodepng_buffer_file()
|
/lvgl-latest/src/libs/libjpeg_turbo/ |
D | lv_libjpeg_turbo.c | 117 lv_fs_read(&dsc->file, &jpg_signature, sizeof(jpg_signature), &rn); in decoder_info() 248 res = lv_fs_read(&f, data, data_size, &rn); in read_file()
|
/lvgl-latest/docs/details/libs/ |
D | fs.rst | 53 not ``0`` value. :cpp:func:`lv_fs_read` caches this size of data to lower the
|
/lvgl-latest/src/others/xml/ |
D | lv_xml_component.c | 162 lv_fs_read(&f, xml_buf, file_size, &rn); in lv_xml_component_register_from_file()
|
/lvgl-latest/src/libs/tjpgd/ |
D | lv_tjpgd.c | 135 lv_fs_read(f, buff, (uint32_t)ndata, &rn); in input_func()
|
/lvgl-latest/src/libs/bin_decoder/ |
D | lv_bin_decoder.c | 131 res = lv_fs_read(&dsc->file, header, sizeof(lv_image_header_t), &rn); in lv_bin_decoder_info() 952 fs_res = lv_fs_read(f, file_buf, compressed_len, &rn); in decode_compressed() 1081 res |= lv_fs_read(f, buff, btr, br); in fs_read_file_at()
|
/lvgl-latest/src/libs/tiny_ttf/ |
D | lv_tiny_ttf.c | 180 lv_fs_read(stream->file, data, to_read, &br); in ttf_cb_stream_read()
|
/lvgl-latest/src/libs/ffmpeg/ |
D | lv_ffmpeg.c | 687 lv_fs_res_t res = lv_fs_read(file, buf, buf_size, &bytesRead); in ffmpeg_lvfs_read()
|
/lvgl-latest/src/libs/gif/ |
D | gifdec.c | 792 lv_fs_read(&gif->fd, buf, len, NULL); in f_gif_read()
|
/lvgl-latest/ |
D | Kconfig | 1225 int ">0 to cache this number of bytes in lv_fs_read()" 1239 int ">0 to cache this number of bytes in lv_fs_read()" 1253 int ">0 to cache this number of bytes in lv_fs_read()" 1267 int ">0 to cache this number of bytes in lv_fs_read()"
|