Lines Matching refs:SBValue

216 SBValue::SBValue() { LLDB_INSTRUMENT_VA(this); }  in SBValue()  function in SBValue
218 SBValue::SBValue(const lldb::ValueObjectSP &value_sp) { in SBValue() function in SBValue
224 SBValue::SBValue(const SBValue &rhs) { in SBValue() function in SBValue
230 SBValue &SBValue::operator=(const SBValue &rhs) { in operator =()
239 SBValue::~SBValue() = default;
241 bool SBValue::IsValid() { in IsValid()
245 SBValue::operator bool() const { in operator bool()
255 void SBValue::Clear() { in Clear()
261 SBError SBValue::GetError() { in GetError()
277 user_id_t SBValue::GetID() { in GetID()
287 const char *SBValue::GetName() { in GetName()
299 const char *SBValue::GetTypeName() { in GetTypeName()
312 const char *SBValue::GetDisplayTypeName() { in GetDisplayTypeName()
325 size_t SBValue::GetByteSize() { in GetByteSize()
339 bool SBValue::IsInScope() { in IsInScope()
353 const char *SBValue::GetValue() { in GetValue()
366 ValueType SBValue::GetValueType() { in GetValueType()
378 const char *SBValue::GetObjectDescription() { in GetObjectDescription()
391 SBType SBValue::GetType() { in GetType()
406 bool SBValue::GetValueDidChange() { in GetValueDidChange()
420 const char *SBValue::GetSummary() { in GetSummary()
433 const char *SBValue::GetSummary(lldb::SBStream &stream, in GetSummary()
448 const char *SBValue::GetLocation() { in GetLocation()
461 bool SBValue::SetValueFromCString(const char *value_str) { in SetValueFromCString()
468 bool SBValue::SetValueFromCString(const char *value_str, lldb::SBError &error) { in SetValueFromCString()
483 lldb::SBTypeFormat SBValue::GetTypeFormat() { in GetTypeFormat()
499 lldb::SBTypeSummary SBValue::GetTypeSummary() { in GetTypeSummary()
515 lldb::SBTypeFilter SBValue::GetTypeFilter() { in GetTypeFilter()
535 lldb::SBTypeSynthetic SBValue::GetTypeSynthetic() { in GetTypeSynthetic()
555 lldb::SBValue SBValue::CreateChildAtOffset(const char *name, uint32_t offset, in CreateChildAtOffset()
559 lldb::SBValue sb_value; in CreateChildAtOffset()
574 lldb::SBValue SBValue::Cast(SBType type) { in Cast()
577 lldb::SBValue sb_value; in Cast()
587 lldb::SBValue SBValue::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
596 lldb::SBValue SBValue::CreateValueFromExpression(const char *name, in CreateValueFromExpression()
601 lldb::SBValue sb_value; in CreateValueFromExpression()
616 lldb::SBValue SBValue::CreateValueFromAddress(const char *name, in CreateValueFromAddress()
621 lldb::SBValue sb_value; in CreateValueFromAddress()
636 lldb::SBValue SBValue::CreateValueFromData(const char *name, SBData data, in CreateValueFromData()
640 lldb::SBValue sb_value; in CreateValueFromData()
655 SBValue SBValue::GetChildAtIndex(uint32_t idx) { in GetChildAtIndex()
670 SBValue SBValue::GetChildAtIndex(uint32_t idx, in GetChildAtIndex()
687 SBValue sb_value; in GetChildAtIndex()
693 uint32_t SBValue::GetIndexOfChildWithName(const char *name) { in GetIndexOfChildWithName()
705 SBValue SBValue::GetChildMemberWithName(const char *name) { in GetChildMemberWithName()
718 SBValue
719 SBValue::GetChildMemberWithName(const char *name, in GetChildMemberWithName()
732 SBValue sb_value; in GetChildMemberWithName()
738 lldb::SBValue SBValue::GetDynamicValue(lldb::DynamicValueType use_dynamic) { in GetDynamicValue()
741 SBValue value_sb; in GetDynamicValue()
750 lldb::SBValue SBValue::GetStaticValue() { in GetStaticValue()
753 SBValue value_sb; in GetStaticValue()
763 lldb::SBValue SBValue::GetNonSyntheticValue() { in GetNonSyntheticValue()
766 SBValue value_sb; in GetNonSyntheticValue()
775 lldb::DynamicValueType SBValue::GetPreferDynamicValue() { in GetPreferDynamicValue()
783 void SBValue::SetPreferDynamicValue(lldb::DynamicValueType use_dynamic) { in SetPreferDynamicValue()
790 bool SBValue::GetPreferSyntheticValue() { in GetPreferSyntheticValue()
798 void SBValue::SetPreferSyntheticValue(bool use_synthetic) { in SetPreferSyntheticValue()
805 bool SBValue::IsDynamic() { in IsDynamic()
815 bool SBValue::IsSynthetic() { in IsSynthetic()
825 bool SBValue::IsSyntheticChildrenGenerated() { in IsSyntheticChildrenGenerated()
835 void SBValue::SetSyntheticChildrenGenerated(bool is) { in SetSyntheticChildrenGenerated()
844 lldb::SBValue SBValue::GetValueForExpressionPath(const char *expr_path) { in GetValueForExpressionPath()
855 SBValue sb_value; in GetValueForExpressionPath()
861 int64_t SBValue::GetValueAsSigned(SBError &error, int64_t fail_value) { in GetValueAsSigned()
881 uint64_t SBValue::GetValueAsUnsigned(SBError &error, uint64_t fail_value) { in GetValueAsUnsigned()
901 int64_t SBValue::GetValueAsSigned(int64_t fail_value) { in GetValueAsSigned()
912 uint64_t SBValue::GetValueAsUnsigned(uint64_t fail_value) { in GetValueAsUnsigned()
923 bool SBValue::MightHaveChildren() { in MightHaveChildren()
935 bool SBValue::IsRuntimeSupportValue() { in IsRuntimeSupportValue()
947 uint32_t SBValue::GetNumChildren() { in GetNumChildren()
953 uint32_t SBValue::GetNumChildren(uint32_t max) { in GetNumChildren()
966 SBValue SBValue::Dereference() { in Dereference()
969 SBValue sb_value; in Dereference()
981 bool SBValue::TypeIsPointerType() { in TypeIsPointerType()
987 void *SBValue::GetOpaqueType() { in GetOpaqueType()
997 lldb::SBTarget SBValue::GetTarget() { in GetTarget()
1010 lldb::SBProcess SBValue::GetProcess() { in GetProcess()
1023 lldb::SBThread SBValue::GetThread() { in GetThread()
1036 lldb::SBFrame SBValue::GetFrame() { in GetFrame()
1049 lldb::ValueObjectSP SBValue::GetSP(ValueLocker &locker) const { in GetSP()
1057 lldb::ValueObjectSP SBValue::GetSP() const { in GetSP()
1064 void SBValue::SetSP(ValueImplSP impl_sp) { m_opaque_sp = impl_sp; } in SetSP()
1066 void SBValue::SetSP(const lldb::ValueObjectSP &sp) { in SetSP()
1080 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1094 void SBValue::SetSP(const lldb::ValueObjectSP &sp, bool use_synthetic) { in SetSP()
1106 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1111 void SBValue::SetSP(const lldb::ValueObjectSP &sp, in SetSP()
1118 bool SBValue::GetExpressionPath(SBStream &description) { in GetExpressionPath()
1130 bool SBValue::GetExpressionPath(SBStream &description, in GetExpressionPath()
1143 lldb::SBValue SBValue::EvaluateExpression(const char *expr) const { in EvaluateExpression()
1149 return SBValue(); in EvaluateExpression()
1153 return SBValue(); in EvaluateExpression()
1163 lldb::SBValue
1164 SBValue::EvaluateExpression(const char *expr, in EvaluateExpression()
1171 lldb::SBValue SBValue::EvaluateExpression(const char *expr, in EvaluateExpression()
1177 return SBValue(); in EvaluateExpression()
1184 return SBValue(); in EvaluateExpression()
1189 return SBValue(); in EvaluateExpression()
1197 return SBValue(); in EvaluateExpression()
1207 SBValue result; in EvaluateExpression()
1212 bool SBValue::GetDescription(SBStream &description) { in GetDescription()
1227 lldb::Format SBValue::GetFormat() { in GetFormat()
1237 void SBValue::SetFormat(lldb::Format format) { in SetFormat()
1246 lldb::SBValue SBValue::AddressOf() { in AddressOf()
1249 SBValue sb_value; in AddressOf()
1261 lldb::addr_t SBValue::GetLoadAddress() { in GetLoadAddress()
1291 lldb::SBAddress SBValue::GetAddress() { in GetAddress()
1320 lldb::SBData SBValue::GetPointeeData(uint32_t item_idx, uint32_t item_count) { in GetPointeeData()
1339 lldb::SBData SBValue::GetData() { in GetData()
1356 bool SBValue::SetData(lldb::SBData &data, SBError &error) { in SetData()
1390 lldb::SBValue SBValue::Clone(const char *new_name) { in Clone()
1397 return lldb::SBValue(value_sp->Clone(ConstString(new_name))); in Clone()
1399 return lldb::SBValue(); in Clone()
1402 lldb::SBDeclaration SBValue::GetDeclaration() { in GetDeclaration()
1416 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, bool write, in Watch()
1479 lldb::SBWatchpoint SBValue::Watch(bool resolve_location, bool read, in Watch()
1487 lldb::SBWatchpoint SBValue::WatchPointee(bool resolve_location, bool read, in WatchPointee()
1497 lldb::SBValue SBValue::Persist() { in Persist()
1502 SBValue persisted_sb; in Persist()