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

References

lib/Support/Unix/Path.inc
  896     Result |= O_CREAT; // Create if it doesn't exist.
  899     Result |= O_CREAT; // Create if it doesn't exist.
  902     Result |= O_CREAT; // Create if it doesn't exist.
lib/Support/Unix/Program.inc
  107   int InFD = open(File.c_str(), FD == 0 ? O_RDONLY : O_WRONLY|O_CREAT, 0666);
  138           FD == 0 ? O_RDONLY : O_WRONLY | O_CREAT, 0666))
projects/compiler-rt/lib/profile/GCDAProfiling.c
  354     fd = open(filename, O_RDWR | O_CREAT | O_BINARY, 0644);
  358       fd = open(filename, O_RDWR | O_CREAT | O_BINARY, 0644);
projects/compiler-rt/lib/profile/InstrProfilingUtil.c
  199   fd = open(ProfileName, O_RDWR | O_CREAT, 0666);
projects/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
  159     case WrOnly: flags = O_WRONLY | O_CREAT | O_TRUNC; break;
  160     case RdWr: flags = O_RDWR | O_CREAT; break;
  351       internal_open(shmname, O_RDWR | O_CREAT | O_TRUNC | O_CLOEXEC, S_IRWXU));
projects/compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp
  176   uptr openrv = internal_open(name, O_RDWR | O_CREAT | O_EXCL, 0600);
tools/lldb/source/Host/common/File.cpp
  750     mode |= O_CREAT | O_EXCL;
  752     mode |= O_CREAT;
tools/lldb/source/Host/common/FileAction.cpp
   39       m_arg = O_NOCTTY | O_CREAT | O_RDWR;
   43       m_arg = O_NOCTTY | O_CREAT | O_WRONLY;
tools/lldb/source/Host/common/FileSystem.cpp
  370       open_flags |= O_CREAT;
  373       open_flags |= O_CREAT | O_EXCL;
  426       (open_flags & O_CREAT) ? GetOpenMode(permissions) : 0;