Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h46 enum OpenOptions : uint32_t { enum
62 static mode_t ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options);
63 static llvm::Expected<OpenOptions> GetOptionsFromMode(llvm::StringRef mode);
66 GetStreamOpenModeFromOptions(OpenOptions options);
311 virtual llvm::Expected<OpenOptions> GetOptions() const;
379 NativeFile(int fd, OpenOptions options, bool transfer_ownership) in NativeFile()
404 llvm::Expected<OpenOptions> GetOptions() const override;
422 OpenOptions m_options{};
H A DFileCache.h31 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DFileSystem.h68 Open(const FileSpec &file_spec, File::OpenOptions options,
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp43 File::GetStreamOpenModeFromOptions(File::OpenOptions options) { in GetStreamOpenModeFromOptions()
75 Expected<File::OpenOptions> File::GetOptionsFromMode(llvm::StringRef mode) { in GetOptionsFromMode()
76 OpenOptions opts = in GetOptionsFromMode()
77 llvm::StringSwitch<OpenOptions>(mode) in GetOptionsFromMode()
89 .Default(OpenOptions()); in GetOptionsFromMode()
228 Expected<File::OpenOptions> File::GetOptions() const { in GetOptions()
249 Expected<File::OpenOptions> NativeFile::GetOptions() const { return m_options; } in GetOptions()
324 m_options = OpenOptions(0); in Close()
733 mode_t File::ConvertOpenOptionsForPOSIXOpen(OpenOptions open_options) { in ConvertOpenOptionsForPOSIXOpen()
H A DFileCache.cpp27 File::OpenOptions flags, uint32_t mode, in OpenFile()
H A DFileSystem.cpp451 File::OpenOptions options, in Open()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DStreamFile.h28 StreamFile(const char *path, File::OpenOptions options,
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DStreamFile.cpp32 StreamFile::StreamFile(const char *path, File::OpenOptions options, in StreamFile()
H A DDebugger.cpp1245 File::OpenOptions flags = in EnableLog()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h29 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DPlatform.h514 File::OpenOptions flags, uint32_t mode, in OpenFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.h117 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DPlatformRemoteGDBServer.cpp649 File::OpenOptions flags, in OpenFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1107 llvm::Expected<File::OpenOptions>
1110 auto options = File::OpenOptions(0); in GetOptionsForPyObject()
1197 File::OpenOptions options) in SimplePythonFile()
1275 Expected<File::OpenOptions> GetOptions() const override { in GetOptions()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DRemoteAwarePlatform.cpp219 File::OpenOptions flags, in OpenFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp508 auto flags = File::OpenOptions(packet.GetHexMaxU32(false, 0)); in Handle_vFile_Open()
547 NativeFile file(fd, File::OpenOptions(0), true); in Handle_vFile_Close()
H A DGDBRemoteCommunicationClient.h389 lldb::user_id_t OpenFile(const FileSpec &file_spec, File::OpenOptions flags,
H A DGDBRemoteCommunicationClient.cpp3006 File::OpenOptions flags, mode_t mode, in OpenFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp756 File::OpenOptions open_options = in DoExecute()
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2957 File::OpenOptions flags = File::eOpenOptionWrite | in SaveTranscript()