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

References

lib/Support/Unix/Path.inc
  888     Result |= O_RDWR;
lib/Support/Unix/Process.inc
  214       auto Open = [&]() { return ::open("/dev/null", O_RDWR); };
projects/compiler-rt/lib/profile/GCDAProfiling.c
  348   fd = open(filename, O_RDWR | O_BINARY);
  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
  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
  736     mode |= O_RDWR;
tools/lldb/source/Host/common/FileAction.cpp
   39       m_arg = O_NOCTTY | O_CREAT | O_RDWR;
tools/lldb/source/Host/common/FileSystem.cpp
  359       open_flags |= O_RDWR;
tools/lldb/source/Host/common/ProcessLaunchInfo.cpp
  214   int open_flags = O_RDWR | O_NOCTTY;
tools/lldb/source/Host/common/PseudoTerminal.cpp
  197   int flags = O_RDWR;
  211       if (OpenSlave(O_RDWR, error_str, error_len)) {
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
  240       int fd = llvm::sys::RetryAfterSignal(-1, ::open, addr_str.c_str(), O_RDWR);
tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
  852             pty.OpenFirstAvailableMaster(O_RDWR | O_NOCTTY, nullptr, 0)) {
tools/lldb/unittests/Editline/EditlineTest.cpp
  101   if (!_pty.OpenFirstAvailableMaster(O_RDWR, error_string,
  114   if (!_pty.OpenSlave(O_RDWR, error_string, sizeof(error_string))) {
tools/lldb/unittests/Host/MainLoopTest.cpp
  111   ASSERT_TRUE(term.OpenFirstAvailableMaster(O_RDWR, nullptr, 0));
  112   ASSERT_TRUE(term.OpenSlave(O_RDWR | O_NOCTTY, nullptr, 0));