Home
last modified time | relevance | path

Searched refs:transfer_ownership (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DStreamFile.cpp24 StreamFile::StreamFile(int fd, bool transfer_ownership) : Stream() { in StreamFile() argument
26 transfer_ownership); in StreamFile()
29 StreamFile::StreamFile(FILE *fh, bool transfer_ownership) : Stream() { in StreamFile() argument
30 m_file_sp = std::make_shared<NativeFile>(fh, transfer_ownership); in StreamFile()
H A DFile.cpp864 bool transfer_ownership) { in Create() argument
866 new SerialPort(fd, options, serial_options, transfer_ownership)}; in Create()
897 bool transfer_ownership) in SerialPort() argument
898 : NativeFile(fd, options, transfer_ownership), m_state(fd) {} in SerialPort()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBDebuggerExtensions.i6 def SetOutputFileHandle(self, file, transfer_ownership):
13 def SetInputFileHandle(self, file, transfer_ownership):
20 def SetErrorFileHandle(self, file, transfer_ownership):
H A DSBCommandReturnObjectExtensions.i7 void SetImmediateOutputFile(lldb::FileSP BORROWED, bool transfer_ownership) { in SetImmediateOutputFile() argument
10 void SetImmediateErrorFile(lldb::FileSP BORROWED, bool transfer_ownership) { in SetImmediateErrorFile() argument
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandReturnObject.cpp255 bool transfer_ownership) { in SetImmediateOutputFile() argument
256 LLDB_INSTRUMENT_VA(this, fh, transfer_ownership); in SetImmediateOutputFile()
257 FileSP file = std::make_shared<NativeFile>(fh, transfer_ownership); in SetImmediateOutputFile()
262 bool transfer_ownership) { in SetImmediateErrorFile() argument
263 LLDB_INSTRUMENT_VA(this, fh, transfer_ownership); in SetImmediateErrorFile()
264 FileSP file = std::make_shared<NativeFile>(fh, transfer_ownership); in SetImmediateErrorFile()
H A DSBFile.cpp39 SBFile::SBFile(FILE *file, bool transfer_ownership) { in SBFile() argument
40 LLDB_INSTRUMENT_VA(this, file, transfer_ownership); in SBFile()
42 m_opaque_sp = std::make_shared<NativeFile>(file, transfer_ownership); in SBFile()
H A DSBDebugger.cpp362 void SBDebugger::SetInputFileHandle(FILE *fh, bool transfer_ownership) { in SetInputFileHandle() argument
363 LLDB_INSTRUMENT_VA(this, fh, transfer_ownership); in SetInputFileHandle()
366 (FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetInputFileHandle()
421 void SBDebugger::SetOutputFileHandle(FILE *fh, bool transfer_ownership) { in SetOutputFileHandle() argument
422 LLDB_INSTRUMENT_VA(this, fh, transfer_ownership); in SetOutputFileHandle()
423 SetOutputFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetOutputFileHandle()
441 void SBDebugger::SetErrorFileHandle(FILE *fh, bool transfer_ownership) { in SetErrorFileHandle() argument
442 LLDB_INSTRUMENT_VA(this, fh, transfer_ownership); in SetErrorFileHandle()
443 SetErrorFile((FileSP)std::make_shared<NativeFile>(fh, transfer_ownership)); in SetErrorFileHandle()
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DFile.h382 NativeFile(FILE *fh, bool transfer_ownership) in NativeFile() argument
384 m_options(), m_own_stream(transfer_ownership) {} in NativeFile()
386 NativeFile(int fd, OpenOptions options, bool transfer_ownership) in NativeFile() argument
387 : m_descriptor(fd), m_own_descriptor(transfer_ownership), in NativeFile()
473 bool transfer_ownership);
489 bool transfer_ownership);
H A DStreamFile.h26 StreamFile(int fd, bool transfer_ownership);
31 StreamFile(FILE *fh, bool transfer_ownership);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFile.h30 SBFile(FILE *file, bool transfer_ownership);
32 SBFile(int fd, const char *mode, bool transfer_ownership);
H A DSBCommandReturnObject.h103 void SetImmediateOutputFile(FILE *fh, bool transfer_ownership);
108 void SetImmediateErrorFile(FILE *fh, bool transfer_ownership);
H A DSBDebugger.h161 void SetInputFileHandle(FILE *f, bool transfer_ownership);
163 void SetOutputFileHandle(FILE *f, bool transfer_ownership);
165 void SetErrorFileHandle(FILE *f, bool transfer_ownership);
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp3327 …utputFile__SWIG_2(lldb::SBCommandReturnObject *self,lldb::FileSP BORROWED,bool transfer_ownership){ in lldb_SBCommandReturnObject_SetImmediateOutputFile__SWIG_2() argument
3330 …ErrorFile__SWIG_2(lldb::SBCommandReturnObject *self,lldb::FileSP BORROWED,bool transfer_ownership){ in lldb_SBCommandReturnObject_SetImmediateErrorFile__SWIG_2() argument