Lines Matching refs:buf
38 static lv_fs_res_t fs_read(lv_fs_drv_t * drv, void * file_p, void * buf, uint32_t btr, uint32_t * b…
39 static lv_fs_res_t fs_write(lv_fs_drv_t * drv, void * file_p, const void * buf, uint32_t btw, uint3…
221 char buf[MAX_PATH]; in fs_open() local
222 lv_snprintf(buf, sizeof(buf), LV_FS_WIN32_PATH "%s", path); in fs_open()
225 buf, in fs_open()
259 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
262 return ReadFile((HANDLE)file_p, buf, btr, (LPDWORD)br, NULL) in fs_read()
276 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
279 return WriteFile((HANDLE)file_p, buf, btw, (LPDWORD)bw, NULL) in fs_write()
368 char buf[MAX_PATH_LEN]; in fs_dir_open() local
370 lv_snprintf(buf, sizeof(buf), LV_FS_WIN32_PATH "%s\\*", path); in fs_dir_open()
372 lv_snprintf(buf, sizeof(buf), "%s\\*", path); in fs_dir_open()
376 handle->dir_p = FindFirstFileA(buf, &fdata); in fs_dir_open()