Home
last modified time | relevance | path

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

/external/lldb/source/Target/
DStackFrame.cpp635 ValueObjectSP child_valobj_sp; in GetValueForVariableExpressionPath() local
700 child_valobj_sp = valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath()
701 if (!child_valobj_sp) in GetValueForVariableExpressionPath()
705 child_valobj_sp = valobj_sp->GetSyntheticValue(); in GetValueForVariableExpressionPath()
706 if (child_valobj_sp) in GetValueForVariableExpressionPath()
707child_valobj_sp = child_valobj_sp->GetChildMemberWithName (child_name, true); in GetValueForVariableExpressionPath()
710 if (no_synth_child || !child_valobj_sp) in GetValueForVariableExpressionPath()
746 … ValueObjectSP dynamic_value_sp(child_valobj_sp->GetDynamicValue(use_dynamic)); in GetValueForVariableExpressionPath()
748 child_valobj_sp = dynamic_value_sp; in GetValueForVariableExpressionPath()
840child_valobj_sp = synthetic->GetChildAtIndex(child_index, true); in GetValueForVariableExpressionPath()
[all …]
/external/lldb/source/Core/
DValueObject.cpp2656 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() local
2658 if (child_valobj_sp.get()) // we know we are done, so just return in GetValueForExpressionPath_Impl()
2663 return child_valobj_sp; in GetValueForExpressionPath_Impl()
2675 child_valobj_sp = root->GetSyntheticValue(); in GetValueForExpressionPath_Impl()
2676 if (child_valobj_sp.get()) in GetValueForExpressionPath_Impl()
2677child_valobj_sp = child_valobj_sp->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl()
2682 if(child_valobj_sp.get()) // if it worked, just return in GetValueForExpressionPath_Impl()
2687 return child_valobj_sp; in GetValueForExpressionPath_Impl()
2700 ValueObjectSP child_valobj_sp = root->GetChildMemberWithName(child_name, true); in GetValueForExpressionPath_Impl() local
2701 if (child_valobj_sp.get()) // store the new root and move on in GetValueForExpressionPath_Impl()
[all …]