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

References

tools/lldb/source/Commands/CommandObjectPlatform.cpp
  509           File::eOpenOptionRead | File::eOpenOptionWrite |
tools/lldb/source/Host/common/File.cpp
   45     if (options & File::eOpenOptionRead) {
   56   } else if (options & File::eOpenOptionRead &&
   65   } else if (options & File::eOpenOptionRead) {
   78           .Cases("r", "rb", eOpenOptionRead)
   82           .Cases("r+", "rb+", "r+b", eOpenOptionRead | eOpenOptionWrite)
   84                  eOpenOptionRead | eOpenOptionWrite | eOpenOptionCanCreate |
   87                  eOpenOptionRead | eOpenOptionWrite | eOpenOptionAppend |
  735   if (open_options & eOpenOptionRead && open_options & eOpenOptionWrite)
tools/lldb/source/Host/common/FileSystem.cpp
  353   const bool read = options & File::eOpenOptionRead;
tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
   90   m_read_sp = std::make_shared<NativeFile>(fd, File::eOpenOptionRead, false);
  222                 std::make_shared<NativeFile>(fd, File::eOpenOptionRead, false);
  273       m_read_sp = std::make_shared<NativeFile>(fd, File::eOpenOptionRead, true);
tools/lldb/source/Interpreter/CommandInterpreter.cpp
 2343       FileSystem::Instance().Open(cmd_file, File::eOpenOptionRead);
tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
  351     user_id_t fd_src = OpenFile(source, File::eOpenOptionRead,
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
  585       NativeFile file(fd, File::eOpenOptionRead, false);
tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
  925                                   File::eOpenOptionRead);
tools/lldb/source/Target/Platform.cpp
 1224       File::eOpenOptionRead | File::eOpenOptionCloseOnExec;
 1638   auto src_fd = OpenFile(src_file_spec, File::eOpenOptionRead,
tools/lldb/source/Target/Process.cpp
 4303         m_read_file(GetInputFD(), File::eOpenOptionRead, false),
tools/lldb/unittests/Host/FileSystemTest.cpp
  299   auto file = fs.Open(spec, File::eOpenOptionRead, 0, true);
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  585                                           File::eOpenOptionRead);