Home
last modified time | relevance | path

Searched refs:OpenOptions (Results 1 – 23 of 23) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h50 enum OpenOptions : uint32_t { enum
69 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
70 static llvm::Expected<OpenOptions> GetOptionsFromMode(llvm::StringRef mode);
73 GetStreamOpenModeFromOptions(OpenOptions options);
318 virtual llvm::Expected<OpenOptions> GetOptions() const;
391 NativeFile(int fd, OpenOptions options, bool transfer_ownership) in NativeFile()
414 llvm::Expected<OpenOptions> GetOptions() const override;
454 OpenOptions m_options{};
477 Create(int fd, OpenOptions options, Options serial_options,
493 SerialPort(int fd, OpenOptions options, Options serial_options,
H A DFileCache.h31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DStreamFile.h31 StreamFile(const char *path, File::OpenOptions options,
H A DFileSystem.h68 Open(const FileSpec &file_spec, File::OpenOptions options,
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp45 File::GetStreamOpenModeFromOptions(File::OpenOptions options) { in GetStreamOpenModeFromOptions()
46 File::OpenOptions rw = in GetStreamOpenModeFromOptions()
80 Expected<File::OpenOptions> File::GetOptionsFromMode(llvm::StringRef mode) { in GetOptionsFromMode()
81 OpenOptions opts = in GetOptionsFromMode()
82 llvm::StringSwitch<OpenOptions>(mode) in GetOptionsFromMode()
229 Expected<File::OpenOptions> File::GetOptions() const { in GetOptions()
255 Expected<File::OpenOptions> NativeFile::GetOptions() const { return m_options; } in GetOptions()
329 File::OpenOptions rw = in Close()
349 m_options = OpenOptions(0); in Close()
782 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in ConvertOpenOptionsForPOSIXOpen()
[all …]
H A DFileSystem.cpp372 static int GetOpenFlags(File::OpenOptions options) {
374 File::OpenOptions rw = in GetOpenFlags()
439 File::OpenOptions options, in Open()
H A DFileCache.cpp27 File::OpenOptions flags, uint32_t mode, in OpenFile()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStreamFile.h
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DStreamFile.cpp
H A DDebugger.cpp1825 File::OpenOptions flags = in EnableLog()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DPlatform.h577 File::OpenOptions flags, uint32_t mode,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp991 llvm::Expected<File::OpenOptions>
993 auto options = File::OpenOptions(0); in GetOptionsForPyObject()
1079 File::OpenOptions options) in SimplePythonFile()
1157 Expected<File::OpenOptions> GetOptions() const override { in GetOptions()
1305 File::OpenOptions rw = in ConvertToFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h111 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DPlatformRemoteGDBServer.cpp581 File::OpenOptions flags, in OpenFile()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp102 File::OpenOptions flags, in OpenFile()
H A DPlatform.cpp642 File::OpenOptions flags, uint32_t mode, in OpenFile()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectLog.cpp382 const File::OpenOptions flags = File::eOpenOptionWriteOnly | in DoExecute()
H A DCommandObjectMemory.cpp760 File::OpenOptions open_options = in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationClient.h359 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DGDBRemoteCommunicationServerCommon.cpp521 auto flags = File::OpenOptions(packet.GetHexMaxU32(false, 0)); in Handle_vFile_Open()
557 NativeFile file(fd, File::OpenOptions(0), true); in Handle_vFile_Close()
H A DGDBRemoteCommunicationClient.cpp3106 File::OpenOptions flags, mode_t mode, in OpenFile()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp3423 File::OpenOptions flags = File::eOpenOptionWriteOnly | in SaveTranscript()