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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFile.cpp120 int File::GetDescriptor() const { return kInvalidDescriptor; } function in class:File
155 const int fd = GetDescriptor();
235 int fd = GetDescriptor();
251 int NativeFile::GetDescriptor() const { function in class:NativeFile
270 return GetDescriptor();
284 m_descriptor = ::_dup(GetDescriptor());
286 m_descriptor = dup(GetDescriptor());
337 if (::fcntl(GetDescriptor(), F_GETPATH, path) == -1)
347 if (::snprintf(proc, sizeof(proc), "/proc/self/fd/%d", GetDescriptor()) < 0)
635 int fd = GetDescriptor();
[all...]
H A DFileCache.cpp38 lldb::user_id_t fd = file.get()->GetDescriptor();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h120 /// is not interchangeable with GetDescriptor(). A WaitableHandle
142 virtual int GetDescriptor() const;
398 int GetDescriptor() const override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp82 return (m_input_sp ? m_input_sp->GetDescriptor() : -1);
86 return (m_output_sp ? m_output_sp->GetFile().GetDescriptor() : -1);
90 return (m_error_sp ? m_error_sp->GetFile().GetDescriptor() : -1);
H A DDebugger.cpp844 int fd = GetInputFile().GetDescriptor();
1171 GetOutputFile().GetDescriptor(), !should_close, unbuffered);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DModuleCache.cpp172 m_lock.reset(new lldb_private::LockFile(m_file_up->GetDescriptor()));
H A DProcess.cpp4311 const int read_fd = m_read_file.GetDescriptor();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DPythonDataObjects.cpp1249 int GetDescriptor() const override { return m_descriptor; }
1303 int GetDescriptor() const override { return m_descriptor; }
1479 file_obj = PyFile_FromFd(file.GetDescriptor(), nullptr, mode, -1, nullptr,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp526 descriptor = file.get()->GetDescriptor();

Completed in 146 milliseconds