Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBFile.cpp17 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 DSBCommandReturnObject.cpp135 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 DSBDebugger.cpp341 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 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()
H A 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()
H A 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()
H A DSBReproducer.cpp83 RegisterMethods<SBFile>(R); in SBRegistry()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/
H A 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()
37 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in MakeBorrowedForcingIOMethods()
[all …]
H A 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 …]
H A DSBCommandReturnObject.i52 PutOutput (lldb::SBFile file);
55 PutError (lldb::SBFile file);
94 void SetImmediateOutputFile(lldb::SBFile file);
95 void SetImmediateErrorFile(lldb::SBFile file);
H A DSBStream.i72 RedirectToFile (lldb::SBFile file);
H A DSBInstructionList.i58 Print (lldb::SBFile out);
H A DSBInstruction.i63 Print (lldb::SBFile out);
H A DSBProcess.i98 ReportEventState (const lldb::SBEvent &event, SBFile out) const;
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A 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);
H A DSBDebugger.h129 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 DSBCommandReturnObject.h49 size_t PutOutput(SBFile file);
59 size_t PutError(SBFile file);
87 void SetImmediateOutputFile(SBFile file);
89 void SetImmediateErrorFile(SBFile file);
H A DSBInstructionList.h49 void Print(SBFile out);
H A DSBInstruction.h58 void Print(SBFile out);
H A DSBError.h77 friend class SBFile; variable
H A DSBStream.h44 void RedirectToFile(lldb::SBFile file);
H A DSBDefines.h45 class LLDB_API SBFile; variable
H A DSBProcess.h70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
/freebsd-13.1/contrib/llvm-project/lldb/bindings/
H A Dinterfaces.swig37 %include "./interface/SBFile.i"
H A Dheaders.swig30 #include "lldb/API/SBFile.h"

12