/lvgl-3.4.0/zephyr/ |
D | lvgl_fs.c | 106 const void *buf, uint32_t btw, uint32_t *bw) in lvgl_fs_write() argument 110 err = fs_write((struct fs_file_t *)file, buf, btw); in lvgl_fs_write() 111 if (err == btw) { in lvgl_fs_write() 113 *bw = btw; in lvgl_fs_write()
|
/lvgl-3.4.0/src/extra/libs/fsdrv/ |
D | lv_fs_fatfs.c | 34 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 168 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write() argument 171 FRESULT res = f_write(file_p, buf, btw, (UINT *)bw); in fs_write()
|
D | lv_fs_posix.c | 41 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 161 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write() argument 164 *bw = write((lv_uintptr_t)file_p, buf, btw); in fs_write()
|
D | lv_fs_stdio.c | 35 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 154 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write() argument 157 *bw = fwrite(buf, 1, btw, file_p); in fs_write()
|
D | lv_fs_win32.c | 33 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 270 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… in fs_write() argument 273 return WriteFile((HANDLE)file_p, buf, btw, (LPDWORD)bw, NULL) in fs_write()
|
/lvgl-3.4.0/src/misc/ |
D | lv_fs.h | 78 …write_cb)(struct _lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw); 183 lv_fs_res_t lv_fs_write(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32_t * bw);
|
D | lv_fs.c | 225 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() argument 238 lv_fs_res_t res = file_p->drv->write_cb(file_p->drv, file_p->file_d, buf, btw, &bw_tmp); in lv_fs_write()
|
/lvgl-3.4.0/examples/porting/ |
D | lv_port_fs_template.c | 31 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 173 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3…
|
/lvgl-3.4.0/docs/overview/ |
D | file-system.md | 63 lv_fs_res_t (*write_cb)(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t … 66 For `file_p`, LVGL passes the return value of `open_cb`, `buf` is the data to write, `btw` is the B…
|