Searched refs:transfer_ownership (Results 1 - 7 of 7) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DStreamFile.cpp38 StreamFile::StreamFile (int fd, bool transfer_ownership) : argument
40 m_file (fd, transfer_ownership)
44 StreamFile::StreamFile (FILE *fh, bool transfer_ownership) : argument
46 m_file (fh, transfer_ownership)
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStreamFile.h36 StreamFile (int fd, bool transfer_ownership);
44 StreamFile (FILE *fh, bool transfer_ownership);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h66 File (FILE *fh, bool transfer_ownership) : argument
71 m_own_stream (transfer_ownership),
123 File (int fd, bool transfer_ownership) : argument
124 IOObject(eFDTypeFile, transfer_ownership),
236 SetDescriptor(int fd, bool transfer_ownership);
242 SetStream (FILE *fh, bool transfer_ownership);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBDebugger.h86 SetInputFileHandle (FILE *f, bool transfer_ownership);
89 SetOutputFileHandle (FILE *f, bool transfer_ownership);
92 SetErrorFileHandle (FILE *f, bool transfer_ownership);
H A DSBListener.h137 reset(lldb_private::Listener *listener, bool transfer_ownership);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBDebugger.cpp298 SBDebugger::SetInputFileHandle (FILE *fh, bool transfer_ownership) argument
303 log->Printf ("SBDebugger(%p)::SetInputFileHandle (fh=%p, transfer_ownership=%i)",
305 static_cast<void*>(fh), transfer_ownership);
308 m_opaque_sp->SetInputFileHandle (fh, transfer_ownership);
312 SBDebugger::SetOutputFileHandle (FILE *fh, bool transfer_ownership) argument
318 log->Printf ("SBDebugger(%p)::SetOutputFileHandle (fh=%p, transfer_ownership=%i)",
320 static_cast<void*>(fh), transfer_ownership);
323 m_opaque_sp->SetOutputFileHandle (fh, transfer_ownership);
327 SBDebugger::SetErrorFileHandle (FILE *fh, bool transfer_ownership) argument
333 log->Printf ("SBDebugger(%p)::SetErrorFileHandle (fh=%p, transfer_ownership
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp168 File::SetDescriptor (int fd, bool transfer_ownership) argument
173 m_should_close_fd = transfer_ownership;
220 File::SetStream (FILE *fh, bool transfer_ownership) argument
225 m_own_stream = transfer_ownership;

Completed in 52 milliseconds