Lines Matching refs:SBBlock
28 SBBlock::SBBlock() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBBlock); } 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
34 LLDB_RECORD_CONSTRUCTOR(SBBlock, (const lldb::SBBlock &), rhs); in SBBlock()
37 const SBBlock &SBBlock::operator=(const SBBlock &rhs) { in operator =()
38 LLDB_RECORD_METHOD(const lldb::SBBlock &, in operator =()
39 SBBlock, operator=,(const lldb::SBBlock &), rhs); in operator =()
45 SBBlock::~SBBlock() { m_opaque_ptr = nullptr; } in ~SBBlock()
47 bool SBBlock::IsValid() const { in IsValid()
48 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBlock, IsValid); in IsValid()
51 SBBlock::operator bool() const { in operator bool()
52 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBlock, operator bool); in operator bool()
57 bool SBBlock::IsInlined() const { in IsInlined()
58 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBBlock, IsInlined); in IsInlined()
65 const char *SBBlock::GetInlinedName() const { in GetInlinedName()
66 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBBlock, GetInlinedName); in GetInlinedName()
78 SBFileSpec SBBlock::GetInlinedCallSiteFile() const { in GetInlinedCallSiteFile()
79 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFileSpec, SBBlock, in GetInlinedCallSiteFile()
92 uint32_t SBBlock::GetInlinedCallSiteLine() const { in GetInlinedCallSiteLine()
93 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBBlock, GetInlinedCallSiteLine); in GetInlinedCallSiteLine()
104 uint32_t SBBlock::GetInlinedCallSiteColumn() const { in GetInlinedCallSiteColumn()
105 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBBlock, GetInlinedCallSiteColumn); in GetInlinedCallSiteColumn()
116 void SBBlock::AppendVariables(bool can_create, bool get_parent_variables, in AppendVariables()
125 SBBlock SBBlock::GetParent() { in GetParent()
126 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBBlock, GetParent); in GetParent()
128 SBBlock sb_block; in GetParent()
134 lldb::SBBlock SBBlock::GetContainingInlinedBlock() { in GetContainingInlinedBlock()
135 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBBlock, GetContainingInlinedBlock); in GetContainingInlinedBlock()
137 SBBlock sb_block; in GetContainingInlinedBlock()
143 SBBlock SBBlock::GetSibling() { in GetSibling()
144 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBBlock, GetSibling); in GetSibling()
146 SBBlock sb_block; in GetSibling()
152 SBBlock SBBlock::GetFirstChild() { in GetFirstChild()
153 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBBlock, GetFirstChild); in GetFirstChild()
155 SBBlock sb_block; in GetFirstChild()
161 lldb_private::Block *SBBlock::GetPtr() { return m_opaque_ptr; } in GetPtr()
163 void SBBlock::SetPtr(lldb_private::Block *block) { m_opaque_ptr = block; } in SetPtr()
165 bool SBBlock::GetDescription(SBStream &description) { in GetDescription()
166 LLDB_RECORD_METHOD(bool, SBBlock, GetDescription, (lldb::SBStream &), in GetDescription()
190 uint32_t SBBlock::GetNumRanges() { in GetNumRanges()
191 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBBlock, GetNumRanges); in GetNumRanges()
198 lldb::SBAddress SBBlock::GetRangeStartAddress(uint32_t idx) { in GetRangeStartAddress()
199 LLDB_RECORD_METHOD(lldb::SBAddress, SBBlock, GetRangeStartAddress, (uint32_t), in GetRangeStartAddress()
212 lldb::SBAddress SBBlock::GetRangeEndAddress(uint32_t idx) { in GetRangeEndAddress()
213 LLDB_RECORD_METHOD(lldb::SBAddress, SBBlock, GetRangeEndAddress, (uint32_t), in GetRangeEndAddress()
227 uint32_t SBBlock::GetRangeIndexForBlockAddress(lldb::SBAddress block_addr) { in GetRangeIndexForBlockAddress()
228 LLDB_RECORD_METHOD(uint32_t, SBBlock, GetRangeIndexForBlockAddress, in GetRangeIndexForBlockAddress()
238 lldb::SBValueList SBBlock::GetVariables(lldb::SBFrame &frame, bool arguments, in GetVariables()
242 lldb::SBValueList, SBBlock, GetVariables, in GetVariables()
295 lldb::SBValueList SBBlock::GetVariables(lldb::SBTarget &target, bool arguments, in GetVariables()
297 LLDB_RECORD_METHOD(lldb::SBValueList, SBBlock, GetVariables, in GetVariables()
351 void RegisterMethods<SBBlock>(Registry &R) { in RegisterMethods()
352 LLDB_REGISTER_CONSTRUCTOR(SBBlock, ()); in RegisterMethods()
353 LLDB_REGISTER_CONSTRUCTOR(SBBlock, (const lldb::SBBlock &)); in RegisterMethods()
354 LLDB_REGISTER_METHOD(const lldb::SBBlock &, in RegisterMethods()
355 SBBlock, operator=,(const lldb::SBBlock &)); in RegisterMethods()
356 LLDB_REGISTER_METHOD_CONST(bool, SBBlock, IsValid, ()); in RegisterMethods()
357 LLDB_REGISTER_METHOD_CONST(bool, SBBlock, operator bool, ()); in RegisterMethods()
358 LLDB_REGISTER_METHOD_CONST(bool, SBBlock, IsInlined, ()); in RegisterMethods()
359 LLDB_REGISTER_METHOD_CONST(const char *, SBBlock, GetInlinedName, ()); in RegisterMethods()
360 LLDB_REGISTER_METHOD_CONST(lldb::SBFileSpec, SBBlock, in RegisterMethods()
362 LLDB_REGISTER_METHOD_CONST(uint32_t, SBBlock, GetInlinedCallSiteLine, ()); in RegisterMethods()
363 LLDB_REGISTER_METHOD_CONST(uint32_t, SBBlock, GetInlinedCallSiteColumn, ()); in RegisterMethods()
364 LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetParent, ()); in RegisterMethods()
365 LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetContainingInlinedBlock, ()); in RegisterMethods()
366 LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetSibling, ()); in RegisterMethods()
367 LLDB_REGISTER_METHOD(lldb::SBBlock, SBBlock, GetFirstChild, ()); in RegisterMethods()
368 LLDB_REGISTER_METHOD(bool, SBBlock, GetDescription, (lldb::SBStream &)); in RegisterMethods()
369 LLDB_REGISTER_METHOD(uint32_t, SBBlock, GetNumRanges, ()); in RegisterMethods()
370 LLDB_REGISTER_METHOD(lldb::SBAddress, SBBlock, GetRangeStartAddress, in RegisterMethods()
372 LLDB_REGISTER_METHOD(lldb::SBAddress, SBBlock, GetRangeEndAddress, in RegisterMethods()
374 LLDB_REGISTER_METHOD(uint32_t, SBBlock, GetRangeIndexForBlockAddress, in RegisterMethods()
377 lldb::SBValueList, SBBlock, GetVariables, in RegisterMethods()
379 LLDB_REGISTER_METHOD(lldb::SBValueList, SBBlock, GetVariables, in RegisterMethods()