/lvgl-latest/src/libs/fsdrv/ |
D | lv_fs_arduino_esp_littlefs.cpp | 24 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 178 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 183 *pos_p = lf->file.position(); in fs_tell() 185 return (int32_t)(*pos_p) < 0 ? LV_FS_RES_UNKNOWN : LV_FS_RES_OK; in fs_tell()
|
D | lv_fs_arduino_sd.cpp | 24 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 170 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 175 *pos_p = lf->file.position(); in fs_tell() 177 return (int32_t)(*pos_p) < 0 ? LV_FS_RES_UNKNOWN : LV_FS_RES_OK; in fs_tell()
|
D | lv_fs_memfs.c | 67 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 206 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 209 *pos_p = ((lv_fs_file_t *)file_p)->cache->file_position; in fs_tell()
|
D | lv_fs_littlefs.c | 27 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 185 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 190 *pos_p = lfs_file_tell(lfs, &lf->file); in fs_tell() 192 return (int32_t)(*pos_p) < 0 ? LV_FS_RES_UNKNOWN : LV_FS_RES_OK; in fs_tell()
|
D | lv_fs_fatfs.c | 41 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 219 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 222 *pos_p = f_tell((FIL *)file_p); in fs_tell()
|
D | lv_fs_win32.c | 45 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 326 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 330 if(!pos_p) { in fs_tell() 348 *pos_p = file_pointer.LowPart; in fs_tell()
|
D | lv_fs_posix.c | 47 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 242 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 253 *pos_p = (uint32_t)offset; in fs_tell()
|
D | lv_fs_stdio.c | 49 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 210 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in fs_tell() argument 213 *pos_p = ftell(file_p); in fs_tell()
|
D | lv_fs_uefi.c | 62 static lv_fs_res_t lv_fs_uefi_tell_cb(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 298 static lv_fs_res_t lv_fs_uefi_tell_cb(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p) in lv_fs_uefi_tell_cb() argument 313 *pos_p = (uint32_t) pos; in lv_fs_uefi_tell_cb()
|
/lvgl-latest/examples/porting/ |
D | lv_port_fs_template.c | 34 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p); 201 static lv_fs_res_t fs_tell(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p)
|
/lvgl-latest/src/misc/ |
D | lv_fs.h | 79 lv_fs_res_t (*tell_cb)(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);
|