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

/freebsd-10-stable/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-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStreamFile.h36 StreamFile (int fd, bool transfer_ownership);
40 StreamFile (FILE *fh, bool transfer_ownership);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Host/
H A DFile.h61 File (FILE *fh, bool transfer_ownership) : argument
65 m_own_stream (transfer_ownership),
120 File (int fd, bool transfer_ownership) : argument
125 m_own_descriptor (transfer_ownership)
226 SetDescriptor(int fd, bool transfer_ownership);
232 SetStream (FILE *fh, bool transfer_ownership);
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBListener.h127 reset(lldb_private::Listener *listener, bool transfer_ownership);
H A DSBDebugger.h86 SetInputFileHandle (FILE *f, bool transfer_ownership);
89 SetOutputFileHandle (FILE *f, bool transfer_ownership);
92 SetErrorFileHandle (FILE *f, bool transfer_ownership);
/freebsd-10-stable/contrib/llvm/tools/lldb/source/API/
H A DSBDebugger.cpp291 SBDebugger::SetInputFileHandle (FILE *fh, bool transfer_ownership) argument
296 log->Printf ("SBDebugger(%p)::SetInputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
297 fh, transfer_ownership);
300 m_opaque_sp->SetInputFileHandle (fh, transfer_ownership);
304 SBDebugger::SetOutputFileHandle (FILE *fh, bool transfer_ownership) argument
310 log->Printf ("SBDebugger(%p)::SetOutputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
311 fh, transfer_ownership);
314 m_opaque_sp->SetOutputFileHandle (fh, transfer_ownership);
318 SBDebugger::SetErrorFileHandle (FILE *fh, bool transfer_ownership) argument
324 log->Printf ("SBDebugger(%p)::SetErrorFileHandle (fh=%p, transfer_ownership
[all...]
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/
H A DFile.cpp152 File::SetDescriptor (int fd, bool transfer_ownership) argument
157 m_own_descriptor = transfer_ownership;
204 File::SetStream (FILE *fh, bool transfer_ownership) argument
209 m_own_stream = transfer_ownership;

Completed in 122 milliseconds