Home
last modified time | relevance | path

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

12

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBFile.cpp17 SBFile::~SBFile() {} in ~SBFile()
19 SBFile::SBFile(FileSP file_sp) : m_opaque_sp(file_sp) { in SBFile() function in SBFile
20 LLDB_RECORD_DUMMY(void, SBfile, SBFile, (FileSP), file_sp); in SBFile()
23 SBFile::SBFile() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFile); } in SBFile() function in SBFile
25 SBFile::SBFile(FILE *file, bool transfer_ownership) { in SBFile() function in SBFile
26 LLDB_RECORD_DUMMY(void, SBFile, (FILE *, bool), file, transfer_ownership); in SBFile()
30 SBFile::SBFile(int fd, const char *mode, bool transfer_owndership) { in SBFile() function in SBFile
31 LLDB_RECORD_DUMMY(void, SBFile, (int, const char *, bool), fd, mode, in SBFile()
42 SBError SBFile::Read(uint8_t *buf, size_t num_bytes, size_t *bytes_read) { in Read()
43 LLDB_RECORD_DUMMY(lldb::SBError, SBFile, Read, (uint8_t *, size_t, size_t *), in Read()
[all …]
HDSBCommandReturnObject.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 …]
HDSBDebugger.cpp298 return LLDB_RECORD_RESULT(SetInputFile(SBFile(file_sp))); in SetInputFile()
304 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile()
305 LLDB_RECORD_METHOD(SBError, SBDebugger, SetInputFile, (SBFile), file); in SetInputFile()
344 return LLDB_RECORD_RESULT(SetOutputFile(SBFile(file_sp))); in SetOutputFile()
353 SBError SBDebugger::SetOutputFile(SBFile file) { in SetOutputFile()
354 LLDB_RECORD_METHOD(SBError, SBDebugger, SetOutputFile, (SBFile file), file); in SetOutputFile()
376 return LLDB_RECORD_RESULT(SetErrorFile(SBFile(file_sp))); in SetErrorFile()
379 SBError SBDebugger::SetErrorFile(SBFile file) { in SetErrorFile()
380 LLDB_RECORD_METHOD(SBError, SBDebugger, SetErrorFile, (SBFile file), file); in SetErrorFile()
403 SBFile SBDebugger::GetInputFile() { in GetInputFile()
[all …]
HDSBStream.cpp116 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
117 LLDB_RECORD_METHOD(void, SBStream, RedirectToFile, (SBFile), file) in RedirectToFile()
200 LLDB_REGISTER_METHOD(void, SBStream, RedirectToFile, (SBFile)); in RegisterMethods()
HDSBInstructionList.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()
HDSBInstruction.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()
HDSBReproducer.cpp55 RegisterMethods<SBFile>(R); in SBRegistry()
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBFile.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 …]
HDSBDebugger.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 …]
HDSBCommandReturnObject.i52 PutOutput (lldb::SBFile file);
55 PutError (lldb::SBFile file);
94 void SetImmediateOutputFile(lldb::SBFile file);
95 void SetImmediateErrorFile(lldb::SBFile file);
HDSBStream.i78 RedirectToFile (lldb::SBFile file);
HDSBInstructionList.i58 Print (lldb::SBFile out);
HDSBInstruction.i60 Print (lldb::SBFile out);
HDSBProcess.i100 ReportEventState (const lldb::SBEvent &event, SBFile out) const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBFile.h16 class LLDB_API SBFile {
24 SBFile();
25 SBFile(FileSP file_sp);
26 SBFile(FILE *file, bool transfer_ownership);
27 SBFile(int fd, const char *mode, bool transfer_ownership);
28 ~SBFile();
HDSBDebugger.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);
HDSBCommandReturnObject.h49 size_t PutOutput(SBFile file);
59 size_t PutError(SBFile file);
87 void SetImmediateOutputFile(SBFile file);
89 void SetImmediateErrorFile(SBFile file);
HDSBInstructionList.h49 void Print(SBFile out);
HDSBInstruction.h58 void Print(SBFile out);
HDSBError.h73 friend class SBFile; variable
HDSBStream.h42 void RedirectToFile(lldb::SBFile file);
HDSBDefines.h44 class LLDB_API SBFile; variable
HDSBProcess.h70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/
HDheaders.swig29 #include "lldb/API/SBFile.h"
HDinterfaces.swig35 %include "./interface/SBFile.i"

12