Home
last modified time | relevance | path

Searched refs:GetDescriptor (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp120 int File::GetDescriptor() const { return kInvalidDescriptor; } in GetDescriptor() function in File
155 const int fd = GetDescriptor(); in CalculateInteractiveAndTerminal()
235 int fd = GetDescriptor(); in GetPermissions()
251 int NativeFile::GetDescriptor() const { in GetDescriptor() function in NativeFile
270 return GetDescriptor(); in GetWaitableHandle()
284 m_descriptor = ::_dup(GetDescriptor()); in GetStream()
286 m_descriptor = dup(GetDescriptor()); in GetStream()
337 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1) in GetFileSpec()
347 if (::snprintf(proc, sizeof(proc), "/proc/self/fd/%d", GetDescriptor()) < 0) in GetFileSpec()
635 int fd = GetDescriptor(); in Read()
[all …]
H A DFileCache.cpp38 lldb::user_id_t fd = file.get()->GetDescriptor(); in OpenFile()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h139 virtual int GetDescriptor() const;
394 int GetDescriptor() const override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp83 return (m_input_sp ? m_input_sp->GetDescriptor() : -1); in GetInputFD()
87 return (m_output_sp ? m_output_sp->GetFile().GetDescriptor() : -1); in GetOutputFD()
91 return (m_error_sp ? m_error_sp->GetFile().GetDescriptor() : -1); in GetErrorFD()
H A DDebugger.cpp833 int fd = GetInputFile().GetDescriptor(); in SaveInputTerminalState()
1239 GetOutputFile().GetDescriptor(), !should_close, unbuffered); in EnableLog()
1260 (*file)->GetDescriptor(), should_close, unbuffered); in EnableLog()
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp172 m_lock = std::make_unique<lldb_private::LockFile>(m_file_up->GetDescriptor()); in ModuleLock()
H A DProcess.cpp4330 const int read_fd = m_read_file.GetDescriptor(); in Run()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1300 int GetDescriptor() const override { return m_descriptor; } in GetDescriptor() function in __anon602816610611::BinaryPythonFile
1354 int GetDescriptor() const override { return m_descriptor; } in GetDescriptor() function in __anon602816610711::TextPythonFile
1530 file_obj = PyFile_FromFd(file.GetDescriptor(), nullptr, mode, -1, nullptr, in FromFile()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp519 descriptor = file.get()->GetDescriptor(); in Handle_vFile_Open()