Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DVariable.cpp325 ValueObjectList &valobj_list) { in GetValuesForVariableExpressionPath() argument
336 valobj_list); in GetValuesForVariableExpressionPath()
341 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
344 valobj_list.GetValueObjectAtIndex(i)->Dereference(tmp_error)); in GetValuesForVariableExpressionPath()
347 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
349 valobj_list.SetValueObjectAtIndex(i, valobj_sp); in GetValuesForVariableExpressionPath()
357 valobj_list); in GetValuesForVariableExpressionPath()
359 for (uint32_t i = 0; i < valobj_list.GetSize();) { in GetValuesForVariableExpressionPath()
362 valobj_list.GetValueObjectAtIndex(i)->AddressOf(tmp_error)); in GetValuesForVariableExpressionPath()
365 valobj_list.RemoveValueObjectAtIndex(i); in GetValuesForVariableExpressionPath()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Core/
H A 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()
H A DIOHandlerCursesGUI.cpp5519 ValueObjectListDelegate(ValueObjectList &valobj_list) : m_rows() { in ValueObjectListDelegate() argument
5520 SetValues(valobj_list); in ValueObjectListDelegate()
5525 void SetValues(ValueObjectList &valobj_list) { in SetValues() argument
5531 for (auto &valobj_sp : valobj_list.GetObjects()) in SetValues()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObjectList.h29 void Append(const ValueObjectList &valobj_list);
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DVariable.h106 ValueObjectList &valobj_list);
/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectWatchpoint.cpp913 ValueObjectList valobj_list; in DoExecute() local
918 variable_list, valobj_list)); in DoExecute()
920 if (valobj_list.GetSize()) in DoExecute()
921 valobj_sp = valobj_list.GetValueObjectAtIndex(0); in DoExecute()
H A DCommandObjectTarget.cpp839 ValueObjectList valobj_list; in DoExecute() local
857 GetVariableCallback, target, variable_list, valobj_list)); in DoExecute()
870 valobj_list.GetValueObjectAtIndex(global_idx)); in DoExecute()