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

/external/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)
/external/lldb/include/lldb/Core/
H A DStreamFile.h36 StreamFile (int fd, bool transfer_ownership);
40 StreamFile (FILE *fh, bool transfer_ownership);
/external/lldb/include/lldb/Host/
H A DFile.h86 File (FILE *fh, bool transfer_ownership) : argument
90 m_owned (transfer_ownership)
225 SetDescriptor(int fd, bool transfer_ownership);
231 SetStream (FILE *fh, bool transfer_ownership);
/external/lldb/scripts/Python/interface/
H A DSBDebugger.i156 SetInputFileHandle (FILE *f, bool transfer_ownership);
159 SetOutputFileHandle (FILE *f, bool transfer_ownership);
162 SetErrorFileHandle (FILE *f, bool transfer_ownership);
/external/lldb/include/lldb/API/
H A DSBListener.h127 reset(lldb_private::Listener *listener, bool transfer_ownership);
H A DSBDebugger.h74 SetInputFileHandle (FILE *f, bool transfer_ownership);
77 SetOutputFileHandle (FILE *f, bool transfer_ownership);
80 SetErrorFileHandle (FILE *f, bool transfer_ownership);
/external/lldb/source/API/
H A DSBDebugger.cpp232 SBDebugger::SetInputFileHandle (FILE *fh, bool transfer_ownership) argument
237 log->Printf ("SBDebugger(%p)::SetInputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
238 fh, transfer_ownership);
241 m_opaque_sp->SetInputFileHandle (fh, transfer_ownership);
245 SBDebugger::SetOutputFileHandle (FILE *fh, bool transfer_ownership) argument
251 log->Printf ("SBDebugger(%p)::SetOutputFileHandle (fh=%p, transfer_ownership=%i)", m_opaque_sp.get(),
252 fh, transfer_ownership);
255 m_opaque_sp->SetOutputFileHandle (fh, transfer_ownership);
259 SBDebugger::SetErrorFileHandle (FILE *fh, bool transfer_ownership) argument
265 log->Printf ("SBDebugger(%p)::SetErrorFileHandle (fh=%p, transfer_ownership
[all...]
/external/lldb/source/Host/common/
H A DFile.cpp122 File::SetDescriptor (int fd, bool transfer_ownership) argument
127 m_owned = transfer_ownership;
153 File::SetStream (FILE *fh, bool transfer_ownership) argument
158 m_owned = transfer_ownership;

Completed in 895 milliseconds