Lines Matching refs:SBStructuredData
25 #pragma mark SBStructuredData
27 SBStructuredData::SBStructuredData() : m_impl_up(new StructuredDataImpl()) {} in SBStructuredData() function in SBStructuredData
29 SBStructuredData::SBStructuredData(const lldb::SBStructuredData &rhs) in SBStructuredData() function in SBStructuredData
32 SBStructuredData::SBStructuredData(const lldb::EventSP &event_sp) in SBStructuredData() function in SBStructuredData
35 SBStructuredData::SBStructuredData(lldb_private::StructuredDataImpl *impl) in SBStructuredData() function in SBStructuredData
38 SBStructuredData::~SBStructuredData() {} in ~SBStructuredData()
40 SBStructuredData &SBStructuredData::
41 operator=(const lldb::SBStructuredData &rhs) { in operator =()
46 lldb::SBError SBStructuredData::SetFromJSON(lldb::SBStream &stream) { in SetFromJSON()
58 bool SBStructuredData::IsValid() const { return m_impl_up->IsValid(); } in IsValid()
60 void SBStructuredData::Clear() { m_impl_up->Clear(); } in Clear()
62 SBError SBStructuredData::GetAsJSON(lldb::SBStream &stream) const { in GetAsJSON()
68 lldb::SBError SBStructuredData::GetDescription(lldb::SBStream &stream) const { in GetDescription()
75 StructuredDataType SBStructuredData::GetType() const { in GetType()
79 size_t SBStructuredData::GetSize() const { in GetSize()
83 bool SBStructuredData::GetKeys(lldb::SBStringList &keys) const { in GetKeys()
110 lldb::SBStructuredData SBStructuredData::GetValueForKey(const char *key) const { in GetValueForKey()
112 return SBStructuredData(); in GetValueForKey()
114 SBStructuredData result; in GetValueForKey()
119 lldb::SBStructuredData SBStructuredData::GetItemAtIndex(size_t idx) const { in GetItemAtIndex()
121 return SBStructuredData(); in GetItemAtIndex()
123 SBStructuredData result; in GetItemAtIndex()
128 uint64_t SBStructuredData::GetIntegerValue(uint64_t fail_value) const { in GetIntegerValue()
132 double SBStructuredData::GetFloatValue(double fail_value) const { in GetFloatValue()
136 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue()
140 size_t SBStructuredData::GetStringValue(char *dst, size_t dst_len) const { in GetStringValue()