Lines Matching refs:SBBlock

29 SBBlock::SBBlock() : m_opaque_ptr(NULL) {}  in SBBlock()  function in SBBlock
31 SBBlock::SBBlock(lldb_private::Block *lldb_object_ptr) in SBBlock() function in SBBlock
34 SBBlock::SBBlock(const SBBlock &rhs) : m_opaque_ptr(rhs.m_opaque_ptr) {} in SBBlock() function in SBBlock
36 const SBBlock &SBBlock::operator=(const SBBlock &rhs) { in operator =()
41 SBBlock::~SBBlock() { m_opaque_ptr = NULL; } in ~SBBlock()
43 bool SBBlock::IsValid() const { return m_opaque_ptr != NULL; } in IsValid()
45 bool SBBlock::IsInlined() const { in IsInlined()
51 const char *SBBlock::GetInlinedName() const { in GetInlinedName()
68 SBFileSpec SBBlock::GetInlinedCallSiteFile() const { in GetInlinedCallSiteFile()
79 uint32_t SBBlock::GetInlinedCallSiteLine() const { in GetInlinedCallSiteLine()
89 uint32_t SBBlock::GetInlinedCallSiteColumn() const { in GetInlinedCallSiteColumn()
99 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables()
108 SBBlock SBBlock::GetParent() { in GetParent()
109 SBBlock sb_block; in GetParent()
115 lldb::SBBlock SBBlock::GetContainingInlinedBlock() { in GetContainingInlinedBlock()
116 SBBlock sb_block; in GetContainingInlinedBlock()
122 SBBlock SBBlock::GetSibling() { in GetSibling()
123 SBBlock sb_block; in GetSibling()
129 SBBlock SBBlock::GetFirstChild() { in GetFirstChild()
130 SBBlock sb_block; in GetFirstChild()
136 lldb_private::Block *SBBlock::GetPtr() { return m_opaque_ptr; } in GetPtr()
138 void SBBlock::SetPtr(lldb_private::Block *block) { m_opaque_ptr = block; } in SetPtr()
140 bool SBBlock::GetDescription(SBStream &description) { in GetDescription()
162 uint32_t SBBlock::GetNumRanges() { in GetNumRanges()
168 lldb::SBAddress SBBlock::GetRangeStartAddress(uint32_t idx) { in GetRangeStartAddress()
179 lldb::SBAddress SBBlock::GetRangeEndAddress(uint32_t idx) { in GetRangeEndAddress()
191 uint32_t SBBlock::GetRangeIndexForBlockAddress(lldb::SBAddress block_addr) { in GetRangeIndexForBlockAddress()
199 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, in GetVariables()
251 lldb::SBValueList SBBlock::GetVariables(lldb::SBTarget &target, bool arguments, in GetVariables()