/lvgl-latest/src/libs/fsdrv/ |
D | lv_fs_arduino_esp_littlefs.cpp | 22 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 136 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 140 *bw = lf->file.write((uint8_t *)buf, btw); in fs_write()
|
D | lv_fs_arduino_sd.cpp | 22 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 128 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 132 *bw = lf->file.write((uint8_t *)buf, btw); in fs_write()
|
D | lv_fs_fatfs.c | 39 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 175 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 178 FRESULT res = f_write(file_p, buf, btw, (UINT *)bw); in fs_write()
|
D | lv_fs_littlefs.c | 25 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 142 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 147 *bw = lfs_file_write(lfs, &lf->file, (uint8_t *)buf, btw); in fs_write()
|
D | lv_fs_posix.c | 45 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 183 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 188 ssize_t ret = write(fd, buf, btw); in fs_write()
|
D | lv_fs_stdio.c | 47 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 165 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 168 *bw = fwrite(buf, 1, btw, file_p); in fs_write()
|
D | lv_fs_win32.c | 43 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3… 280 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 283 return WriteFile((HANDLE)file_p, buf, btw, (LPDWORD)bw, NULL) in fs_write()
|
D | lv_fs_uefi.c | 60 …_fs_uefi_write_cb(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw); 228 …v_fs_uefi_write_cb(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t * bw) in lv_fs_uefi_write_cb() argument 232 UINTN buf_size = btw; in lv_fs_uefi_write_cb()
|
/lvgl-latest/src/misc/ |
D | lv_fs.h | 77 …lv_fs_res_t (*write_cb)(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t… 178 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 | 40 static lv_fs_res_t lv_fs_write_cached(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32… 217 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 237 res = lv_fs_write_cached(file_p, buf, btw, &bw_tmp); in lv_fs_write() 240 res = file_p->drv->write_cb(file_p->drv, file_p->file_d, buf, btw, &bw_tmp); in lv_fs_write() 622 static lv_fs_res_t lv_fs_write_cached(lv_fs_file_t * file_p, const void * buf, uint32_t btw, uint32… in lv_fs_write_cached() argument 630 res = file_p->drv->write_cb(file_p->drv, file_p->file_d, buf, btw, bw); in lv_fs_write_cached()
|
/lvgl-latest/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… 169 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3…
|
/lvgl-latest/docs/details/main-components/ |
D | fs.rst | 157 …lv_fs_res_t (*write_cb)(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint32_t… 160 the data to write, ``btw`` is the number of "bytes to write", ``bw`` is the number of
|