Home
last modified time | relevance | path

Searched refs:variable_sp (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBBlock.cpp212 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
213 if (variable_sp) { in GetVariables()
215 switch (variable_sp->GetScope()) { in GetVariables()
236 frame_sp->GetValueObjectForFrameVariable(variable_sp, in GetVariables()
265 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
266 if (variable_sp) { in GetVariables()
268 switch (variable_sp->GetScope()) { in GetVariables()
289 ValueObjectVariable::Create(target_sp.get(), variable_sp)); in GetVariables()
H A DSBFunction.cpp177 lldb::VariableSP variable_sp = arguments.GetVariableAtIndex(arg_idx); in GetArgumentName() local
178 if (variable_sp) in GetArgumentName()
179 return variable_sp->GetName().GetCString(); in GetArgumentName()
H A DSBFrame.cpp755 VariableSP variable_sp( in FindValue() local
757 if (variable_sp) { in FindValue()
758 value_sp = frame->GetValueObjectForFrameVariable(variable_sp, in FindValue()
989 VariableSP variable_sp(variable_list->GetVariableAtIndex(i)); in GetVariables() local
990 if (variable_sp) { in GetVariables()
992 switch (variable_sp->GetScope()) { in GetVariables()
1012 if (variable_set.find(variable_sp) == variable_set.end()) in GetVariables()
1013 variable_set.insert(variable_sp); in GetVariables()
1017 if (in_scope_only && !variable_sp->IsInScope(frame)) in GetVariables()
1021 variable_sp, eNoDynamicValues)); in GetVariables()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStackFrame.h451 GetValueObjectForFrameVariable(const lldb::VariableSP &variable_sp,
469 lldb::ValueObjectSP TrackGlobalVariable(const lldb::VariableSP &variable_sp,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DStackFrame.cpp571 VariableSP variable_sp = variable_list->GetVariableAtIndex(i); in GetValueForVariableExpressionPath() local
572 if (!variable_sp) in GetValueForVariableExpressionPath()
574 if (!variable_sp->GetName().IsEmpty()) in GetValueForVariableExpressionPath()
577 Type *var_type = variable_sp->GetType(); in GetValueForVariableExpressionPath()
583 valobj_sp = GetValueObjectForFrameVariable(variable_sp, use_dynamic); in GetValueForVariableExpressionPath()
1133 StackFrame::GetValueObjectForFrameVariable(const VariableSP &variable_sp, in GetValueObjectForFrameVariable() argument
1150 valobj_sp = ValueObjectVariable::Create(this, variable_sp); in GetValueObjectForFrameVariable()
1163 ValueObjectSP StackFrame::TrackGlobalVariable(const VariableSP &variable_sp, in TrackGlobalVariable() argument
1171 GetValueObjectForFrameVariable(variable_sp, use_dynamic)); in TrackGlobalVariable()
1180 m_variable_list_sp->AddVariable(variable_sp); in TrackGlobalVariable()
[all …]
H A DTarget.cpp2411 lldb::ExpressionVariableSP variable_sp; in GetPersistentVariable() local
2413 [name, &variable_sp](TypeSystem *type_system) -> bool { in GetPersistentVariable()
2416 variable_sp = persistent_state->GetVariable(name); in GetPersistentVariable()
2418 if (variable_sp) in GetPersistentVariable()
2423 return variable_sp; in GetPersistentVariable()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DMaterializer.h83 uint32_t AddVariable(lldb::VariableSP &variable_sp, Status &err);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DMaterializer.cpp425 EntityVariable(lldb::VariableSP &variable_sp) in EntityVariable() argument
426 : Entity(), m_variable_sp(variable_sp), m_is_reference(false), in EntityVariable()
762 uint32_t Materializer::AddVariable(lldb::VariableSP &variable_sp, Status &err) { in AddVariable() argument
764 iter->reset(new EntityVariable(variable_sp)); in AddVariable()