Home
last modified time | relevance | path

Searched refs:pos_p (Results 1 – 11 of 11) sorted by relevance

/lvgl-latest/src/libs/fsdrv/
Dlv_fs_arduino_esp_littlefs.cpp24 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()
Dlv_fs_arduino_sd.cpp24 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()
Dlv_fs_memfs.c67 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()
Dlv_fs_littlefs.c27 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()
Dlv_fs_fatfs.c41 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()
Dlv_fs_win32.c45 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()
Dlv_fs_posix.c47 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()
Dlv_fs_stdio.c49 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()
Dlv_fs_uefi.c62 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/
Dlv_port_fs_template.c34 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/
Dlv_fs.h79 lv_fs_res_t (*tell_cb)(lv_fs_drv_t * drv, void * file_p, uint32_t * pos_p);