/external/llvm-project/lldb/source/API/ |
D | SBFile.cpp | 17 SBFile::~SBFile() = default; 19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { in SBFile() function in SBFile 22 LLDB_RECORD_CONSTRUCTOR(SBFile, (lldb::FileSP), nullptr); 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 =() 30 LLDB_RECORD_METHOD(lldb::SBFile &, 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 [all …]
|
D | SBCommandReturnObject.cpp | 136 size_t SBCommandReturnObject::PutOutput(SBFile file) { in PutOutput() 137 LLDB_RECORD_METHOD(size_t, SBCommandReturnObject, PutOutput, (SBFile), file); in PutOutput() 161 size_t SBCommandReturnObject::PutError(SBFile file) { in PutError() 162 LLDB_RECORD_METHOD(size_t, SBCommandReturnObject, PutError, (SBFile), file); in PutError() 286 void SBCommandReturnObject::SetImmediateOutputFile(SBFile file) { in SetImmediateOutputFile() 288 (SBFile), file); in SetImmediateOutputFile() 292 void SBCommandReturnObject::SetImmediateErrorFile(SBFile file) { in SetImmediateErrorFile() 294 (SBFile), file); in SetImmediateErrorFile() 301 SetImmediateOutputFile(SBFile(file_sp)); in SetImmediateOutputFile() 307 SetImmediateErrorFile(SBFile(file_sp)); in SetImmediateErrorFile() [all …]
|
D | SBDebugger.cpp | 299 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp))); in SetInputFile() 305 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile() 306 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (SBFile), file); in SetInputFile() 345 return LLDB_RECORD_RESULT(SetOutputFile(SBFile(file_sp))); in SetOutputFile() 354 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile() 355 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (SBFile file), file); in SetOutputFile() 377 return LLDB_RECORD_RESULT(SetErrorFile(SBFile(file_sp))); in SetErrorFile() 380 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile() 381 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (SBFile file), file); in SetErrorFile() 404 SBFile SBDebugger::GetInputFile() { in GetInputFile() [all …]
|
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()
|
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()
|
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()
|
/external/llvm-project/lldb/bindings/interface/ |
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 …]
|
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 …]
|
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);
|
D | SBStream.i | 72 RedirectToFile (lldb::SBFile file);
|
D | SBInstructionList.i | 58 Print (lldb::SBFile out);
|
D | SBInstruction.i | 60 Print (lldb::SBFile out);
|
/external/llvm-project/lldb/include/lldb/API/ |
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);
|
D | SBDebugger.h | 91 SBError SetInputFile(SBFile file); 93 SBError SetOutputFile(SBFile file); 95 SBError SetErrorFile(SBFile file); 103 SBFile GetInputFile(); 105 SBFile GetOutputFile(); 107 SBFile GetErrorFile(); 124 const lldb::SBEvent &event, SBFile out, SBFile err);
|
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);
|
D | SBInstructionList.h | 49 void Print(SBFile out);
|
D | SBInstruction.h | 58 void Print(SBFile out);
|
D | SBError.h | 73 friend class SBFile; variable
|
D | SBStream.h | 44 void RedirectToFile(lldb::SBFile file);
|
D | SBDefines.h | 45 class LLDB_API SBFile; variable
|
/external/llvm-project/lldb/test/API/python_api/file_handle/ |
D | TestFileHandle.py | 185 sbf = lldb.SBFile() 197 sbf = lldb.SBFile(f.fileno(), "w", False) 212 sbf = lldb.SBFile(f) 228 sbf = lldb.SBFile(f.fileno(), "r", False) 242 sbf = lldb.SBFile(f) 256 sbf = lldb.SBFile(f.fileno(), "w", False) 271 sbf = lldb.SBFile(f.fileno(), "w", False) 283 status = self.dbg.SetOutputFile(lldb.SBFile(f)) 330 ret.SetImmediateOutputFile(lldb.SBFile(f)) 348 outsbf = lldb.SBFile(outf.fileno(), "w", False) [all …]
|
/external/llvm-project/lldb/test/Shell/ScriptInterpreter/Lua/ |
D | io.test | 9 file = lldb.SBFile(2, "w", false)
|
D | print.test | 9 file = lldb.SBFile(2, "w", false)
|
/external/llvm-project/lldb/bindings/ |
D | headers.swig | 30 #include "lldb/API/SBFile.h"
|
D | interfaces.swig | 37 %include "./interface/SBFile.i"
|