| /freebsd-13.1/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 26 LLDB_RECORD_CONSTRUCTOR(SBFile, (const lldb::SBFile&), rhs); in SBFile() 29 SBFile &SBFile ::operator=(const SBFile &rhs) { in operator =() 31 SBFile, operator=,(const lldb::SBFile &), rhs); in operator =() 38 SBFile::SBFile() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFile); } in SBFile() function in SBFile 40 SBFile::SBFile(FILE *file, bool transfer_ownership) { in SBFile() function in SBFile 46 SBFile::SBFile(int fd, const char *mode, bool transfer_owndership) { in SBFile() function in SBFile 142 LLDB_REGISTER_CONSTRUCTOR(SBFile, (const SBFile&)); in RegisterMethods() [all …]
|
| H A D | SBCommandReturnObject.cpp | 135 size_t SBCommandReturnObject::PutOutput(SBFile file) { in PutOutput() 160 size_t SBCommandReturnObject::PutError(SBFile file) { in PutError() 285 void SBCommandReturnObject::SetImmediateOutputFile(SBFile file) { in SetImmediateOutputFile() 287 (SBFile), file); in SetImmediateOutputFile() 291 void SBCommandReturnObject::SetImmediateErrorFile(SBFile file) { in SetImmediateErrorFile() 293 (SBFile), file); in SetImmediateErrorFile() 300 SetImmediateOutputFile(SBFile(file_sp)); in SetImmediateOutputFile() 306 SetImmediateErrorFile(SBFile(file_sp)); in SetImmediateErrorFile() 391 LLDB_REGISTER_METHOD(size_t, SBCommandReturnObject, PutError, (SBFile)); in RegisterMethods() 412 (SBFile)); in RegisterMethods() [all …]
|
| H A D | SBDebugger.cpp | 341 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() 416 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() 440 SBFile SBDebugger::GetInputFile() { in GetInputFile() 445 return LLDB_RECORD_RESULT(SBFile()); in GetInputFile() 457 SBFile SBDebugger::GetOutputFile() { in GetOutputFile() 463 return LLDB_RECORD_RESULT(SBFile()); in GetOutputFile() 476 SBFile SBDebugger::GetErrorFile() { in GetErrorFile() 478 SBFile file; in GetErrorFile() 483 return LLDB_RECORD_RESULT(SBFile()); in GetErrorFile() 558 (const lldb::SBProcess &, const lldb::SBEvent &, SBFile, SBFile), process, in HandleProcessEvent() [all …]
|
| H A D | SBStream.cpp | 123 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile() 124 LLDB_RECORD_METHOD(void, SBStream, RedirectToFile, (SBFile), file) in RedirectToFile() 209 LLDB_REGISTER_METHOD(void, SBStream, RedirectToFile, (SBFile)); in RegisterMethods()
|
| H A D | SBInstructionList.cpp | 129 void SBInstructionList::Print(SBFile out) { in Print() 130 LLDB_RECORD_METHOD(void, SBInstructionList, Print, (SBFile), out); in Print() 225 LLDB_REGISTER_METHOD(void, SBInstructionList, Print, (SBFile)); in RegisterMethods()
|
| H A D | SBInstruction.cpp | 265 void SBInstruction::Print(SBFile out) { in Print() 266 LLDB_RECORD_METHOD(void, SBInstruction, Print, (SBFile), out); in Print() 373 LLDB_REGISTER_METHOD(void, SBInstruction, Print, (SBFile)); in RegisterMethods()
|
| H A D | SBReproducer.cpp | 83 RegisterMethods<SBFile>(R); in SBRegistry()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBFile.i | 13 ) SBFile; 15 class SBFile 19 SBFile(); 24 SBFile(int fd, const char *mode, bool transfer_ownership); 27 SBFile(FileSP file); 30 static lldb::SBFile MakeBorrowed(lldb::FileSP BORROWED) { in MakeBorrowed() 31 return lldb::SBFile(BORROWED); in MakeBorrowed() 33 static lldb::SBFile MakeForcingIOMethods(lldb::FileSP FORCE_IO_METHODS) { in MakeForcingIOMethods() 34 return lldb::SBFile(FORCE_IO_METHODS); in MakeForcingIOMethods() 37 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in MakeBorrowedForcingIOMethods() [all …]
|
| H A D | SBDebugger.i | 175 self.SetOutputFile(SBFile.Create(file, borrow=True)) 182 self.SetInputFile(SBFile.Create(file, borrow=True)) 189 self.SetErrorFile(SBFile.Create(file, borrow=True)) 210 SetInputFile (SBFile file); 213 SetOutputFile (SBFile file); 216 SetErrorFile (SBFile file); 227 SBFile 230 SBFile 233 SBFile 248 SBFile out, [all …]
|
| H A D | SBCommandReturnObject.i | 52 PutOutput (lldb::SBFile file); 55 PutError (lldb::SBFile file); 94 void SetImmediateOutputFile(lldb::SBFile file); 95 void SetImmediateErrorFile(lldb::SBFile file);
|
| H A D | SBStream.i | 72 RedirectToFile (lldb::SBFile file);
|
| H A D | SBInstructionList.i | 58 Print (lldb::SBFile out);
|
| H A D | SBInstruction.i | 63 Print (lldb::SBFile out);
|
| H A D | SBProcess.i | 98 ReportEventState (const lldb::SBEvent &event, SBFile out) const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBFile.h | 16 class LLDB_API SBFile { 24 SBFile(); 25 SBFile(FileSP file_sp); 26 SBFile(const SBFile &rhs); 27 SBFile(FILE *file, bool transfer_ownership); 28 SBFile(int fd, const char *mode, bool transfer_ownership); 29 ~SBFile(); 31 SBFile &operator=(const SBFile &rhs);
|
| H A D | SBDebugger.h | 129 SBError SetInputFile(SBFile file); 131 SBError SetOutputFile(SBFile file); 133 SBError SetErrorFile(SBFile file); 141 SBFile GetInputFile(); 143 SBFile GetOutputFile(); 145 SBFile GetErrorFile(); 162 const lldb::SBEvent &event, SBFile out, SBFile err);
|
| H A D | SBCommandReturnObject.h | 49 size_t PutOutput(SBFile file); 59 size_t PutError(SBFile file); 87 void SetImmediateOutputFile(SBFile file); 89 void SetImmediateErrorFile(SBFile file);
|
| H A D | SBInstructionList.h | 49 void Print(SBFile out);
|
| H A D | SBInstruction.h | 58 void Print(SBFile out);
|
| H A D | SBError.h | 77 friend class SBFile; variable
|
| H A D | SBStream.h | 44 void RedirectToFile(lldb::SBFile file);
|
| H A D | SBDefines.h | 45 class LLDB_API SBFile; variable
|
| H A D | SBProcess.h | 70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/ |
| H A D | interfaces.swig | 37 %include "./interface/SBFile.i"
|
| H A D | headers.swig | 30 #include "lldb/API/SBFile.h"
|