Home | History | Annotate | Download | only in include

Lines Matching refs:DIR

128 typedef struct __dirstream DIR;
131 Return a DIR stream on the directory, or NULL if it could not be opened.
135 extern DIR *opendir (__const char *__name) __nonnull ((1));
142 extern DIR *fdopendir (int __fd);
150 extern int closedir (DIR *__dirp) __nonnull ((1));
155 same DIR stream.
163 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1));
166 extern struct dirent *__REDIRECT (readdir, (DIR *__dirp), readdir64)
174 extern struct dirent64 *readdir64 (DIR *__dirp) __nonnull ((1));
184 extern int readdir_r (DIR *__restrict __dirp,
191 (DIR *__restrict __dirp,
201 extern int readdir64_r (DIR *__restrict __dirp,
209 extern void rewinddir (DIR *__dirp) __THROW __nonnull ((1));
215 extern void seekdir (DIR *__dirp, long int __pos) __THROW __nonnull ((1));
218 extern long int telldir (DIR *__dirp) __THROW __nonnull ((1));
224 extern int dirfd (DIR *__dirp) __THROW __nonnull ((1));
247 /* Scan the directory DIR, calling SELECTOR on each directory entry.