Home
last modified time | relevance | path

Searched refs:LV_FS_RES_INV_PARAM (Results 1 – 8 of 8) sorted by relevance

/lvgl-latest/src/libs/fsdrv/
Dlv_fs_uefi.c199 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_close_cb()
215 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_read_cb()
234 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_write_cb()
255 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_seek_cb()
287 return LV_FS_RES_INV_PARAM; in lv_fs_uefi_seek_cb()
304 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_tell_cb()
405 if(fn == NULL || fn_len == 0) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_dir_read_cb()
406 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_dir_read_cb()
481 if(file_ctx == NULL || file_ctx->interface == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_uefi_dir_close_cb()
Dlv_fs_win32.c192 res = LV_FS_RES_INV_PARAM; in fs_error_from_win32()
331 return LV_FS_RES_INV_PARAM; in fs_tell()
345 return LV_FS_RES_INV_PARAM; in fs_tell()
418 if(fn_len == 0) return LV_FS_RES_INV_PARAM; in fs_dir_read()
Dlv_fs_posix.c221 return LV_FS_RES_INV_PARAM; in fs_seek()
292 if(fn_len == 0) return LV_FS_RES_INV_PARAM; in fs_dir_read()
370 return LV_FS_RES_INV_PARAM; in fs_errno_to_res()
Dlv_fs_stdio.c195 return LV_FS_RES_INV_PARAM; in fs_seek()
282 if(fn_len == 0) return LV_FS_RES_INV_PARAM; in fs_dir_read()
Dlv_fs_fatfs.c261 if(fn_len == 0) return LV_FS_RES_INV_PARAM; in fs_dir_read()
Dlv_fs_littlefs.c248 if(fn_len == 0) return LV_FS_RES_INV_PARAM; in fs_dir_read()
/lvgl-latest/src/misc/
Dlv_fs.c80 return LV_FS_RES_INV_PARAM; in lv_fs_open()
157 return LV_FS_RES_INV_PARAM; in lv_fs_close()
189 if(file_p->drv == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_read()
222 return LV_FS_RES_INV_PARAM; in lv_fs_write()
251 return LV_FS_RES_INV_PARAM; in lv_fs_seek()
280 return LV_FS_RES_INV_PARAM; in lv_fs_tell()
306 if(path == NULL) return LV_FS_RES_INV_PARAM; in lv_fs_dir_open()
346 return LV_FS_RES_INV_PARAM; in lv_fs_dir_read()
351 return LV_FS_RES_INV_PARAM; in lv_fs_dir_read()
371 return LV_FS_RES_INV_PARAM; in lv_fs_dir_close()
Dlv_fs.h46 LV_FS_RES_INV_PARAM, /*Invalid parameter among arguments*/ enumerator