/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBFile.cpp | 17 SBFile::~SBFile() = default; 19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { in SBFile() function in SBFile 25 SBFile::SBFile(const SBFile &rhs) : m_opaque_sp(rhs.m_opaque_sp) { in SBFile() function in SBFile 29 SBFile &SBFile ::operator=(const SBFile &rhs) { in operator =() 37 SBFile::SBFile() { LLDB_INSTRUMENT_VA(this); } in SBFile() function in SBFile 39 SBFile::SBFile(FILE *file, bool transfer_ownership) { in SBFile() function in SBFile 45 SBFile::SBFile(int fd, const char *mode, bool transfer_owndership) { in SBFile() function in SBFile 57 SBError SBFile::Read(uint8_t *buf, size_t num_bytes, size_t *bytes_read) { in Read() 72 SBError SBFile::Write(const uint8_t *buf, size_t num_bytes, in Write() 88 SBError SBFile::Flush() { in Flush() [all …]
|
H A D | SBCommandReturnObject.cpp | 128 size_t SBCommandReturnObject::PutOutput(SBFile file) { in PutOutput() 152 size_t SBCommandReturnObject::PutError(SBFile file) { in PutError() 268 void SBCommandReturnObject::SetImmediateOutputFile(SBFile file) { in SetImmediateOutputFile() 273 void SBCommandReturnObject::SetImmediateErrorFile(SBFile file) { in SetImmediateErrorFile() 280 SetImmediateOutputFile(SBFile(file_sp)); in SetImmediateOutputFile() 285 SetImmediateErrorFile(SBFile(file_sp)); in SetImmediateErrorFile()
|
H A D | SBDebugger.cpp | 395 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() 413 return SetInputFile(SBFile(file_sp)); in SetInputFile() 418 return SetOutputFile(SBFile(file_sp)); in SetOutputFile() 426 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() 448 return SetErrorFile(SBFile(file_sp)); in SetErrorFile() 451 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() 497 SBFile SBDebugger::GetInputFile() { in GetInputFile() 500 return SBFile(m_opaque_sp->GetInputFileSP()); in GetInputFile() 502 return SBFile(); in GetInputFile() 514 SBFile SBDebugger::GetOutputFile() { in GetOutputFile() [all …]
|
H A D | SBInstructionList.cpp | 11 #include "lldb/API/SBFile.h" 120 void SBInstructionList::Print(SBFile out) { in Print()
|
H A D | SBStream.cpp | 11 #include "lldb/API/SBFile.h" 123 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
|
H A D | SBInstruction.cpp | 14 #include "lldb/API/SBFile.h" 276 void SBInstruction::Print(SBFile out) { in Print()
|
H A D | SBProcess.cpp | 303 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBFile.h | 18 class LLDB_API SBFile { 26 SBFile(); 27 SBFile(FileSP file_sp); 29 SBFile(const SBFile &rhs); 30 SBFile(FILE *file, bool transfer_ownership); 32 SBFile(int fd, const char *mode, bool transfer_ownership); 33 ~SBFile(); 35 SBFile &operator=(const SBFile &rhs);
|
H A D | SBDebugger.h | 181 SBError SetInputFile(SBFile file); 183 SBError SetOutputFile(SBFile file); 185 SBError SetErrorFile(SBFile file); 193 SBFile GetInputFile(); 195 SBFile GetOutputFile(); 197 SBFile GetErrorFile(); 224 const lldb::SBEvent &event, SBFile out, SBFile err);
|
H A D | SBCommandReturnObject.h | 55 size_t PutOutput(SBFile file); 69 size_t PutError(SBFile file); 111 void SetImmediateOutputFile(SBFile file); 113 void SetImmediateErrorFile(SBFile file);
|
H A D | SBInstructionList.h | 51 void Print(SBFile out);
|
H A D | SBInstruction.h | 62 void Print(SBFile out);
|
H A D | SBError.h | 83 friend class SBFile; variable
|
H A D | SBStream.h | 52 void RedirectToFile(lldb::SBFile file);
|
H A D | SBDefines.h | 74 class LLDB_API SBFile; variable
|
H A D | SBProcess.h | 76 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBFileDocstrings.i | 3 ) lldb::SBFile; 7 'r', 'r+', or 'w', like fdopen.") lldb::SBFile::SBFile; 9 %feature("docstring", "initialize a SBFile from a python file object") lldb::SBFile::SBFile; 11 %feature("autodoc", "Read(buffer) -> SBError, bytes_read") lldb::SBFile::Read; 12 %feature("autodoc", "Write(buffer) -> SBError, written_read") lldb::SBFile::Write; 28 ") lldb::SBFile::GetFile;
|
H A D | SBFileExtensions.i | 1 %extend lldb::SBFile { 2 static lldb::SBFile MakeBorrowed(lldb::FileSP BORROWED) { in MakeBorrowed() 3 return lldb::SBFile(BORROWED); in MakeBorrowed() 5 static lldb::SBFile MakeForcingIOMethods(lldb::FileSP FORCE_IO_METHODS) { in MakeForcingIOMethods() 6 return lldb::SBFile(FORCE_IO_METHODS); in MakeForcingIOMethods() 8 static lldb::SBFile MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_METHODS) { in MakeBorrowedForcingIOMethods() 9 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in MakeBorrowedForcingIOMethods()
|
H A D | SBDebuggerExtensions.i | 11 self.SetOutputFile(SBFile.Create(file, borrow=True)) 18 self.SetInputFile(SBFile.Create(file, borrow=True)) 25 self.SetErrorFile(SBFile.Create(file, borrow=True))
|
/freebsd/contrib/llvm-project/lldb/bindings/ |
H A D | headers.swig | 33 #include "lldb/API/SBFile.h"
|
H A D | interfaces.swig | 114 %include "lldb/API/SBFile.h"
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 3454 SWIGINTERN lldb::SBFile lldb_SBFile_MakeBorrowed(lldb::FileSP BORROWED){ in lldb_SBFile_MakeBorrowed() 3455 return lldb::SBFile(BORROWED); in lldb_SBFile_MakeBorrowed() 3457 SWIGINTERN lldb::SBFile lldb_SBFile_MakeForcingIOMethods(lldb::FileSP FORCE_IO_METHODS){ in lldb_SBFile_MakeForcingIOMethods() 3458 return lldb::SBFile(FORCE_IO_METHODS); in lldb_SBFile_MakeForcingIOMethods() 3460 SWIGINTERN lldb::SBFile lldb_SBFile_MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_MET… in lldb_SBFile_MakeBorrowedForcingIOMethods() 3461 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in lldb_SBFile_MakeBorrowedForcingIOMethods() 15025 lldb::SBFile arg2 ; in _wrap_SBCommandReturnObject_PutOutput__SWIG_0() 15026 lldb::SBFile *argp2 ; in _wrap_SBCommandReturnObject_PutOutput__SWIG_0() 15199 lldb::SBFile arg2 ; in _wrap_SBCommandReturnObject_PutError__SWIG_0() 15200 lldb::SBFile *argp2 ; in _wrap_SBCommandReturnObject_PutError__SWIG_0() [all …]
|
H A D | Makefile | 41 SRCS+= API/SBFile.cpp
|