Lines Matching defs:m_entry_sp
50 explicit MapEntry(ValueObjectSP entry_sp) : m_entry_sp(entry_sp) {}
52 : m_entry_sp(entry ? entry->GetSP() : ValueObjectSP()) {}
55 if (!m_entry_sp)
56 return m_entry_sp;
57 return m_entry_sp->GetSyntheticChildAtOffset(
58 0, m_entry_sp->GetCompilerType(), true);
62 if (!m_entry_sp)
63 return m_entry_sp;
64 return m_entry_sp->GetSyntheticChildAtOffset(
65 m_entry_sp->GetProcessSP()->GetAddressByteSize(),
66 m_entry_sp->GetCompilerType(), true);
70 if (!m_entry_sp)
71 return m_entry_sp;
72 return m_entry_sp->GetSyntheticChildAtOffset(
73 2 * m_entry_sp->GetProcessSP()->GetAddressByteSize(),
74 m_entry_sp->GetCompilerType(), true);
78 if (!m_entry_sp)
80 return m_entry_sp->GetValueAsUnsigned(0);
84 if (!m_entry_sp)
86 return m_entry_sp->GetError().Fail();
91 ValueObjectSP GetEntry() const { return m_entry_sp; }
93 void SetEntry(ValueObjectSP entry) { m_entry_sp = entry; }
96 return (rhs.m_entry_sp.get() == m_entry_sp.get());
100 ValueObjectSP m_entry_sp;