Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp256 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
257 if (variable_sp) { in GetVariables()
259 switch (variable_sp->GetScope()) { in GetVariables()
280 frame_sp->GetValueObjectForFrameVariable(variable_sp, in GetVariables()
311 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
312 if (variable_sp) { in GetVariables()
314 switch (variable_sp->GetScope()) { in GetVariables()
335 ValueObjectVariable::Create(target_sp.get(), variable_sp)); in GetVariables()
H A DSBFunction.cpp190 lldb::VariableSP variable_sp = arguments.GetVariableAtIndex(arg_idx); in GetArgumentName() local
191 if (!variable_sp) in GetArgumentName()
194 return variable_sp->GetName().GetCString(); in GetArgumentName()
H A DSBFrame.cpp615 VariableSP variable_sp( in FindValue() local
617 if (variable_sp) { in FindValue()
618 value_sp = frame->GetValueObjectForFrameVariable(variable_sp, in FindValue()
818 for (const VariableSP &variable_sp : *variable_list) { in GetVariables()
824 if (variable_sp) { in GetVariables()
826 switch (variable_sp->GetScope()) { in GetVariables()
846 if (variable_set.find(variable_sp) == variable_set.end()) in GetVariables()
847 variable_set.insert(variable_sp); in GetVariables()
851 if (in_scope_only && !variable_sp->IsInScope(frame)) in GetVariables()
855 variable_sp, eNoDynamicValues)); in GetVariables()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp959 for (VariableSP variable_sp : m_variables) { in ResolveSymbolContext() local
960 if (variable_sp->LocationIsValidForAddress(so_addr.GetFileAddress())) { in ResolveSymbolContext()
961 sc.variable = variable_sp.get(); in ResolveSymbolContext()
1094 for (VariableSP variable_sp : m_variables) { in FindGlobalVariables() local
1097 if (variable_sp && variable_sp->GetName() == name) { in FindGlobalVariables()
1098 variables.AddVariable(variable_sp); in FindGlobalVariables()
1110 for (VariableSP variable_sp : m_variables) { in FindGlobalVariables() local
1113 if (variable_sp && regex.Execute(variable_sp->GetName())) { in FindGlobalVariables()
1114 variables.AddVariable(variable_sp); in FindGlobalVariables()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp653 for (const VariableSP &variable_sp : *variable_list) { in LegacyGetValueForVariableExpressionPath()
654 if (!variable_sp) in LegacyGetValueForVariableExpressionPath()
656 if (!variable_sp->GetName().IsEmpty()) in LegacyGetValueForVariableExpressionPath()
659 Type *var_type = variable_sp->GetType(); in LegacyGetValueForVariableExpressionPath()
665 valobj_sp = GetValueObjectForFrameVariable(variable_sp, use_dynamic); in LegacyGetValueForVariableExpressionPath()
1212 StackFrame::GetValueObjectForFrameVariable(const VariableSP &variable_sp, in GetValueObjectForFrameVariable() argument
1228 const uint32_t var_idx = var_list->FindIndexForVariable(variable_sp.get()); in GetValueObjectForFrameVariable()
1235 valobj_sp = ValueObjectVariable::Create(this, variable_sp); in GetValueObjectForFrameVariable()
H A DTarget.cpp2901 lldb::ExpressionVariableSP variable_sp; in GetPersistentVariable() local
2903 [name, &variable_sp](TypeSystemSP type_system) -> bool { in GetPersistentVariable()
2909 variable_sp = persistent_state->GetVariable(name); in GetPersistentVariable()
2911 if (variable_sp) in GetPersistentVariable()
2916 return variable_sp; in GetPersistentVariable()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h81 uint32_t AddVariable(lldb::VariableSP &variable_sp, Status &err);
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrame.h463 GetValueObjectForFrameVariable(const lldb::VariableSP &variable_sp,
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp815 EntityVariable(lldb::VariableSP &variable_sp) : m_variable_sp(variable_sp) { in EntityVariable() argument
899 uint32_t Materializer::AddVariable(lldb::VariableSP &variable_sp, Status &err) { in AddVariable() argument
901 *iter = std::make_unique<EntityVariable>(variable_sp); in AddVariable()