Home
last modified time | relevance | path

Searched refs:fs_dir_stream (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/u-boot/include/
H A Dfs.h120 struct fs_dir_stream { struct
133 struct fs_dir_stream *fs_opendir(const char *filename); argument
148 struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs);
155 void fs_closedir(struct fs_dir_stream *dirs);
H A Dfat.h203 int fat_opendir(const char *filename, struct fs_dir_stream **dirsp);
204 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
205 void fat_closedir(struct fs_dir_stream *dirs);
/OK3568_Linux_fs/u-boot/fs/
H A Dfs.c44 struct fs_dir_stream *dirs; in fs_ls_generic()
103 struct fs_dir_stream **dirs) in fs_opendir_unsupported()
136 int (*opendir)(const char *filename, struct fs_dir_stream **dirsp);
142 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
144 void (*closedir)(struct fs_dir_stream *dirs);
438 struct fs_dir_stream *fs_opendir(const char *filename) in fs_opendir()
441 struct fs_dir_stream *dirs = NULL; in fs_opendir()
457 struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs) in fs_readdir()
476 void fs_closedir(struct fs_dir_stream *dirs) in fs_closedir()
/OK3568_Linux_fs/u-boot/fs/fat/
H A Dfat.c1143 struct fs_dir_stream parent;
1149 int fat_opendir(const char *filename, struct fs_dir_stream **dirsp) in fat_opendir()
1165 *dirsp = (struct fs_dir_stream *)dir; in fat_opendir()
1175 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp) in fat_readdir()
1198 void fat_closedir(struct fs_dir_stream *dirs) in fat_closedir()