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…
120 char buf[LV_FS_MAX_PATH_LEN]; in fs_open() local
121 lv_snprintf(buf, sizeof(buf), LV_FS_FATFS_PATH "%s", path); in fs_open()
123 FRESULT res = f_open(f, buf, flags); in fs_open()
158 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
161 FRESULT res = f_read(file_p, buf, btr, (UINT *)br); in fs_read()
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()
238 char buf[LV_FS_MAX_PATH_LEN]; in fs_dir_open() local
239 lv_snprintf(buf, sizeof(buf), LV_FS_FATFS_PATH "%s", path); in fs_dir_open()
241 FRESULT res = f_opendir(d, buf); in fs_dir_open()