Home
last modified time | relevance | path

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

/external/lldb/source/API/
DSBValueList.cpp51 Append (const lldb::SBValue& sb_value) in Append() argument
53 m_values.push_back(sb_value); in Append()
212 SBValue sb_value; in GetValueAtIndex() local
214 sb_value = m_opaque_ap->GetValueAtIndex (idx); in GetValueAtIndex()
219 sb_value.GetDescription (sstr); in GetValueAtIndex()
221 m_opaque_ap.get(), idx, sb_value.GetSP().get(), sstr.GetData()); in GetValueAtIndex()
224 return sb_value; in GetValueAtIndex()
256 SBValue sb_value; in FindValueObjectByUID() local
258 sb_value = m_opaque_ap->FindValueByUID(uid); in FindValueObjectByUID()
259 return sb_value; in FindValueObjectByUID()
DSBValue.cpp665 lldb::SBValue sb_value; in CreateChildAtOffset() local
674sb_value.SetSP(value_sp->GetSyntheticChildAtOffset(offset, type_sp->GetClangASTType(), true),GetPr… in CreateChildAtOffset()
688 return sb_value; in CreateChildAtOffset()
694 lldb::SBValue sb_value; in Cast() local
699sb_value.SetSP(value_sp->Cast(type_sp->GetClangASTType()),GetPreferDynamicValue(),GetPreferSynthet… in Cast()
700 return sb_value; in Cast()
715 lldb::SBValue sb_value; in CreateValueFromExpression() local
733 sb_value.SetSP(new_value_sp); in CreateValueFromExpression()
751 return sb_value; in CreateValueFromExpression()
757 lldb::SBValue sb_value; in CreateValueFromAddress() local
[all …]
DSBFrame.cpp654 SBValue sb_value; in GetValueForVariablePath() local
661 sb_value = GetValueForVariablePath (var_path, use_dynamic); in GetValueForVariablePath()
663 return sb_value; in GetValueForVariablePath()
669 SBValue sb_value; in GetValueForVariablePath() local
676 return sb_value; in GetValueForVariablePath()
699 sb_value.SetSP(value_sp, use_dynamic); in GetValueForVariablePath()
713 return sb_value; in GetValueForVariablePath()
737 SBValue sb_value; in FindVariable() local
743 return sb_value; in FindVariable()
782 sb_value.SetSP(value_sp, use_dynamic); in FindVariable()
[all …]
/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/lldb/scripts/Python/
Dpython-wrapper.swig323 lldb::SBValue sb_value (valobj_sp);
365 pvalue = pfunc(sb_value,session_dict);
391 lldb::SBValue *sb_value = new lldb::SBValue(valobj_sp);
392 sb_value->SetPreferSyntheticValue(false);
393 PyObject *ValObj_PyObj = SBTypeToSWIGWrapper(sb_value);
410 retval = pfunc(sb_value, session_dict);
/external/lldb/test/python_api/default-constructor/
DTestDefaultConstructorForAPIObjects.py345 import sb_value
346 sb_value.fuzz_obj(obj)