Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
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()
DSBValue.cpp568 lldb::SBValue sb_value; in CreateChildAtOffset() local
575 sb_value.SetSP(value_sp->GetSyntheticChildAtOffset( in CreateChildAtOffset()
580 return LLDB_RECORD_RESULT(sb_value); in CreateChildAtOffset()
586 lldb::SBValue sb_value; in Cast() local
591 sb_value.SetSP(value_sp->Cast(type_sp->GetCompilerType(false)), in Cast()
593 return LLDB_RECORD_RESULT(sb_value); in Cast()
614 lldb::SBValue sb_value; in CreateValueFromExpression() local
625 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
626 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromExpression()
636 lldb::SBValue sb_value; in CreateValueFromAddress() local
[all …]
DSBFrame.cpp450 SBValue sb_value; in GetValueForVariablePath() local
459 sb_value = GetValueForVariablePath(var_path, use_dynamic); in GetValueForVariablePath()
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()
493 sb_value.SetSP(value_sp, use_dynamic); 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()
545 sb_value.SetSP(value_sp, use_dynamic); in FindVariable()
[all …]
DSBTypeSummary.cpp177 SBValue sb_value(valobj.GetSP()); in CreateWithCallback() local
179 if (!cb(sb_value, options, stream)) in CreateWithCallback()
DSBTarget.cpp1492 SBValue sb_value; in CreateValueFromAddress() local
1502 sb_value.SetSP(new_value_sp); in CreateValueFromAddress()
1503 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromAddress()
1512 SBValue sb_value; in CreateValueFromData() local
1522 sb_value.SetSP(new_value_sp); in CreateValueFromData()
1523 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromData()
1531 SBValue sb_value; in CreateValueFromExpression() local
1539 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
1540 return LLDB_RECORD_RESULT(sb_value); in CreateValueFromExpression()
/external/vboot_reference/scripts/image_signing/
Dcommon_minimal.sh274 local sb_value=$(sudo dd if="$rootfs" skip=$((offset + sb_magic_offset)) \
277 if [ "$sb_value" = "$expected_sb_value" ]; then
/external/llvm-project/lldb/test/API/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py379 import sb_value
380 sb_value.fuzz_obj(obj)
/external/llvm-project/lldb/bindings/python/
Dpython-wrapper.swig134 lldb::SBValue sb_value (valobj_sp);
184 PythonObject value_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));
218 lldb::SBValue *sb_value = new lldb::SBValue(valobj_sp);
219 sb_value->SetPreferSyntheticValue(false);
221 PythonObject val_arg(PyRefType::Owned, SBTypeToSWIGWrapper(sb_value));