Lines Matching refs:m_opaque_ptr
32 : m_opaque_ptr(lldb_object_ptr) {} in SBBlock()
34 SBBlock::SBBlock(const SBBlock &rhs) : m_opaque_ptr(rhs.m_opaque_ptr) { in SBBlock()
41 m_opaque_ptr = rhs.m_opaque_ptr; in operator =()
45 SBBlock::~SBBlock() { m_opaque_ptr = nullptr; } in ~SBBlock()
54 return m_opaque_ptr != nullptr; in operator bool()
60 if (m_opaque_ptr) in IsInlined()
61 return m_opaque_ptr->GetInlinedFunctionInfo() != nullptr; in IsInlined()
68 if (m_opaque_ptr) { in GetInlinedName()
70 m_opaque_ptr->GetInlinedFunctionInfo(); in GetInlinedName()
82 if (m_opaque_ptr) { in GetInlinedCallSiteFile()
84 m_opaque_ptr->GetInlinedFunctionInfo(); in GetInlinedCallSiteFile()
94 if (m_opaque_ptr) { in GetInlinedCallSiteLine()
96 m_opaque_ptr->GetInlinedFunctionInfo(); in GetInlinedCallSiteLine()
106 if (m_opaque_ptr) { in GetInlinedCallSiteColumn()
108 m_opaque_ptr->GetInlinedFunctionInfo(); in GetInlinedCallSiteColumn()
119 m_opaque_ptr->AppendVariables(can_create, get_parent_variables, show_inline, in AppendVariables()
128 if (m_opaque_ptr) in GetParent()
129 sb_block.m_opaque_ptr = m_opaque_ptr->GetParent(); in GetParent()
137 if (m_opaque_ptr) in GetContainingInlinedBlock()
138 sb_block.m_opaque_ptr = m_opaque_ptr->GetContainingInlinedBlock(); in GetContainingInlinedBlock()
146 if (m_opaque_ptr) in GetSibling()
147 sb_block.m_opaque_ptr = m_opaque_ptr->GetSibling(); in GetSibling()
155 if (m_opaque_ptr) in GetFirstChild()
156 sb_block.m_opaque_ptr = m_opaque_ptr->GetFirstChild(); in GetFirstChild()
160 lldb_private::Block *SBBlock::GetPtr() { return m_opaque_ptr; } in GetPtr()
162 void SBBlock::SetPtr(lldb_private::Block *block) { m_opaque_ptr = block; } in SetPtr()
169 if (m_opaque_ptr) { in GetDescription()
170 lldb::user_id_t id = m_opaque_ptr->GetID(); in GetDescription()
176 m_opaque_ptr->CalculateSymbolContext(&sc); in GetDescription()
178 m_opaque_ptr->DumpAddressRanges( in GetDescription()
191 if (m_opaque_ptr) in GetNumRanges()
192 return m_opaque_ptr->GetNumRanges(); in GetNumRanges()
200 if (m_opaque_ptr) { in GetRangeStartAddress()
202 if (m_opaque_ptr->GetRangeAtIndex(idx, range)) { in GetRangeStartAddress()
213 if (m_opaque_ptr) { in GetRangeEndAddress()
215 if (m_opaque_ptr->GetRangeAtIndex(idx, range)) { in GetRangeEndAddress()
227 if (m_opaque_ptr) in GetRanges()
228 sb_ranges.m_opaque_up->ref() = m_opaque_ptr->GetRanges(); in GetRanges()
235 if (m_opaque_ptr && block_addr.IsValid()) { in GetRangeIndexForBlockAddress()
236 return m_opaque_ptr->GetRangeIndexContainingAddress(block_addr.ref()); in GetRangeIndexForBlockAddress()