Home
last modified time | relevance | path

Searched refs:sb_value (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBValueList.cpp37 void Append(const lldb::SBValue &sb_value) { m_values.push_back(sb_value); } in Append() argument
157 SBValue sb_value; in GetValueAtIndex() local
159 sb_value = m_opaque_up->GetValueAtIndex(idx); in GetValueAtIndex()
161 return sb_value; in GetValueAtIndex()
182 SBValue sb_value; in FindValueObjectByUID() local
184 sb_value = m_opaque_up->FindValueByUID(uid); in FindValueObjectByUID()
185 return sb_value; in FindValueObjectByUID()
191 SBValue sb_value; in GetFirstValueByName() local
193 sb_value = m_opaque_up->GetFirstValueByName(name); in GetFirstValueByName()
194 return sb_value; in GetFirstValueByName()
H A DSBValue.cpp561 return sb_value; in CreateChildAtOffset()
574 return sb_value; in Cast()
603 return sb_value; in CreateValueFromExpression()
623 return sb_value; in CreateValueFromAddress()
642 return sb_value; in CreateValueFromData()
677 SBValue sb_value; in GetChildAtIndex() local
680 return sb_value; in GetChildAtIndex()
724 return sb_value; in GetChildMemberWithName()
847 return sb_value; in GetValueForExpressionPath()
966 return sb_value; in Dereference()
[all …]
H A DSBFrame.cpp446 SBValue sb_value; in GetValueForVariablePath() local
457 return sb_value; in GetValueForVariablePath()
464 SBValue sb_value; in GetValueForVariablePath() local
466 return sb_value; in GetValueForVariablePath()
491 return sb_value; in GetValueForVariablePath()
516 SBValue sb_value; in FindVariable() local
519 return sb_value; in FindVariable()
542 return sb_value; in FindVariable()
566 SBValue sb_value; in FindValue() local
569 return sb_value; in FindValue()
[all …]
H A DSBTypeSummary.cpp150 SBValue sb_value(valobj.GetSP()); in CreateWithCallback() local
152 if (!cb(sb_value, options, stream)) in CreateWithCallback()
H A DSBTarget.cpp1403 SBValue sb_value; in CreateValueFromAddress() local
1413 sb_value.SetSP(new_value_sp); in CreateValueFromAddress()
1414 return sb_value; in CreateValueFromAddress()
1421 SBValue sb_value; in CreateValueFromData() local
1431 sb_value.SetSP(new_value_sp); in CreateValueFromData()
1432 return sb_value; in CreateValueFromData()
1439 SBValue sb_value; in CreateValueFromExpression() local
1447 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
1448 return sb_value; in CreateValueFromExpression()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig198 auto sb_value = std::unique_ptr<lldb::SBValue>(new lldb::SBValue(valobj_sp));
199 sb_value->SetPreferSyntheticValue(false);
201 PythonObject val_arg = SWIGBridge::ToSWIGWrapper(std::move(sb_value));