Home
last modified time | relevance | path

Searched refs:child_valobj_sp (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp627 ValueObjectSP child_valobj_sp; in GetValueForVariableExpressionPath() local
708 child_valobj_sp = valobj_sp->GetChildMemberWithName(child_name); in GetValueForVariableExpressionPath()
709 if (!child_valobj_sp) { in GetValueForVariableExpressionPath()
711 child_valobj_sp = valobj_sp->GetSyntheticValue(); in GetValueForVariableExpressionPath()
712 if (child_valobj_sp) in GetValueForVariableExpressionPath()
713 child_valobj_sp = in GetValueForVariableExpressionPath()
714 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForVariableExpressionPath()
717 if (no_synth_child || !child_valobj_sp) { in GetValueForVariableExpressionPath()
750 child_valobj_sp->GetDynamicValue(use_dynamic)); in GetValueForVariableExpressionPath()
752 child_valobj_sp = dynamic_value_sp; in GetValueForVariableExpressionPath()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp2304 ValueObjectSP child_valobj_sp = in GetValueForExpressionPath_Impl() local
2307 if (child_valobj_sp.get()) // we know we are done, so just return in GetValueForExpressionPath_Impl()
2312 return child_valobj_sp; in GetValueForExpressionPath_Impl()
2321 child_valobj_sp = root->GetNonSyntheticValue(); in GetValueForExpressionPath_Impl()
2322 if (child_valobj_sp.get()) in GetValueForExpressionPath_Impl()
2323 child_valobj_sp = in GetValueForExpressionPath_Impl()
2324 child_valobj_sp->GetChildMemberWithName(child_name); in GetValueForExpressionPath_Impl()
2330 child_valobj_sp = root->GetSyntheticValue(); in GetValueForExpressionPath_Impl()
2331 if (child_valobj_sp.get()) in GetValueForExpressionPath_Impl()
2332 child_valobj_sp = in GetValueForExpressionPath_Impl()
[all …]