Lines Matching refs:SBFunction

25 SBFunction::SBFunction() { LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFunction); }  in SBFunction()  function in SBFunction
27 SBFunction::SBFunction(lldb_private::Function *lldb_object_ptr) in SBFunction() function in SBFunction
30 SBFunction::SBFunction(const lldb::SBFunction &rhs) in SBFunction() function in SBFunction
32 LLDB_RECORD_CONSTRUCTOR(SBFunction, (const lldb::SBFunction &), rhs); in SBFunction()
35 const SBFunction &SBFunction::operator=(const SBFunction &rhs) { in operator =()
36 LLDB_RECORD_METHOD(const lldb::SBFunction &, in operator =()
37 SBFunction, operator=,(const lldb::SBFunction &), rhs); in operator =()
43 SBFunction::~SBFunction() { m_opaque_ptr = nullptr; } in ~SBFunction()
45 bool SBFunction::IsValid() const { in IsValid()
46 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFunction, IsValid); in IsValid()
49 SBFunction::operator bool() const { in operator bool()
50 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFunction, operator bool); in operator bool()
55 const char *SBFunction::GetName() const { in GetName()
56 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetName); in GetName()
65 const char *SBFunction::GetDisplayName() const { in GetDisplayName()
66 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetDisplayName); in GetDisplayName()
75 const char *SBFunction::GetMangledName() const { in GetMangledName()
76 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFunction, GetMangledName); in GetMangledName()
84 bool SBFunction::operator==(const SBFunction &rhs) const { in operator ==()
86 bool, SBFunction, operator==,(const lldb::SBFunction &), rhs); in operator ==()
91 bool SBFunction::operator!=(const SBFunction &rhs) const { in operator !=()
93 bool, SBFunction, operator!=,(const lldb::SBFunction &), rhs); in operator !=()
98 bool SBFunction::GetDescription(SBStream &s) { in GetDescription()
99 LLDB_RECORD_METHOD(bool, SBFunction, GetDescription, (lldb::SBStream &), s); in GetDescription()
113 SBInstructionList SBFunction::GetInstructions(SBTarget target) { in GetInstructions()
114 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in GetInstructions()
120 SBInstructionList SBFunction::GetInstructions(SBTarget target, in GetInstructions()
122 LLDB_RECORD_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in GetInstructions()
142 lldb_private::Function *SBFunction::get() { return m_opaque_ptr; } in get()
144 void SBFunction::reset(lldb_private::Function *lldb_object_ptr) { in reset()
148 SBAddress SBFunction::GetStartAddress() { in GetStartAddress()
149 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBFunction, GetStartAddress); in GetStartAddress()
157 SBAddress SBFunction::GetEndAddress() { in GetEndAddress()
158 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBAddress, SBFunction, GetEndAddress); in GetEndAddress()
171 const char *SBFunction::GetArgumentName(uint32_t arg_idx) { in GetArgumentName()
172 LLDB_RECORD_METHOD(const char *, SBFunction, GetArgumentName, (uint32_t), in GetArgumentName()
190 uint32_t SBFunction::GetPrologueByteSize() { in GetPrologueByteSize()
191 LLDB_RECORD_METHOD_NO_ARGS(uint32_t, SBFunction, GetPrologueByteSize); in GetPrologueByteSize()
198 SBType SBFunction::GetType() { in GetType()
199 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBType, SBFunction, GetType); in GetType()
210 SBBlock SBFunction::GetBlock() { in GetBlock()
211 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBBlock, SBFunction, GetBlock); in GetBlock()
219 lldb::LanguageType SBFunction::GetLanguage() { in GetLanguage()
220 LLDB_RECORD_METHOD_NO_ARGS(lldb::LanguageType, SBFunction, GetLanguage); in GetLanguage()
229 bool SBFunction::GetIsOptimized() { in GetIsOptimized()
230 LLDB_RECORD_METHOD_NO_ARGS(bool, SBFunction, GetIsOptimized); in GetIsOptimized()
243 void RegisterMethods<SBFunction>(Registry &R) { in RegisterMethods()
244 LLDB_REGISTER_CONSTRUCTOR(SBFunction, ()); in RegisterMethods()
245 LLDB_REGISTER_CONSTRUCTOR(SBFunction, (const lldb::SBFunction &)); in RegisterMethods()
246 LLDB_REGISTER_METHOD(const lldb::SBFunction &, in RegisterMethods()
247 SBFunction, operator=,(const lldb::SBFunction &)); in RegisterMethods()
248 LLDB_REGISTER_METHOD_CONST(bool, SBFunction, IsValid, ()); in RegisterMethods()
249 LLDB_REGISTER_METHOD_CONST(bool, SBFunction, operator bool, ()); in RegisterMethods()
250 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetName, ()); in RegisterMethods()
251 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetDisplayName, ()); in RegisterMethods()
252 LLDB_REGISTER_METHOD_CONST(const char *, SBFunction, GetMangledName, ()); in RegisterMethods()
254 bool, SBFunction, operator==,(const lldb::SBFunction &)); in RegisterMethods()
256 bool, SBFunction, operator!=,(const lldb::SBFunction &)); in RegisterMethods()
257 LLDB_REGISTER_METHOD(bool, SBFunction, GetDescription, (lldb::SBStream &)); in RegisterMethods()
258 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in RegisterMethods()
260 LLDB_REGISTER_METHOD(lldb::SBInstructionList, SBFunction, GetInstructions, in RegisterMethods()
262 LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetStartAddress, ()); in RegisterMethods()
263 LLDB_REGISTER_METHOD(lldb::SBAddress, SBFunction, GetEndAddress, ()); in RegisterMethods()
264 LLDB_REGISTER_METHOD(const char *, SBFunction, GetArgumentName, (uint32_t)); in RegisterMethods()
265 LLDB_REGISTER_METHOD(uint32_t, SBFunction, GetPrologueByteSize, ()); in RegisterMethods()
266 LLDB_REGISTER_METHOD(lldb::SBType, SBFunction, GetType, ()); in RegisterMethods()
267 LLDB_REGISTER_METHOD(lldb::SBBlock, SBFunction, GetBlock, ()); in RegisterMethods()
268 LLDB_REGISTER_METHOD(lldb::LanguageType, SBFunction, GetLanguage, ()); in RegisterMethods()
269 LLDB_REGISTER_METHOD(bool, SBFunction, GetIsOptimized, ()); in RegisterMethods()