Searched refs:m_descriptor (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | File.cpp | 259 return m_descriptor; in GetDescriptor() 296 m_descriptor = ::_dup(m_descriptor); in GetStream() 298 m_descriptor = dup(m_descriptor); in GetStream() 303 m_stream = llvm::sys::RetryAfterSignal(nullptr, ::fdopen, m_descriptor, in GetStream() 341 if (::close(m_descriptor) != 0) in Close() 347 m_descriptor = kInvalidDescriptor; in Close() 394 result = ::lseek(m_descriptor, offset, SEEK_SET); in SeekFromStart() 425 result = ::lseek(m_descriptor, offset, SEEK_CUR); in SeekFromCurrent() 456 result = ::lseek(m_descriptor, offset, SEEK_END); in SeekFromEnd() 503 int err = FlushFileBuffers((HANDLE)_get_osfhandle(m_descriptor)); in Sync() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | File.h | 385 NativeFile() : m_descriptor(kInvalidDescriptor), m_stream(kInvalidStream) {} in NativeFile() 388 : m_descriptor(kInvalidDescriptor), m_own_descriptor(false), m_stream(fh), in NativeFile() 392 : m_descriptor(fd), m_own_descriptor(transfer_ownership), in NativeFile() 432 return File::DescriptorIsValid(m_descriptor); in DescriptorIsValidUnlocked() 447 int m_descriptor; variable
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.cpp | 1174 int m_descriptor; member in __anonf81d8c2d0511::BinaryPythonFile 1179 m_descriptor(File::DescriptorIsValid(fd) ? fd in BinaryPythonFile() 1182 int GetDescriptor() const override { return m_descriptor; } in GetDescriptor() 1232 int m_descriptor; member in __anonf81d8c2d0611::TextPythonFile 1237 m_descriptor(File::DescriptorIsValid(fd) ? fd in TextPythonFile() 1240 int GetDescriptor() const override { return m_descriptor; } in GetDescriptor()
|