Lines Matching refs:SBAddress
24 SBAddress::SBAddress() : m_opaque_up(new Address()) { in SBAddress() function in SBAddress
25 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBAddress); in SBAddress()
28 SBAddress::SBAddress(const Address &address) in SBAddress() function in SBAddress
31 SBAddress::SBAddress(const SBAddress &rhs) : m_opaque_up(new Address()) { in SBAddress() function in SBAddress
32 LLDB_RECORD_CONSTRUCTOR(SBAddress, (const lldb::SBAddress &), rhs); in SBAddress()
37 SBAddress::SBAddress(lldb::SBSection section, lldb::addr_t offset) in SBAddress() function in SBAddress
39 LLDB_RECORD_CONSTRUCTOR(SBAddress, (lldb::SBSection, lldb::addr_t), section, in SBAddress()
44 SBAddress::SBAddress(lldb::addr_t load_addr, lldb::SBTarget &target) in SBAddress() function in SBAddress
46 LLDB_RECORD_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &), in SBAddress()
52 SBAddress::~SBAddress() = default;
54 const SBAddress &SBAddress::operator=(const SBAddress &rhs) { in operator =()
55 LLDB_RECORD_METHOD(const lldb::SBAddress &, in operator =()
56 SBAddress, operator=,(const lldb::SBAddress &), rhs); in operator =()
63 bool lldb::operator==(const SBAddress &lhs, const SBAddress &rhs) { in operator ==()
69 bool SBAddress::operator!=(const SBAddress &rhs) const { in operator !=()
70 LLDB_RECORD_METHOD_CONST(bool, SBAddress, operator!=,(const SBAddress &), in operator !=()
76 bool SBAddress::IsValid() const { in IsValid()
77 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBAddress, IsValid); in IsValid()
80 SBAddress::operator bool() const { in operator bool()
81 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBAddress, operator bool); in operator bool()
86 void SBAddress::Clear() { in Clear()
87 LLDB_RECORD_METHOD_NO_ARGS(void, SBAddress, Clear); in Clear()
92 void SBAddress::SetAddress(lldb::SBSection section, lldb::addr_t offset) { in SetAddress()
93 LLDB_RECORD_METHOD(void, SBAddress, SetAddress, in SetAddress()
101 void SBAddress::SetAddress(const Address &address) { ref() = address; } in SetAddress()
103 lldb::addr_t SBAddress::GetFileAddress() const { in GetFileAddress()
104 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::addr_t, SBAddress, GetFileAddress); in GetFileAddress()
112 lldb::addr_t SBAddress::GetLoadAddress(const SBTarget &target) const { in GetLoadAddress()
113 LLDB_RECORD_METHOD_CONST(lldb::addr_t, SBAddress, GetLoadAddress, in GetLoadAddress()
128 void SBAddress::SetLoadAddress(lldb::addr_t load_addr, lldb::SBTarget &target) { in SetLoadAddress()
129 LLDB_RECORD_METHOD(void, SBAddress, SetLoadAddress, in SetLoadAddress()
146 bool SBAddress::OffsetAddress(addr_t offset) { in OffsetAddress()
147 LLDB_RECORD_METHOD(bool, SBAddress, OffsetAddress, (lldb::addr_t), offset); in OffsetAddress()
159 lldb::SBSection SBAddress::GetSection() { in GetSection()
160 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSection, SBAddress, GetSection); in GetSection()
168 lldb::addr_t SBAddress::GetOffset() { in GetOffset()
169 LLDB_RECORD_METHOD_NO_ARGS(lldb::addr_t, SBAddress, GetOffset); in GetOffset()
176 Address *SBAddress::operator->() { return m_opaque_up.get(); } in operator ->()
178 const Address *SBAddress::operator->() const { return m_opaque_up.get(); } in operator ->()
180 Address &SBAddress::ref() { in ref()
186 const Address &SBAddress::ref() const { in ref()
193 Address *SBAddress::get() { return m_opaque_up.get(); } in get()
195 bool SBAddress::GetDescription(SBStream &description) { in GetDescription()
196 LLDB_RECORD_METHOD(bool, SBAddress, GetDescription, (lldb::SBStream &), in GetDescription()
211 SBModule SBAddress::GetModule() { in GetModule()
212 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBModule, SBAddress, GetModule); in GetModule()
220 SBSymbolContext SBAddress::GetSymbolContext(uint32_t resolve_scope) { in GetSymbolContext()
221 LLDB_RECORD_METHOD(lldb::SBSymbolContext, SBAddress, GetSymbolContext, in GetSymbolContext()
231 SBCompileUnit SBAddress::GetCompileUnit() { in GetCompileUnit()
232 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBCompileUnit, SBAddress, GetCompileUnit); in GetCompileUnit()
240 SBFunction SBAddress::GetFunction() { in GetFunction()
241 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBFunction, SBAddress, GetFunction); in GetFunction()
249 SBBlock SBAddress::GetBlock() { in GetBlock()
250 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBAddress, GetBlock); in GetBlock()
258 SBSymbol SBAddress::GetSymbol() { in GetSymbol()
259 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBSymbol, SBAddress, GetSymbol); in GetSymbol()
267 SBLineEntry SBAddress::GetLineEntry() { in GetLineEntry()
268 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBLineEntry, SBAddress, GetLineEntry); in GetLineEntry()
283 void RegisterMethods<SBAddress>(Registry &R) { in RegisterMethods()
284 LLDB_REGISTER_CONSTRUCTOR(SBAddress, ()); in RegisterMethods()
285 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (const lldb::SBAddress &)); in RegisterMethods()
286 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::SBSection, lldb::addr_t)); in RegisterMethods()
287 LLDB_REGISTER_CONSTRUCTOR(SBAddress, (lldb::addr_t, lldb::SBTarget &)); in RegisterMethods()
288 LLDB_REGISTER_METHOD(const lldb::SBAddress &, in RegisterMethods()
289 SBAddress, operator=,(const lldb::SBAddress &)); in RegisterMethods()
291 SBAddress, operator!=,(const lldb::SBAddress &)); in RegisterMethods()
292 LLDB_REGISTER_METHOD_CONST(bool, SBAddress, IsValid, ()); in RegisterMethods()
293 LLDB_REGISTER_METHOD_CONST(bool, SBAddress, operator bool, ()); in RegisterMethods()
294 LLDB_REGISTER_METHOD(void, SBAddress, Clear, ()); in RegisterMethods()
295 LLDB_REGISTER_METHOD(void, SBAddress, SetAddress, in RegisterMethods()
297 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBAddress, GetFileAddress, ()); in RegisterMethods()
298 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBAddress, GetLoadAddress, in RegisterMethods()
300 LLDB_REGISTER_METHOD(void, SBAddress, SetLoadAddress, in RegisterMethods()
302 LLDB_REGISTER_METHOD(bool, SBAddress, OffsetAddress, (lldb::addr_t)); in RegisterMethods()
303 LLDB_REGISTER_METHOD(lldb::SBSection, SBAddress, GetSection, ()); in RegisterMethods()
304 LLDB_REGISTER_METHOD(lldb::addr_t, SBAddress, GetOffset, ()); in RegisterMethods()
305 LLDB_REGISTER_METHOD(bool, SBAddress, GetDescription, (lldb::SBStream &)); in RegisterMethods()
306 LLDB_REGISTER_METHOD(lldb::SBModule, SBAddress, GetModule, ()); in RegisterMethods()
307 LLDB_REGISTER_METHOD(lldb::SBSymbolContext, SBAddress, GetSymbolContext, in RegisterMethods()
309 LLDB_REGISTER_METHOD(lldb::SBCompileUnit, SBAddress, GetCompileUnit, ()); in RegisterMethods()
310 LLDB_REGISTER_METHOD(lldb::SBFunction, SBAddress, GetFunction, ()); in RegisterMethods()
311 LLDB_REGISTER_METHOD(lldb::SBBlock, SBAddress, GetBlock, ()); in RegisterMethods()
312 LLDB_REGISTER_METHOD(lldb::SBSymbol, SBAddress, GetSymbol, ()); in RegisterMethods()
313 LLDB_REGISTER_METHOD(lldb::SBLineEntry, SBAddress, GetLineEntry, ()); in RegisterMethods()