| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBStream.cpp | 23 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 D | SBStructuredData.cpp | 56 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 D | SBStream.h | 18 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 D | SBThread.h | 75 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 D | SBStructuredData.h | 35 lldb::SBError SetFromJSON(lldb::SBStream &stream); 41 lldb::SBError GetAsJSON(lldb::SBStream &stream) const; 43 lldb::SBError GetDescription(lldb::SBStream &stream) const;
|
| H A D | SBSourceManager.h | 30 uint32_t context_after, const char *current_line_cstr, lldb::SBStream &s); 35 const char *current_line_cstr, lldb::SBStream &s);
|
| H A D | SBValue.h | 73 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 D | SBInstruction.h | 62 bool GetDescription(lldb::SBStream &description); 70 bool TestEmulation(lldb::SBStream &output_stream, const char *test_file);
|
| H A D | SBEvent.h | 58 bool GetDescription(lldb::SBStream &description); 60 bool GetDescription(lldb::SBStream &description) const;
|
| H A D | SBModuleSpec.h | 80 bool GetDescription(lldb::SBStream &description); 114 bool GetDescription(lldb::SBStream &description);
|
| H A D | SBType.h | 44 bool GetDescription(lldb::SBStream &description, 89 bool GetDescription(lldb::SBStream &description, 209 bool GetDescription(lldb::SBStream &description,
|
| H A D | SBTypeSummary.h | 60 typedef bool (*FormatCallback)(SBValue, SBTypeSummaryOptions, SBStream &); 104 bool GetDescription(lldb::SBStream &description,
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBStream.i | 38 patterns = ['=> %d.*Hello world' % self.line])") SBStream; 39 class SBStream 43 SBStream (); 45 ~SBStream ();
|
| H A D | SBStructuredData.i | 54 GetAsJSON(lldb::SBStream &stream) const; 57 GetDescription(lldb::SBStream &stream) const; 60 SetFromJSON(lldb::SBStream &stream);
|
| H A D | SBThread.i | 119 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 D | SBSourceManager.i | 49 lldb::SBStream &s); 56 lldb::SBStream &s);
|
| H A D | SBModuleSpec.i | 92 GetDescription (lldb::SBStream &description); 132 GetDescription (lldb::SBStream &description);
|
| H A D | SBValue.i | 126 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 D | SBInstruction.i | 69 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 D | sb_instruction.py | 16 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 D | main.mm | 8 …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 D | macros.swig | 4 lldb::SBStream stream; 19 lldb::SBStream stream;
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/inline-stepping/ |
| H A D | TestInlineStepping.py | 73 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 D | TestProcessCrashInfo.py | 54 stream = lldb.SBStream() 79 stream = lldb.SBStream()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/serialize/ |
| H A D | TestBreakpointSerialization.py | 64 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()
|