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.cpp257 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
258 if (variable_sp) { in GetVariables()
260 switch (variable_sp->GetScope()) { in GetVariables()
281 frame_sp->GetValueObjectForFrameVariable(variable_sp, in GetVariables()
312 VariableSP variable_sp(variable_list_sp->GetVariableAtIndex(i)); in GetVariables() local
313 if (variable_sp) { in GetVariables()
315 switch (variable_sp->GetScope()) { in GetVariables()
336 ValueObjectVariable::Create(target_sp.get(), variable_sp)); in GetVariables()
H A DSBFunction.cpp191 lldb::VariableSP variable_sp = arguments.GetVariableAtIndex(arg_idx); in GetArgumentName() local
192 if (!variable_sp) in GetArgumentName()
195 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/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.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()
1147 StackFrame::GetValueObjectForFrameVariable(const VariableSP &variable_sp, in GetValueObjectForFrameVariable() argument
1163 const uint32_t var_idx = var_list->FindIndexForVariable(variable_sp.get()); in GetValueObjectForFrameVariable()
1170 valobj_sp = ValueObjectVariable::Create(this, variable_sp); in GetValueObjectForFrameVariable()
H A DTarget.cpp2724 lldb::ExpressionVariableSP variable_sp; in GetPersistentVariable() local
2726 [name, &variable_sp](TypeSystemSP type_system) -> bool { in GetPersistentVariable()
2732 variable_sp = persistent_state->GetVariable(name); in GetPersistentVariable()
2734 if (variable_sp) in GetPersistentVariable()
2739 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.h444 GetValueObjectForFrameVariable(const lldb::VariableSP &variable_sp,
/freebsd/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()