| /openbsd-src/gnu/llvm/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 | 383 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() 401 return SetInputFile(SBFile(file_sp)); in SetInputFile() 406 return SetOutputFile(SBFile(file_sp)); in SetOutputFile() 414 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() 436 return SetErrorFile(SBFile(file_sp)); in SetErrorFile() 439 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() 486 SBFile SBDebugger::GetInputFile() { in GetInputFile() 489 return SBFile(m_opaque_sp->GetInputFileSP()); in GetInputFile() 491 return SBFile(); in GetInputFile() 503 SBFile SBDebugger::GetOutputFile() { in GetOutputFile() [all …]
|
| H A D | SBInstructionList.cpp | 120 void SBInstructionList::Print(SBFile out) { in Print()
|
| H A D | SBStream.cpp | 122 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
|
| /openbsd-src/gnu/llvm/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() 36 static lldb::SBFile MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_METHODS) { in MakeBorrowedForcingIOMethods() [all …]
|
| H A D | SBDebugger.i | 194 self.SetOutputFile(SBFile.Create(file, borrow=True)) 201 self.SetInputFile(SBFile.Create(file, borrow=True)) 208 self.SetErrorFile(SBFile.Create(file, borrow=True)) 234 SetInputFile (SBFile file); 237 SetOutputFile (SBFile file); 240 SetErrorFile (SBFile file); 251 SBFile 254 SBFile 257 SBFile 272 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 | 66 Print (lldb::SBFile out);
|
| /openbsd-src/gnu/llvm/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 | 157 SBError SetInputFile(SBFile file); 159 SBError SetOutputFile(SBFile file); 161 SBError SetErrorFile(SBFile file); 169 SBFile GetInputFile(); 171 SBFile GetOutputFile(); 173 SBFile GetErrorFile(); 190 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 | 60 void Print(SBFile out);
|
| H A D | SBError.h | 73 friend class SBFile; variable
|
| H A D | SBStream.h | 44 void RedirectToFile(lldb::SBFile file);
|
| H A D | SBDefines.h | 57 class LLDB_API SBFile; variable
|
| H A D | SBProcess.h | 70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
|
| /openbsd-src/gnu/usr.bin/clang/liblldbAPI/ |
| H A D | Makefile | 31 SBFile.cpp \
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/API/ |
| H A D | BUILD.gn | 62 "SBFile.cpp",
|
| /openbsd-src/gnu/llvm/lldb/bindings/ |
| H A D | interfaces.swig | 34 %include "./interface/SBFile.i"
|
| H A D | headers.swig | 30 #include "lldb/API/SBFile.h"
|
| /openbsd-src/gnu/llvm/lldb/docs/ |
| H A D | .htaccess | 46 Redirect 301 /python_reference/lldb.SBFile-class.html https://lldb.llvm.org/python_api/lldb.SBFile.…
|