Lines Matching full:path
74 void * (*open_cb)(struct _lv_fs_drv_t * drv, const char * path, lv_fs_mode_t mode);
81 void * (*dir_open_cb)(struct _lv_fs_drv_t * drv, const char * path);
151 * @param path path to the file beginning with the driver letter (e.g. S:/folder/file.txt)
155 lv_fs_res_t lv_fs_open(lv_fs_file_t * file_p, const char * path, lv_fs_mode_t mode);
204 * @param path path to a directory
207 lv_fs_res_t lv_fs_dir_open(lv_fs_dir_t * rddir_p, const char * path);
241 * @param path pointer to a file name
244 char * lv_fs_up(char * path);
247 * Get the last element of a path (e.g. U:/folder/file -> file)
248 * @param path pointer to a file name
249 * @return pointer to the beginning of the last element in the path
251 const char * lv_fs_get_last(const char * path);