reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/Unix/Path.inc
  814   DIR *directory = ::opendir(path_null.c_str());
projects/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
   61   DIR *D = opendir(Dir.c_str());
   87   DIR *D = opendir(Dir.c_str());
projects/openmp/runtime/src/z_Linux_util.cpp
 2195   DIR *proc_dir = NULL; // Handle of "/proc/" directory.
 2199   DIR *task_dir = NULL; // Handle of "/proc/<pid>/task/<tid>/" directory.
tools/lldb/source/Host/linux/Host.cpp
  228   DIR *dirproc = opendir(procdir);
  280   DIR *dirproc = opendir(process_task_dir.c_str());
usr/include/dirent.h
  134 extern DIR *opendir (const char *__name) __nonnull ((1));
  141 extern DIR *fdopendir (int __fd);
  149 extern int closedir (DIR *__dirp) __nonnull ((1));
  162 extern struct dirent *readdir (DIR *__dirp) __nonnull ((1));
  173 extern struct dirent64 *readdir64 (DIR *__dirp) __nonnull ((1));
  183 extern int readdir_r (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));