Lines Matching full:directory
51 * in directory "dirname".
102 * Directory entry types, matches the subset of DT_x in posix readdir()
105 #define FS_DT_DIR 4 /* directory */
110 * A directory entry, returned by fs_readdir(). Returns information
111 * about the file/directory at the current directory entry position.
127 * fs_opendir - Open a directory
129 * @filename: the path to directory to open
130 * @return a pointer to the directory stream or NULL on error and errno
136 * fs_readdir - Read the next directory entry in the directory stream.
139 * directory entry is no longer valid after calling fs_readdir() again.
140 * After fs_closedir() is called, the returned directory entry is no
143 * @dirs: the directory stream
144 * @return the next directory entry (only valid until next fs_readdir() or
146 * the directory is reached.
151 * fs_closedir - close a directory stream
153 * @dirs: the directory stream