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

References

lib/Support/Unix/Path.inc
  387   if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
  387   if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
  387   if (!S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode) && !S_ISLNK(buf.st_mode))
  554     if (!S_ISREG(buf.st_mode))
  673   perms Perms = static_cast<perms>(Status.st_mode) & all_perms;
  674   Result = file_status(typeForMode(Status.st_mode), Perms, Status.st_dev,
lib/Support/Unix/Signals.inc
  172         if (!S_ISREG(buf.st_mode))
lib/Support/raw_ostream.cpp
  795   if (S_ISCHR(statbuf.st_mode) && isatty(FD))
projects/compiler-rt/lib/fuzzer/FuzzerIOPosix.cpp
   31   return S_ISREG(St.st_mode);
   38   return S_ISDIR(St.st_mode);
projects/compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp
  462   return S_ISREG(st.st_mode);
tools/lldb/source/Host/common/File.cpp
  246   return file_stats.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO);
utils/unittest/googletest/include/gtest/internal/gtest-port.h
 2357 inline bool IsDir(const StatStruct& st) { return S_ISDIR(st.st_mode); }