Home
last modified time | relevance | path

Searched refs:SBStream (Results 1 – 25 of 221) sorted by relevance

123456789

/llvm-project-15.0.7/lldb/source/API/
H A DSBStream.cpp23 SBStream::SBStream() : m_opaque_up(new StreamString()) { in SBStream() function in SBStream
27 SBStream::SBStream(SBStream &&rhs) in SBStream() function in SBStream
30 SBStream::~SBStream() = default;
32 bool SBStream::IsValid() const { in IsValid()
36 SBStream::operator bool() const { in operator bool()
44 const char *SBStream::GetData() { in GetData()
55 size_t SBStream::GetSize() { in GetSize()
64 void SBStream::Print(const char *str) { in Print()
122 void SBStream::RedirectToFile(SBFile file) { in RedirectToFile()
176 lldb_private::Stream &SBStream::ref() { in ref()
[all …]
H A DSBStructuredData.cpp56 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON()
72 lldb::SBStream s; in SetFromJSON()
94 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const { in GetAsJSON()
102 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const { in GetDescription()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBStream.h18 class LLDB_API SBStream {
20 SBStream();
22 SBStream(SBStream &&rhs);
24 ~SBStream();
105 SBStream(const SBStream &) = delete;
106 const SBStream &operator=(const SBStream &) = delete;
H A DSBThread.h75 bool GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream);
94 bool GetInfoItemByPathAsString(const char *path, SBStream &strm);
195 bool GetDescription(lldb::SBStream &description) const;
197 bool GetDescription(lldb::SBStream &description, bool stop_format) const;
199 bool GetStatus(lldb::SBStream &status) const;
H A DSBStructuredData.h35 lldb::SBError SetFromJSON(lldb::SBStream &stream);
41 lldb::SBError GetAsJSON(lldb::SBStream &stream) const;
43 lldb::SBError GetDescription(lldb::SBStream &stream) const;
H A DSBSourceManager.h30 uint32_t context_after, const char *current_line_cstr, lldb::SBStream &s);
35 const char *current_line_cstr, lldb::SBStream &s);
H A DSBValue.h73 const char *GetSummary(lldb::SBStream &stream,
298 bool GetDescription(lldb::SBStream &description);
300 bool GetExpressionPath(lldb::SBStream &description);
302 bool GetExpressionPath(lldb::SBStream &description,
H A DSBInstruction.h62 bool GetDescription(lldb::SBStream &description);
70 bool TestEmulation(lldb::SBStream &output_stream, const char *test_file);
H A DSBEvent.h58 bool GetDescription(lldb::SBStream &description);
60 bool GetDescription(lldb::SBStream &description) const;
H A DSBModuleSpec.h80 bool GetDescription(lldb::SBStream &description);
114 bool GetDescription(lldb::SBStream &description);
H A DSBType.h44 bool GetDescription(lldb::SBStream &description,
89 bool GetDescription(lldb::SBStream &description,
209 bool GetDescription(lldb::SBStream &description,
H A DSBTypeSummary.h60 typedef bool (*FormatCallback)(SBValue, SBTypeSummaryOptions, SBStream &);
104 bool GetDescription(lldb::SBStream &description,
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBStream.i38 patterns = ['=> %d.*Hello world' % self.line])") SBStream;
39 class SBStream
43 SBStream ();
45 ~SBStream ();
H A DSBStructuredData.i54 GetAsJSON(lldb::SBStream &stream) const;
57 GetDescription(lldb::SBStream &stream) const;
60 SetFromJSON(lldb::SBStream &stream);
H A DSBThread.i119 GetStopReasonExtendedInfoAsJSON (lldb::SBStream &stream);
186 GetInfoItemByPathAsString (const char *path, lldb::SBStream &strm);
343 GetDescription (lldb::SBStream &description) const;
349 bool GetDescription(lldb::SBStream &description, bool stop_format) const;
352 GetStatus (lldb::SBStream &status) const;
H A DSBSourceManager.i49 lldb::SBStream &s);
56 lldb::SBStream &s);
H A DSBModuleSpec.i92 GetDescription (lldb::SBStream &description);
132 GetDescription (lldb::SBStream &description);
H A DSBValue.i126 GetSummary (lldb::SBStream& stream,
373 GetDescription (lldb::SBStream &description);
376 GetExpressionPath (lldb::SBStream &description);
428 GetExpressionPath (lldb::SBStream &description, bool qualify_cxx_base_classes);
515 s = SBStream()
H A DSBInstruction.i69 GetDescription (lldb::SBStream &description);
78 TestEmulation (lldb::SBStream &output_stream, const char *test_file);
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_instruction.py16 obj.GetDescription(lldb.SBStream())
19 obj.TestEmulation(lldb.SBStream(), "my-file")
/llvm-project-15.0.7/lldb/test/API/python_api/exprpath_synthetic/
H A Dmain.mm8 …return 0; //% v = self.frame().FindVariable("v"); v0 = v.GetChildAtIndex(0); s = lldb.SBStream(); …
10 …//% a = self.frame().FindVariable("a"); a1 = a.GetChildAtIndex(1); s = lldb.SBStream(); a1.GetExpr…
/llvm-project-15.0.7/lldb/bindings/
H A Dmacros.swig4 lldb::SBStream stream;
19 lldb::SBStream stream;
/llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/
H A DTestInlineStepping.py73 destination_description = lldb.SBStream()
93 destination_description = lldb.SBStream()
96 actual_description = lldb.SBStream()
111 destination_description = lldb.SBStream()
/llvm-project-15.0.7/lldb/test/API/functionalities/process_crash_info/
H A DTestProcessCrashInfo.py54 stream = lldb.SBStream()
79 stream = lldb.SBStream()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/
H A DTestBreakpointSerialization.py64 stream = lldb.SBStream()
73 stream = lldb.SBStream()
82 stream = lldb.SBStream()
132 source_desc = lldb.SBStream()
144 copy_desc = lldb.SBStream()
367 stream = lldb.SBStream()

123456789