/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBStream.cpp | 1 //===-- SBStream.cpp ------------------------------------------------------===// 9 #include "lldb/API/SBStream.h" 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 [all...] |
H A D | SBStructuredData.cpp | 80 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON() 96 lldb::SBStream s; in SetFromJSON() 118 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const { in GetAsJSON() 126 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const { in GetDescription()
|
H A D | SBSourceManager.cpp | 11 #include "lldb/API/SBStream.h" 105 uint32_t context_after, const char *current_line_cstr, SBStream &s) { in DisplaySourceLinesWithLineNumbers() 118 const char *current_line_cstr, SBStream &s) { in DisplaySourceLinesWithLineNumbersAndColumn()
|
H A D | SBEvent.cpp | 175 bool SBEvent::GetDescription(SBStream &description) { in GetDescription() 188 bool SBEvent::GetDescription(SBStream &description) const { in GetDescription()
|
H A D | SBModuleSpec.cpp | 146 bool SBModuleSpec::GetDescription(lldb::SBStream &description) { in GetDescription() 253 bool SBModuleSpecList::GetDescription(lldb::SBStream &description) { in GetDescription()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBStream.h | 22 class LLDB_API SBStream { 24 SBStream(); 27 SBStream(SBStream &&rhs); 30 ~SBStream(); 119 SBStream(const SBStream &) = delete; 120 const SBStream &operator=(const SBStream &) = delete;
|
H A D | SBThread.h | 79 bool GetStopReasonExtendedInfoAsJSON(lldb::SBStream &stream); 98 bool GetInfoItemByPathAsString(const char *path, SBStream &strm); 199 bool GetDescription(lldb::SBStream &description) const; 201 bool GetDescription(lldb::SBStream &description, bool stop_format) const; 216 SBError GetDescriptionWithFormat(const SBFormat &format, SBStream &output); 218 bool GetStatus(lldb::SBStream &status) const;
|
H A D | SBStructuredData.h | 44 lldb::SBError SetFromJSON(lldb::SBStream &stream); 50 lldb::SBError GetAsJSON(lldb::SBStream &stream) const; 52 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 | 81 const char *GetSummary(lldb::SBStream &stream, 324 bool GetDescription(lldb::SBStream &description); 326 bool GetExpressionPath(lldb::SBStream &description); 328 bool GetExpressionPath(lldb::SBStream &description,
|
H A D | SBInstruction.h | 66 bool GetDescription(lldb::SBStream &description); 74 bool TestEmulation(lldb::SBStream &output_stream, const char *test_file);
|
H A D | SBEvent.h | 63 bool GetDescription(lldb::SBStream &description); 65 bool GetDescription(lldb::SBStream &description) const;
|
H A D | SBModuleSpec.h | 88 bool GetDescription(lldb::SBStream &description); 125 bool GetDescription(lldb::SBStream &description);
|
H A D | SBTypeSummary.h | 70 typedef bool (*FormatCallback)(SBValue, SBTypeSummaryOptions, SBStream &); 116 bool GetDescription(lldb::SBStream &description,
|
H A D | SBType.h | 50 bool GetDescription(lldb::SBStream &description, 95 bool GetDescription(lldb::SBStream &description, 248 bool GetDescription(lldb::SBStream &description,
|
H A D | SBBreakpoint.h | 131 bool GetDescription(lldb::SBStream &description); 133 bool GetDescription(lldb::SBStream &description, bool include_locations);
|
H A D | SBFileSpecList.h | 29 bool GetDescription(SBStream &description) const;
|
H A D | SBAddressRangeList.h | 43 bool GetDescription(lldb::SBStream &description, const SBTarget &target);
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBStreamDocstrings.i | 27 ) lldb::SBStream; 32 ) lldb::SBStream::GetData; 38 ) lldb::SBStream::GetSize; 44 ) lldb::SBStream::Clear;
|
H A D | SBStreamExtensions.i | 1 %extend lldb::SBStream {
|
H A D | SBAddressRangeExtensions.i | 6 stream = lldb.SBStream()
|
H A D | SBAddressRangeListExtensions.i | 24 stream = lldb.SBStream()
|
/freebsd/contrib/llvm-project/lldb/bindings/ |
H A D | macros.swig | 4 lldb::SBStream stream; 19 lldb::SBStream stream;
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
H A D | ScriptedPythonInterface.cpp | 71 if (lldb::SBStream *sb_stream = reinterpret_cast<lldb::SBStream *>( in ExtractValueFromPythonObject()
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-swigsafecast.swig | 115 return ToSWIGHelper(new lldb::SBStream(), SWIGTYPE_p_lldb__SBStream); 118 PythonObject SWIGBridge::ToSWIGWrapper(std::shared_ptr<lldb::SBStream> stream_sb) {
|