Home
last modified time | relevance | path

Searched refs:dirs (Results 1 – 5 of 5) sorted by relevance

/rk3399_rockchip-uboot/fs/
H A Dfs.c44 struct fs_dir_stream *dirs; in fs_ls_generic() local
48 dirs = fs_opendir(dirname); in fs_ls_generic()
49 if (!dirs) in fs_ls_generic()
52 while ((dent = fs_readdir(dirs))) { in fs_ls_generic()
62 fs_closedir(dirs); in fs_ls_generic()
103 struct fs_dir_stream **dirs) in fs_opendir_unsupported() argument
142 int (*readdir)(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
144 void (*closedir)(struct fs_dir_stream *dirs);
441 struct fs_dir_stream *dirs = NULL; in fs_opendir() local
444 ret = info->opendir(filename, &dirs); in fs_opendir()
[all …]
/rk3399_rockchip-uboot/include/
H A Dfs.h148 struct fs_dirent *fs_readdir(struct fs_dir_stream *dirs);
155 void fs_closedir(struct fs_dir_stream *dirs);
H A Dfat.h204 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp);
205 void fat_closedir(struct fs_dir_stream *dirs);
/rk3399_rockchip-uboot/
H A D.gitignore62 # stgit generated dirs
/rk3399_rockchip-uboot/fs/fat/
H A Dfat.c1175 int fat_readdir(struct fs_dir_stream *dirs, struct fs_dirent **dentp) in fat_readdir() argument
1177 fat_dir *dir = (fat_dir *)dirs; in fat_readdir()
1198 void fat_closedir(struct fs_dir_stream *dirs) in fat_closedir() argument
1200 fat_dir *dir = (fat_dir *)dirs; in fat_closedir()