Lines Matching refs:SBBlock
29 SBBlock::SBBlock() { LLDB_INSTRUMENT_VA(this); } 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
38 const SBBlock &SBBlock::operator=(const SBBlock &rhs) { in operator =()
45 SBBlock::~SBBlock() { m_opaque_ptr = nullptr; } in ~SBBlock()
47 bool SBBlock::IsValid() const { in IsValid()
51 SBBlock::operator bool() const { in operator bool()
57 bool SBBlock::IsInlined() const { in IsInlined()
65 const char *SBBlock::GetInlinedName() const { in GetInlinedName()
78 SBFileSpec SBBlock::GetInlinedCallSiteFile() const { in GetInlinedCallSiteFile()
91 uint32_t SBBlock::GetInlinedCallSiteLine() const { in GetInlinedCallSiteLine()
103 uint32_t SBBlock::GetInlinedCallSiteColumn() const { in GetInlinedCallSiteColumn()
115 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables()
124 SBBlock SBBlock::GetParent() { in GetParent()
127 SBBlock sb_block; in GetParent()
133 lldb::SBBlock SBBlock::GetContainingInlinedBlock() { in GetContainingInlinedBlock()
136 SBBlock sb_block; in GetContainingInlinedBlock()
142 SBBlock SBBlock::GetSibling() { in GetSibling()
145 SBBlock sb_block; in GetSibling()
151 SBBlock SBBlock::GetFirstChild() { in GetFirstChild()
154 SBBlock sb_block; 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()
164 bool SBBlock::GetDescription(SBStream &description) { in GetDescription()
188 uint32_t SBBlock::GetNumRanges() { in GetNumRanges()
196 lldb::SBAddress SBBlock::GetRangeStartAddress(uint32_t idx) { in GetRangeStartAddress()
209 lldb::SBAddress SBBlock::GetRangeEndAddress(uint32_t idx) { in GetRangeEndAddress()
223 lldb::SBAddressRangeList SBBlock::GetRanges() { in GetRanges()
232 uint32_t SBBlock::GetRangeIndexForBlockAddress(lldb::SBAddress block_addr) { in GetRangeIndexForBlockAddress()
242 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, in GetVariables()
296 lldb::SBValueList SBBlock::GetVariables(lldb::SBTarget &target, bool arguments, in GetVariables()