Home
last modified time | relevance | path

Searched refs:btw (Results 1 – 12 of 12) sorted by relevance

/lvgl-latest/src/libs/fsdrv/
Dlv_fs_arduino_esp_littlefs.cpp22 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()
Dlv_fs_arduino_sd.cpp22 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()
Dlv_fs_fatfs.c39 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()
Dlv_fs_littlefs.c25 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()
Dlv_fs_posix.c45 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()
Dlv_fs_stdio.c47 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()
Dlv_fs_win32.c43 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()
Dlv_fs_uefi.c60 …_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/
Dlv_fs.h77 …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);
Dlv_fs.c40 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/
Dlv_port_fs_template.c31 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/
Dfs.rst157 …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