Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp77 int File::GetDescriptor() const { in GetDescriptor() function in File
113 m_descriptor = ::_dup(GetDescriptor()); in GetStream()
115 m_descriptor = dup(GetDescriptor()); in GetStream()
144 int fd = GetDescriptor(); in GetPermissions()
194 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1) in GetFileSpec()
204 if (::snprintf(proc, sizeof(proc), "/proc/self/fd/%d", GetDescriptor()) < 0) in GetFileSpec()
491 int fd = GetDescriptor(); in Read()
521 int fd = GetDescriptor(); in Read()
593 int fd = GetDescriptor(); in Write()
680 const int fd = GetDescriptor(); in CalculateInteractiveAndTerminal()
H A DFileCache.cpp37 lldb::user_id_t fd = file_sp->GetDescriptor(); in OpenFile()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugArangeSet.h56 const Descriptor *GetDescriptor(uint32_t i) const { in GetDescriptor() function
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h134 int GetDescriptor() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DModuleCache.cpp171 m_lock.reset(new lldb_private::LockFile(m_file.GetDescriptor())); in ModuleLock()
H A DProcess.cpp4546 const int read_fd = m_read_file.GetDescriptor(); in Run()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp929 if (in_file.GetDescriptor() != File::kInvalidDescriptor) in SaveInputTerminalState()
930 m_terminal_state.Save(in_file.GetDescriptor(), true); in SaveInputTerminalState()
1259 GetOutputFile()->GetFile().GetDescriptor(), !should_close, unbuffered); in EnableLog()
H A DIOHandler.cpp99 return (m_input_sp ? m_input_sp->GetFile().GetDescriptor() : -1); in GetInputFD()
103 return (m_output_sp ? m_output_sp->GetFile().GetDescriptor() : -1); in GetOutputFD()
107 return (m_error_sp ? m_error_sp->GetFile().GetDescriptor() : -1); in GetErrorFD()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp997 Reset(PyRefType::Owned, PyFile_FromFd(file.GetDescriptor(), nullptr, cmode, in Reset()