Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/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
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 DSBCommandReturnObject.cpp128 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 DSBDebugger.cpp383 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 DSBInstructionList.cpp120 void SBInstructionList::Print(SBFile out) { in Print()
H A DSBStream.cpp122 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
/openbsd-src/gnu/llvm/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()
36 static lldb::SBFile MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_METHODS) { in MakeBorrowedForcingIOMethods()
[all …]
H A DSBDebugger.i194 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 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.i66 Print (lldb::SBFile out);
/openbsd-src/gnu/llvm/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.h157 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 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.h60 void Print(SBFile out);
H A DSBError.h73 friend class SBFile; variable
H A DSBStream.h44 void RedirectToFile(lldb::SBFile file);
H A DSBDefines.h57 class LLDB_API SBFile; variable
H A DSBProcess.h70 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
/openbsd-src/gnu/usr.bin/clang/liblldbAPI/
H A DMakefile31 SBFile.cpp \
/openbsd-src/gnu/llvm/llvm/utils/gn/secondary/lldb/source/API/
H A DBUILD.gn62 "SBFile.cpp",
/openbsd-src/gnu/llvm/lldb/bindings/
H A Dinterfaces.swig34 %include "./interface/SBFile.i"
H A Dheaders.swig30 #include "lldb/API/SBFile.h"
/openbsd-src/gnu/llvm/lldb/docs/
H A D.htaccess46 Redirect 301 /python_reference/lldb.SBFile-class.html https://lldb.llvm.org/python_api/lldb.SBFile.…

12