| /freebsd-14.2/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 88 SBError SBFile::Flush() { in Flush() 101 bool SBFile::IsValid() const { in IsValid() 106 SBError SBFile::Close() { in Close() [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() 448 return SetErrorFile(SBFile(file_sp)); in SetErrorFile() 497 SBFile SBDebugger::GetInputFile() { in GetInputFile() 502 return SBFile(); in GetInputFile() 514 SBFile SBDebugger::GetOutputFile() { in GetOutputFile() 520 return SBFile(); in GetOutputFile() 533 SBFile SBDebugger::GetErrorFile() { in GetErrorFile() 535 SBFile file; in GetErrorFile() [all …]
|
| H A D | SBInstructionList.cpp | 120 void SBInstructionList::Print(SBFile out) { in Print()
|
| H A D | SBStream.cpp | 123 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
|
| H A D | SBInstruction.cpp | 276 void SBInstruction::Print(SBFile out) { in Print()
|
| H A D | SBProcess.cpp | 300 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState()
|
| /freebsd-14.2/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 | 178 SBError SetInputFile(SBFile file); 180 SBError SetOutputFile(SBFile file); 182 SBError SetErrorFile(SBFile file); 190 SBFile GetInputFile(); 192 SBFile GetOutputFile(); 194 SBFile GetErrorFile(); 221 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 | 82 friend class SBFile; variable
|
| H A D | SBStream.h | 48 void RedirectToFile(lldb::SBFile file);
|
| H A D | SBDefines.h | 71 class LLDB_API SBFile; variable
|
| H A D | SBProcess.h | 76 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
|
| /freebsd-14.2/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-14.2/contrib/llvm-project/lldb/bindings/ |
| H A D | headers.swig | 30 #include "lldb/API/SBFile.h"
|
| H A D | interfaces.swig | 107 %include "lldb/API/SBFile.h"
|
| /freebsd-14.2/lib/clang/liblldb/ |
| H A D | LLDBWrapLua.cpp | 19801 lldb::SBFile * resultptr = new lldb::SBFile(result); in _wrap_SBDebugger_GetInputFile() 19828 lldb::SBFile * resultptr = new lldb::SBFile(result); in _wrap_SBDebugger_GetOutputFile() 27179 result = (lldb::SBFile *)new lldb::SBFile(); in _wrap_new_SBFile__SWIG_0() 27205 result = (lldb::SBFile *)new lldb::SBFile(arg1); in _wrap_new_SBFile__SWIG_1() 27294 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Read() 27338 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Write() 27382 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Flush() 27409 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_IsValid() 27433 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Close() 27460 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_GetFile() [all …]
|
| H A D | Makefile | 40 SRCS+= API/SBFile.cpp
|