Home
last modified time | relevance | path

Searched refs:eOpenOptionRead (Results 1 – 13 of 13) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp45 if (options & File::eOpenOptionRead) { in GetStreamOpenModeFromOptions()
56 } else if (options & File::eOpenOptionRead && in GetStreamOpenModeFromOptions()
65 } else if (options & File::eOpenOptionRead) { in GetStreamOpenModeFromOptions()
78 .Cases("r", "rb", eOpenOptionRead) in GetOptionsFromMode()
82 .Cases("r+", "rb+", "r+b", eOpenOptionRead | eOpenOptionWrite) in GetOptionsFromMode()
84 eOpenOptionRead | eOpenOptionWrite | eOpenOptionCanCreate | in GetOptionsFromMode()
87 eOpenOptionRead | eOpenOptionWrite | eOpenOptionAppend | in GetOptionsFromMode()
735 if (open_options & eOpenOptionRead && open_options & eOpenOptionWrite) in ConvertOpenOptionsForPOSIXOpen()
H A DFileSystem.cpp385 const bool read = options & File::eOpenOptionRead; in GetOpenFlags()
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/posix/
H A DConnectionFileDescriptorPosix.cpp91 m_read_sp = std::make_shared<NativeFile>(fd, File::eOpenOptionRead, false); in ConnectionFileDescriptor()
223 std::make_shared<NativeFile>(fd, File::eOpenOptionRead, false); in Connect()
274 m_read_sp = std::make_shared<NativeFile>(fd, File::eOpenOptionRead, true); in Connect()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h47 eOpenOptionRead = (1u << 0), // Open file for reading enumerator
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DScriptInterpreter.cpp144 File::eOpenOptionRead); in Create()
H A DCommandInterpreter.cpp2436 FileSystem::Instance().Open(cmd_file, File::eOpenOptionRead); in HandleCommandsFromFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1228 File::eOpenOptionRead | File::eOpenOptionCloseOnExec; in PutFile()
1666 auto src_fd = OpenFile(src_file_spec, File::eOpenOptionRead, in DownloadModuleSlice()
H A DProcess.cpp4313 m_read_file(GetInputFD(), File::eOpenOptionRead, false), in IOHandlerProcessSTDIO()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/POSIX/
H A DPlatformPOSIX.cpp208 user_id_t fd_src = OpenFile(source, File::eOpenOptionRead, in GetFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp578 NativeFile file(fd, File::eOpenOptionRead, false); in Handle_vFile_pRead()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp501 File::eOpenOptionRead | File::eOpenOptionWrite | in DoExecute()
H A DCommandObjectTarget.cpp275 core_file, lldb_private::File::eOpenOptionRead); in DoExecute()
289 symfile, lldb_private::File::eOpenOptionRead); in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1118 options |= File::eOpenOptionRead; in GetOptionsForPyObject()