Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBBlock.cpp247 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
248 if (variable_sp) { in GetVariables()
250 switch (variable_sp->GetScope()) { in GetVariables()
271 frame_sp->GetValueObjectForFrameVariable(variable_sp, in GetVariables()
302 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
303 if (variable_sp) { in GetVariables()
305 switch (variable_sp->GetScope()) { in GetVariables()
326 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()
181 return variable_sp->GetName().GetCString(); in GetArgumentName()
H A DSBFrame.cpp614 VariableSP variable_sp( in FindValue() local
616 if (variable_sp) { in FindValue()
617 value_sp = frame->GetValueObjectForFrameVariable(variable_sp, in FindValue()
817 for (const VariableSP &variable_sp : *variable_list) { in GetVariables()
823 if (variable_sp) { in GetVariables()
825 switch (variable_sp->GetScope()) { in GetVariables()
845 if (variable_set.find(variable_sp) == variable_set.end()) in GetVariables()
846 variable_set.insert(variable_sp); in GetVariables()
850 if (in_scope_only && !variable_sp->IsInScope(frame)) in GetVariables()
854 variable_sp, eNoDynamicValues)); in GetVariables()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp957 for (VariableSP variable_sp : m_variables) { in ResolveSymbolContext() local
958 if (variable_sp->LocationIsValidForAddress(so_addr.GetFileAddress())) { in ResolveSymbolContext()
959 sc.variable = variable_sp.get(); in ResolveSymbolContext()
1092 for (VariableSP variable_sp : m_variables) { in FindGlobalVariables() local
1095 if (variable_sp && variable_sp->GetName() == name) { in FindGlobalVariables()
1096 variables.AddVariable(variable_sp); in FindGlobalVariables()
1108 for (VariableSP variable_sp : m_variables) { in FindGlobalVariables() local
1111 if (variable_sp && regex.Execute(variable_sp->GetName())) { in FindGlobalVariables()
1112 variables.AddVariable(variable_sp); in FindGlobalVariables()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp592 for (const VariableSP &variable_sp : *variable_list) { in GetValueForVariableExpressionPath()
593 if (!variable_sp) in GetValueForVariableExpressionPath()
595 if (!variable_sp->GetName().IsEmpty()) in GetValueForVariableExpressionPath()
598 Type *var_type = variable_sp->GetType(); in GetValueForVariableExpressionPath()
604 valobj_sp = GetValueObjectForFrameVariable(variable_sp, use_dynamic); in GetValueForVariableExpressionPath()
1152 StackFrame::GetValueObjectForFrameVariable(const VariableSP &variable_sp, in GetValueObjectForFrameVariable() argument
1168 const uint32_t var_idx = var_list->FindIndexForVariable(variable_sp.get()); in GetValueObjectForFrameVariable()
1175 valobj_sp = ValueObjectVariable::Create(this, variable_sp); in GetValueObjectForFrameVariable()
H A DTarget.cpp2734 lldb::ExpressionVariableSP variable_sp; in GetPersistentVariable() local
2736 [name, &variable_sp](TypeSystemSP type_system) -> bool { in GetPersistentVariable()
2742 variable_sp = persistent_state->GetVariable(name); in GetPersistentVariable()
2744 if (variable_sp) in GetPersistentVariable()
2749 return variable_sp; in GetPersistentVariable()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DMaterializer.h81 uint32_t AddVariable(lldb::VariableSP &variable_sp, Status &err);
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackFrame.h443 GetValueObjectForFrameVariable(const lldb::VariableSP &variable_sp,
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp807 EntityVariable(lldb::VariableSP &variable_sp) : m_variable_sp(variable_sp) { in EntityVariable() argument
891 uint32_t Materializer::AddVariable(lldb::VariableSP &variable_sp, Status &err) { in AddVariable() argument
893 *iter = std::make_unique<EntityVariable>(variable_sp); in AddVariable()