Lines Matching refs:SBBlock

28 SBBlock::SBBlock() { LLDB_INSTRUMENT_VA(this); }  in SBBlock()  function in SBBlock
30 SBBlock::SBBlock(lldb_private::Block *lldb_object_ptr) in SBBlock() function in SBBlock
33 SBBlock::SBBlock(const SBBlock &rhs) : m_opaque_ptr(rhs.m_opaque_ptr) { in SBBlock() function in SBBlock
37 const SBBlock &SBBlock::operator=(const SBBlock &rhs) { in operator =()
44 SBBlock::~SBBlock() { m_opaque_ptr = nullptr; } in ~SBBlock()
46 bool SBBlock::IsValid() const { in IsValid()
50 SBBlock::operator bool() const { in operator bool()
56 bool SBBlock::IsInlined() const { in IsInlined()
64 const char *SBBlock::GetInlinedName() const { in GetInlinedName()
77 SBFileSpec SBBlock::GetInlinedCallSiteFile() const { in GetInlinedCallSiteFile()
90 uint32_t SBBlock::GetInlinedCallSiteLine() const { in GetInlinedCallSiteLine()
102 uint32_t SBBlock::GetInlinedCallSiteColumn() const { in GetInlinedCallSiteColumn()
114 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables()
123 SBBlock SBBlock::GetParent() { in GetParent()
126 SBBlock sb_block; in GetParent()
132 lldb::SBBlock SBBlock::GetContainingInlinedBlock() { in GetContainingInlinedBlock()
135 SBBlock sb_block; in GetContainingInlinedBlock()
141 SBBlock SBBlock::GetSibling() { in GetSibling()
144 SBBlock sb_block; in GetSibling()
150 SBBlock SBBlock::GetFirstChild() { in GetFirstChild()
153 SBBlock sb_block; in GetFirstChild()
159 lldb_private::Block *SBBlock::GetPtr() { return m_opaque_ptr; } in GetPtr()
161 void SBBlock::SetPtr(lldb_private::Block *block) { m_opaque_ptr = block; } in SetPtr()
163 bool SBBlock::GetDescription(SBStream &description) { in GetDescription()
187 uint32_t SBBlock::GetNumRanges() { in GetNumRanges()
195 lldb::SBAddress SBBlock::GetRangeStartAddress(uint32_t idx) { in GetRangeStartAddress()
208 lldb::SBAddress SBBlock::GetRangeEndAddress(uint32_t idx) { in GetRangeEndAddress()
222 uint32_t SBBlock::GetRangeIndexForBlockAddress(lldb::SBAddress block_addr) { in GetRangeIndexForBlockAddress()
232 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, in GetVariables()
286 lldb::SBValueList SBBlock::GetVariables(lldb::SBTarget &target, bool arguments, in GetVariables()