Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DVariable.cpp329 ValueObjectList &valobj_list) { in GetValuesForVariableExpressionPath() argument
340 valobj_list); in GetValuesForVariableExpressionPath()
345 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
348 valobj_list.GetValueObjectAtIndex(i)->Dereference(tmp_error)); in GetValuesForVariableExpressionPath()
351 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
353 valobj_list.SetValueObjectAtIndex(i, valobj_sp); in GetValuesForVariableExpressionPath()
361 valobj_list); in GetValuesForVariableExpressionPath()
363 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
366 valobj_list.GetValueObjectAtIndex(i)->AddressOf(tmp_error)); in GetValuesForVariableExpressionPath()
369 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
[all …]
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectList.cpp23 void ValueObjectList::Append(const ValueObjectList &valobj_list) { in Append() argument
24 std::copy(valobj_list.m_value_objects.begin(), // source begin in Append()
25 valobj_list.m_value_objects.end(), // source end in Append()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectList.h27 void Append(const ValueObjectList &valobj_list);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DVariable.h109 ValueObjectList &valobj_list);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp850 ValueObjectList valobj_list; in DoExecute() local
855 &target, variable_list, valobj_list)); in DoExecute()
857 if (valobj_list.GetSize()) in DoExecute()
858 valobj_sp = valobj_list.GetValueObjectAtIndex(0); in DoExecute()
H A DCommandObjectTarget.cpp842 ValueObjectList valobj_list; in DoExecute() local
860 GetVariableCallback, target, variable_list, valobj_list)); in DoExecute()
873 valobj_list.GetValueObjectAtIndex(global_idx)); in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp5541 ValueObjectListDelegate(ValueObjectList &valobj_list) : m_rows() { in ValueObjectListDelegate() argument
5542 SetValues(valobj_list); in ValueObjectListDelegate()
5547 void SetValues(ValueObjectList &valobj_list) { in SetValues() argument
5553 for (auto &valobj_sp : valobj_list.GetObjects()) in SetValues()