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

References

lib/Support/Unix/Path.inc
  886     Result |= O_WRONLY;
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/sanitizer_common/sanitizer_posix.cpp
  159     case WrOnly: flags = O_WRONLY | O_CREAT | O_TRUNC; break;
tools/lldb/source/Host/common/File.cpp
  738     mode |= O_WRONLY;
tools/lldb/source/Host/common/FileAction.cpp
   43       m_arg = O_NOCTTY | O_CREAT | O_WRONLY;
tools/lldb/source/Host/common/FileSystem.cpp
  361       open_flags |= O_WRONLY;
tools/lldb/source/Host/posix/PipePosix.cpp
  177   int flags = O_WRONLY | O_NONBLOCK;