Home
last modified time | relevance | path

Searched refs:valobj_list (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Symbol/
DVariable.cpp333 ValueObjectList &valobj_list) { in GetValuesForVariableExpressionPath() argument
344 valobj_list); in GetValuesForVariableExpressionPath()
349 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
352 valobj_list.GetValueObjectAtIndex(i)->Dereference(tmp_error)); in GetValuesForVariableExpressionPath()
355 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
357 valobj_list.SetValueObjectAtIndex(i, valobj_sp); in GetValuesForVariableExpressionPath()
365 valobj_list); in GetValuesForVariableExpressionPath()
367 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
370 valobj_list.GetValueObjectAtIndex(i)->AddressOf(tmp_error)); in GetValuesForVariableExpressionPath()
373 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
[all …]
/external/llvm-project/lldb/source/Core/
DValueObjectList.cpp29 void ValueObjectList::Append(const ValueObjectList &valobj_list) { in Append() argument
30 std::copy(valobj_list.m_value_objects.begin(), // source begin in Append()
31 valobj_list.m_value_objects.end(), // source end in Append()
DIOHandlerCursesGUI.cpp2228 ValueObjectListDelegate(ValueObjectList &valobj_list) in ValueObjectListDelegate() argument
2231 SetValues(valobj_list); in ValueObjectListDelegate()
2236 void SetValues(ValueObjectList &valobj_list) { in SetValues() argument
2242 for (auto &valobj_sp : valobj_list.GetObjects()) in SetValues()
/external/llvm-project/lldb/include/lldb/Core/
DValueObjectList.h29 void Append(const ValueObjectList &valobj_list);
/external/llvm-project/lldb/include/lldb/Symbol/
DVariable.h102 ValueObjectList &valobj_list);
/external/llvm-project/lldb/source/Commands/
DCommandObjectWatchpoint.cpp938 ValueObjectList valobj_list; in DoExecute() local
943 variable_list, valobj_list)); in DoExecute()
945 if (valobj_list.GetSize()) in DoExecute()
946 valobj_sp = valobj_list.GetValueObjectAtIndex(0); in DoExecute()
DCommandObjectTarget.cpp851 ValueObjectList valobj_list; in DoExecute() local
871 GetVariableCallback, target, variable_list, valobj_list)); in DoExecute()
885 valobj_list.GetValueObjectAtIndex(global_idx)); in DoExecute()