Home
last modified time | relevance | path

Searched refs:SBFile (Results 1 – 25 of 31) sorted by relevance

12

/external/llvm-project/lldb/source/API/
DSBFile.cpp17 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 …]
DSBCommandReturnObject.cpp136 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 …]
DSBDebugger.cpp299 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 …]
DSBStream.cpp123 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()
DSBInstructionList.cpp129 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()
DSBInstruction.cpp265 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/
DSBFile.i13 ) 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 …]
DSBDebugger.i175 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 …]
DSBCommandReturnObject.i52 PutOutput (lldb::SBFile file);
55 PutError (lldb::SBFile file);
94 void SetImmediateOutputFile(lldb::SBFile file);
95 void SetImmediateErrorFile(lldb::SBFile file);
DSBStream.i72 RedirectToFile (lldb::SBFile file);
DSBInstructionList.i58 Print (lldb::SBFile out);
DSBInstruction.i60 Print (lldb::SBFile out);
/external/llvm-project/lldb/include/lldb/API/
DSBFile.h16 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);
DSBDebugger.h91 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);
DSBCommandReturnObject.h49 size_t PutOutput(SBFile file);
59 size_t PutError(SBFile file);
87 void SetImmediateOutputFile(SBFile file);
89 void SetImmediateErrorFile(SBFile file);
DSBInstructionList.h49 void Print(SBFile out);
DSBInstruction.h58 void Print(SBFile out);
DSBError.h73 friend class SBFile; variable
DSBStream.h44 void RedirectToFile(lldb::SBFile file);
DSBDefines.h45 class LLDB_API SBFile; variable
/external/llvm-project/lldb/test/API/python_api/file_handle/
DTestFileHandle.py185 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/
Dio.test9 file = lldb.SBFile(2, "w", false)
Dprint.test9 file = lldb.SBFile(2, "w", false)
/external/llvm-project/lldb/bindings/
Dheaders.swig30 #include "lldb/API/SBFile.h"
Dinterfaces.swig37 %include "./interface/SBFile.i"

12