Home
last modified time | relevance | path

Searched refs:m_variable_sp (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/Core/
DValueObjectVariable.cpp46 m_variable_sp(var_sp) in ValueObjectVariable()
49 assert (m_variable_sp.get() != NULL); in ValueObjectVariable()
60 Type *var_type = m_variable_sp->GetType(); in GetClangTypeImpl()
69 Type * var_type = m_variable_sp->GetType(); in GetTypeName()
78 Type * var_type = m_variable_sp->GetType(); in GetQualifiedTypeName()
110 if (m_variable_sp) in GetValueType()
111 return m_variable_sp->GetScope(); in GetValueType()
121 Variable *variable = m_variable_sp.get(); in UpdateValue()
265 return m_variable_sp->IsInScope (frame); in IsInScope()
284 if (m_variable_sp) in GetModule()
[all …]
/external/lldb/source/Expression/
DMaterializer.cpp410 m_variable_sp(variable_sp), in EntityVariable()
418 m_is_reference = m_variable_sp->GetType()->GetClangForwardType().IsReferenceType(); in EntityVariable()
430 m_variable_sp->GetName().AsCString()); in Materialize()
438 lldb::ValueObjectSP valobj_sp = ValueObjectVariable::Create(scope, m_variable_sp); in Materialize()
442 …tErrorStringWithFormat("couldn't get a value object for variable %s", m_variable_sp->GetName().AsC… in Materialize()
458 …"couldn't write the contents of reference variable %s to memory: %s", m_variable_sp->GetName().AsC… in Materialize()
478 …WithFormat("couldn't write the address of variable %s to memory: %s", m_variable_sp->GetName().AsC… in Materialize()
489 …thFormat("trying to create a temporary region for %s but one exists", m_variable_sp->GetName().AsC… in Materialize()
493 if (data.GetByteSize() != m_variable_sp->GetType()->GetByteSize()) in Materialize()
495 … if (data.GetByteSize() == 0 && m_variable_sp->LocationExpression().IsValid() == false) in Materialize()
[all …]
/external/lldb/include/lldb/Core/
DValueObjectVariable.h77 lldb::VariableSP m_variable_sp; ///< The variable that this value object is based upon variable