Lines Matching refs:m_variable_sp
410 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()
497 …("the variable '%s' has no location, it may have been optimized out", m_variable_sp->GetName().AsC… in Materialize()
501 …thFormat("size of variable %s disagrees with the ValueObject's size", m_variable_sp->GetName().AsC… in Materialize()
506 size_t bit_align = m_variable_sp->GetType()->GetClangLayoutType().GetTypeBitAlign(); in Materialize()
516 …orStringWithFormat("couldn't allocate a temporary region for %s: %s", m_variable_sp->GetName().AsC… in Materialize()
526 …StringWithFormat("couldn't write to the temporary region for %s: %s", m_variable_sp->GetName().AsC… in Materialize()
536 …rmat("couldn't write the address of the temporary region for %s: %s", m_variable_sp->GetName().AsC… in Materialize()
556 m_variable_sp->GetName().AsCString()); in Dematerialize()
566 lldb::ValueObjectSP valobj_sp = ValueObjectVariable::Create(scope, m_variable_sp); in Dematerialize()
570 …tErrorStringWithFormat("couldn't get a value object for variable %s", m_variable_sp->GetName().AsC… in Dematerialize()
582 …err.SetErrorStringWithFormat("couldn't get the data for variable %s", m_variable_sp->GetName().AsC… in Dematerialize()
592 …ormat("couldn't write the new contents of %s back into the variable", m_variable_sp->GetName().AsC… in Dematerialize()
602 …rrorStringWithFormat("couldn't free the temporary region for %s: %s", m_variable_sp->GetName().AsC… in Dematerialize()
697 lldb::VariableSP m_variable_sp; member in EntityVariable