Home | History | Annotate | Download | only in include

Lines Matching refs:DIR

129 typedef struct __dirstream DIR;
132 Return a DIR stream on the directory, or NULL if it could not be opened.
136 extern DIR *opendir (__const char *__name) __nonnull ((1));
143 extern DIR *fdopendir (int __fd);
151 extern int closedir (DIR *__dirp) __nonnull ((1));
156 same DIR stream.
164 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1));
167 extern struct dirent *__REDIRECT (readdir, (DIR *__dirp), readdir64)
175 extern struct dirent64 *readdir64 (DIR *__dirp) __nonnull ((1));
185 extern int readdir_r (DIR *__restrict __dirp,
192 (DIR *__restrict __dirp,
202 extern int readdir64_r (DIR *__restrict __dirp,
210 extern void rewinddir (DIR *__dirp) __THROW __nonnull ((1));
216 extern void seekdir (DIR *__dirp, long int __pos) __THROW __nonnull ((1));
219 extern long int telldir (DIR *__dirp) __THROW __nonnull ((1));
225 extern int dirfd (DIR *__dirp) __THROW __nonnull ((1));
248 /* Scan the directory DIR, calling SELECTOR on each directory entry.
288 /* Similar to `scandir' but a relative DIR name is interpreted relative