| /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() 71 SBError SBFile::Write(const uint8_t *buf, size_t num_bytes, in Write() 86 SBError SBFile::Flush() { in Flush() [all …]
|
| H A D | SBCommandReturnObject.cpp | 149 size_t SBCommandReturnObject::PutOutput(SBFile file) { in PutOutput() 173 size_t SBCommandReturnObject::PutError(SBFile file) { in PutError() 289 void SBCommandReturnObject::SetImmediateOutputFile(SBFile file) { in SetImmediateOutputFile() 294 void SBCommandReturnObject::SetImmediateErrorFile(SBFile file) { in SetImmediateErrorFile() 301 SetImmediateOutputFile(SBFile(file_sp)); in SetImmediateOutputFile() 306 SetImmediateErrorFile(SBFile(file_sp)); in SetImmediateErrorFile()
|
| H A D | SBDebugger.cpp | 360 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() 378 return SetInputFile(SBFile(file_sp)); in SetInputFile() 383 return SetOutputFile(SBFile(file_sp)); in SetOutputFile() 391 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() 413 return SetErrorFile(SBFile(file_sp)); in SetErrorFile() 416 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() 462 SBFile SBDebugger::GetInputFile() { in GetInputFile() 465 return SBFile(m_opaque_sp->GetInputFileSP()); in GetInputFile() 467 return SBFile(); in GetInputFile() 477 SBFile SBDebugger::GetOutputFile() { in GetOutputFile() [all …]
|
| H A D | SBStream.cpp | 11 #include "lldb/API/SBFile.h" 123 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
|
| H A D | SBInstructionList.cpp | 122 void SBInstructionList::Print(SBFile out) { in Print()
|
| H A D | SBInstruction.cpp | 275 void SBInstruction::Print(SBFile out) { in Print()
|
| H A D | SBProcess.cpp | 305 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 | 240 SBError SetInputFile(SBFile file); 243 SBError SetOutputFile(SBFile file); 246 SBError SetErrorFile(SBFile file); 258 SBFile GetInputFile(); 261 SBFile GetOutputFile(); 264 SBFile GetErrorFile(); 305 const lldb::SBEvent &event, SBFile out, SBFile err);
|
| H A D | SBCommandReturnObject.h | 60 size_t PutOutput(SBFile file); 74 size_t PutError(SBFile file); 116 void SetImmediateOutputFile(SBFile file); 118 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 | 88 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 | interfaces.swig | 116 %include "lldb/API/SBFile.h"
|
| /freebsd/lib/clang/liblldb/ |
| H A D | LLDBWrapLua.cpp | 3388 SWIGINTERN lldb::SBFile lldb_SBFile_MakeBorrowed(lldb::FileSP BORROWED){ in lldb_SBFile_MakeBorrowed() 3389 return lldb::SBFile(BORROWED); in lldb_SBFile_MakeBorrowed() 3391 SWIGINTERN lldb::SBFile lldb_SBFile_MakeForcingIOMethods(lldb::FileSP FORCE_IO_METHODS){ in lldb_SBFile_MakeForcingIOMethods() 3392 return lldb::SBFile(FORCE_IO_METHODS); in lldb_SBFile_MakeForcingIOMethods() 3394 SWIGINTERN lldb::SBFile lldb_SBFile_MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_MET… in lldb_SBFile_MakeBorrowedForcingIOMethods() 3395 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in lldb_SBFile_MakeBorrowedForcingIOMethods() 15075 lldb::SBFile arg2 ; in _wrap_SBCommandReturnObject_PutOutput__SWIG_0() 15076 lldb::SBFile *argp2 ; in _wrap_SBCommandReturnObject_PutOutput__SWIG_0() 15249 lldb::SBFile arg2 ; in _wrap_SBCommandReturnObject_PutError__SWIG_0() 15250 lldb::SBFile *argp2 ; in _wrap_SBCommandReturnObject_PutError__SWIG_0() [all …]
|
| H A D | Makefile | 56 SRCS+= API/SBFile.cpp
|