Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBValueList.cpp35 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 LLDB_RECORD_RESULT(sb_value); in GetValueAtIndex()
183 SBValue sb_value; in FindValueObjectByUID() local
185 sb_value = m_opaque_up->FindValueByUID(uid); in FindValueObjectByUID()
186 return LLDB_RECORD_RESULT(sb_value); in FindValueObjectByUID()
193 SBValue sb_value; in GetFirstValueByName() local
195 sb_value = m_opaque_up->GetFirstValueByName(name); in GetFirstValueByName()
196 return LLDB_RECORD_RESULT(sb_value); in GetFirstValueByName()
H A DSBValue.cpp568 lldb::SBValue sb_value; in CreateChildAtOffset() local
586 lldb::SBValue sb_value; in Cast() local
614 lldb::SBValue sb_value; in CreateValueFromExpression() local
625 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
636 lldb::SBValue sb_value; in CreateValueFromAddress() local
657 lldb::SBValue sb_value; in CreateValueFromData() local
707 SBValue sb_value; in GetChildAtIndex() local
756 SBValue sb_value; in GetChildMemberWithName() local
884 SBValue sb_value; in GetValueForExpressionPath() local
1001 SBValue sb_value; in Dereference() local
[all …]
H A DSBFrame.cpp450 SBValue sb_value; in GetValueForVariablePath() local
461 return LLDB_RECORD_RESULT(sb_value); in GetValueForVariablePath()
470 SBValue sb_value; in GetValueForVariablePath() local
472 return LLDB_RECORD_RESULT(sb_value); in GetValueForVariablePath()
497 return LLDB_RECORD_RESULT(sb_value); in GetValueForVariablePath()
524 SBValue sb_value; in FindVariable() local
527 return LLDB_RECORD_RESULT(sb_value); in FindVariable()
550 return LLDB_RECORD_RESULT(sb_value); in FindVariable()
577 SBValue sb_value; in FindValue() local
580 return LLDB_RECORD_RESULT(sb_value); in FindValue()
[all …]
H A DSBTypeSummary.cpp177 SBValue sb_value(valobj.GetSP()); in CreateWithCallback() local
179 if (!cb(sb_value, options, stream)) in CreateWithCallback()
H A DSBTarget.cpp1524 SBValue sb_value; in CreateValueFromAddress() local
1534 sb_value.SetSP(new_value_sp); in CreateValueFromAddress()
1535 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromAddress()
1544 SBValue sb_value; in CreateValueFromData() local
1554 sb_value.SetSP(new_value_sp); in CreateValueFromData()
1555 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromData()
1563 SBValue sb_value; in CreateValueFromExpression() local
1571 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
1572 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromExpression()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig151 lldb::SBValue sb_value (valobj_sp);
201 PythonObject value_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));
235 lldb::SBValue *sb_value = new lldb::SBValue(valobj_sp);
236 sb_value->SetPreferSyntheticValue(false);
238 PythonObject val_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));