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

References

lib/Support/RandomNumberGenerator.cpp
   69   int Fd = open("/dev/urandom", O_RDONLY);
lib/Support/Unix/Path.inc
  884     Result |= O_RDONLY;
lib/Support/Unix/Process.inc
  429   int urandomFD = open("/dev/urandom", O_RDONLY);
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_linux.cpp
  903   descriptor_ = internal_open(task_directory_path, O_RDONLY | O_DIRECTORY);
 2137   uptr fd = internal_open("/dev/urandom", O_RDONLY);
projects/compiler-rt/lib/sanitizer_common/sanitizer_posix.cpp
  158     case RdOnly: flags = O_RDONLY; break;
projects/compiler-rt/lib/scudo/standalone/linux.cpp
  148   const int FileDesc = open("/dev/urandom", O_RDONLY);
projects/compiler-rt/lib/xray/xray_x86_64.cpp
   54   int Fd = open(Filename, O_RDONLY | O_CLOEXEC);
projects/openmp/runtime/src/z_Linux_util.cpp
 2310             stat_file = open(stat_path.str, O_RDONLY);
tools/lldb/source/Host/common/FileAction.cpp
   41       m_arg = O_NOCTTY | O_RDONLY;
tools/lldb/source/Host/common/FileSystem.cpp
  375     open_flags |= O_RDONLY;
tools/lldb/source/Host/posix/PipePosix.cpp
  156   int flags = O_RDONLY | O_NONBLOCK;