Lines Matching refs:buf
39 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b…
40 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3…
111 char buf[256]; in fs_open() local
112 lv_snprintf(buf, sizeof(buf), LV_FS_POSIX_PATH "%s", path); in fs_open()
114 int f = open(buf, flags, 0666); in fs_open()
144 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b… in fs_read() argument
147 *br = read((lv_uintptr_t)file_p, buf, btr); in fs_read()
160 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
163 *bw = write((lv_uintptr_t)file_p, buf, btw); in fs_write()
214 char buf[256]; in fs_dir_open() local
215 lv_snprintf(buf, sizeof(buf), LV_FS_POSIX_PATH "%s", path); in fs_dir_open()
216 return opendir(buf); in fs_dir_open()
222 char buf[256]; in fs_dir_open() local
223 lv_snprintf(buf, sizeof(buf), LV_FS_POSIX_PATH "%s\\*", path); in fs_dir_open()
226 d = FindFirstFile(buf, &fdata); in fs_dir_open()