Home
last modified time | relevance | path

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

/freebsd-14.2/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
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
88 SBError SBFile::Flush() { in Flush()
101 bool SBFile::IsValid() const { in IsValid()
106 SBError SBFile::Close() { in Close()
[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.cpp395 SBError SBDebugger::SetInputFile(SBFile file) { in SetInputFile()
413 return SetInputFile(SBFile(file_sp)); in SetInputFile()
418 return SetOutputFile(SBFile(file_sp)); in SetOutputFile()
448 return SetErrorFile(SBFile(file_sp)); in SetErrorFile()
497 SBFile SBDebugger::GetInputFile() { in GetInputFile()
502 return SBFile(); in GetInputFile()
514 SBFile SBDebugger::GetOutputFile() { in GetOutputFile()
520 return SBFile(); in GetOutputFile()
533 SBFile SBDebugger::GetErrorFile() { in GetErrorFile()
535 SBFile file; in GetErrorFile()
[all …]
H A DSBInstructionList.cpp120 void SBInstructionList::Print(SBFile out) { in Print()
H A DSBStream.cpp123 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
H A DSBInstruction.cpp276 void SBInstruction::Print(SBFile out) { in Print()
H A DSBProcess.cpp300 void SBProcess::ReportEventState(const SBEvent &event, SBFile out) const { in ReportEventState()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFile.h18 class LLDB_API SBFile {
26 SBFile();
27 SBFile(FileSP file_sp);
29 SBFile(const SBFile &rhs);
30 SBFile(FILE *file, bool transfer_ownership);
32 SBFile(int fd, const char *mode, bool transfer_ownership);
33 ~SBFile();
35 SBFile &operator=(const SBFile &rhs);
H A DSBDebugger.h178 SBError SetInputFile(SBFile file);
180 SBError SetOutputFile(SBFile file);
182 SBError SetErrorFile(SBFile file);
190 SBFile GetInputFile();
192 SBFile GetOutputFile();
194 SBFile GetErrorFile();
221 const lldb::SBEvent &event, SBFile out, SBFile err);
H A DSBCommandReturnObject.h55 size_t PutOutput(SBFile file);
69 size_t PutError(SBFile file);
111 void SetImmediateOutputFile(SBFile file);
113 void SetImmediateErrorFile(SBFile file);
H A DSBInstructionList.h51 void Print(SBFile out);
H A DSBInstruction.h62 void Print(SBFile out);
H A DSBError.h82 friend class SBFile; variable
H A DSBStream.h48 void RedirectToFile(lldb::SBFile file);
H A DSBDefines.h71 class LLDB_API SBFile; variable
H A DSBProcess.h76 void ReportEventState(const lldb::SBEvent &event, SBFile file) const;
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileDocstrings.i3 ) lldb::SBFile;
7 'r', 'r+', or 'w', like fdopen.") lldb::SBFile::SBFile;
9 %feature("docstring", "initialize a SBFile from a python file object") lldb::SBFile::SBFile;
11 %feature("autodoc", "Read(buffer) -> SBError, bytes_read") lldb::SBFile::Read;
12 %feature("autodoc", "Write(buffer) -> SBError, written_read") lldb::SBFile::Write;
28 ") lldb::SBFile::GetFile;
H A DSBFileExtensions.i1 %extend lldb::SBFile {
2 static lldb::SBFile MakeBorrowed(lldb::FileSP BORROWED) { in MakeBorrowed()
3 return lldb::SBFile(BORROWED); in MakeBorrowed()
5 static lldb::SBFile MakeForcingIOMethods(lldb::FileSP FORCE_IO_METHODS) { in MakeForcingIOMethods()
6 return lldb::SBFile(FORCE_IO_METHODS); in MakeForcingIOMethods()
8 static lldb::SBFile MakeBorrowedForcingIOMethods(lldb::FileSP BORROWED_FORCE_IO_METHODS) { in MakeBorrowedForcingIOMethods()
9 return lldb::SBFile(BORROWED_FORCE_IO_METHODS); in MakeBorrowedForcingIOMethods()
H A DSBDebuggerExtensions.i11 self.SetOutputFile(SBFile.Create(file, borrow=True))
18 self.SetInputFile(SBFile.Create(file, borrow=True))
25 self.SetErrorFile(SBFile.Create(file, borrow=True))
/freebsd-14.2/contrib/llvm-project/lldb/bindings/
H A Dheaders.swig30 #include "lldb/API/SBFile.h"
H A Dinterfaces.swig107 %include "lldb/API/SBFile.h"
/freebsd-14.2/lib/clang/liblldb/
H A DLLDBWrapLua.cpp19801 lldb::SBFile * resultptr = new lldb::SBFile(result); in _wrap_SBDebugger_GetInputFile()
19828 lldb::SBFile * resultptr = new lldb::SBFile(result); in _wrap_SBDebugger_GetOutputFile()
27179 result = (lldb::SBFile *)new lldb::SBFile(); in _wrap_new_SBFile__SWIG_0()
27205 result = (lldb::SBFile *)new lldb::SBFile(arg1); in _wrap_new_SBFile__SWIG_1()
27294 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Read()
27338 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Write()
27382 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Flush()
27409 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_IsValid()
27433 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_Close()
27460 lldb::SBFile *arg1 = (lldb::SBFile *) 0 ; in _wrap_SBFile_GetFile()
[all …]
H A DMakefile40 SRCS+= API/SBFile.cpp