Lines Matching refs:SBFrame
57 SBFrame::SBFrame() : m_opaque_sp(new ExecutionContextRef()) { in SBFrame() function in SBFrame
58 LLDB_RECORD_CONSTRUCTOR_NO_ARGS(SBFrame); in SBFrame()
61 SBFrame::SBFrame(const StackFrameSP &lldb_object_sp) in SBFrame() function in SBFrame
63 LLDB_RECORD_CONSTRUCTOR(SBFrame, (const lldb::StackFrameSP &), in SBFrame()
67 SBFrame::SBFrame(const SBFrame &rhs) : m_opaque_sp() { in SBFrame() function in SBFrame
68 LLDB_RECORD_CONSTRUCTOR(SBFrame, (const lldb::SBFrame &), rhs); in SBFrame()
73 SBFrame::~SBFrame() = default;
75 const SBFrame &SBFrame::operator=(const SBFrame &rhs) { in operator =()
76 LLDB_RECORD_METHOD(const lldb::SBFrame &, in operator =()
77 SBFrame, operator=,(const lldb::SBFrame &), rhs); in operator =()
84 StackFrameSP SBFrame::GetFrameSP() const { in GetFrameSP()
88 void SBFrame::SetFrameSP(const StackFrameSP &lldb_object_sp) { in SetFrameSP()
92 bool SBFrame::IsValid() const { in IsValid()
93 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFrame, IsValid); in IsValid()
96 SBFrame::operator bool() const { in operator bool()
97 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFrame, operator bool); in operator bool()
114 SBSymbolContext SBFrame::GetSymbolContext(uint32_t resolve_scope) const { in GetSymbolContext()
115 LLDB_RECORD_METHOD_CONST(lldb::SBSymbolContext, SBFrame, GetSymbolContext, in GetSymbolContext()
137 SBModule SBFrame::GetModule() const { in GetModule()
138 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBModule, SBFrame, GetModule); in GetModule()
162 SBCompileUnit SBFrame::GetCompileUnit() const { in GetCompileUnit()
163 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBCompileUnit, SBFrame, in GetCompileUnit()
187 SBFunction SBFrame::GetFunction() const { in GetFunction()
188 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBFunction, SBFrame, GetFunction); in GetFunction()
211 SBSymbol SBFrame::GetSymbol() const { in GetSymbol()
212 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBSymbol, SBFrame, GetSymbol); in GetSymbol()
234 SBBlock SBFrame::GetBlock() const { in GetBlock()
235 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBBlock, SBFrame, GetBlock); in GetBlock()
255 SBBlock SBFrame::GetFrameBlock() const { in GetFrameBlock()
256 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBBlock, SBFrame, GetFrameBlock); in GetFrameBlock()
276 SBLineEntry SBFrame::GetLineEntry() const { in GetLineEntry()
277 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBLineEntry, SBFrame, GetLineEntry); in GetLineEntry()
299 uint32_t SBFrame::GetFrameID() const { in GetFrameID()
300 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBFrame, GetFrameID); in GetFrameID()
314 lldb::addr_t SBFrame::GetCFA() const { in GetCFA()
315 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::addr_t, SBFrame, GetCFA); in GetCFA()
326 addr_t SBFrame::GetPC() const { in GetPC()
327 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::addr_t, SBFrame, GetPC); in GetPC()
350 bool SBFrame::SetPC(addr_t new_pc) { in SetPC()
351 LLDB_RECORD_METHOD(bool, SBFrame, SetPC, (lldb::addr_t), new_pc); in SetPC()
373 addr_t SBFrame::GetSP() const { in GetSP()
374 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::addr_t, SBFrame, GetSP); in GetSP()
396 addr_t SBFrame::GetFP() const { in GetFP()
397 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::addr_t, SBFrame, GetFP); in GetFP()
419 SBAddress SBFrame::GetPCAddress() const { in GetPCAddress()
420 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBAddress, SBFrame, GetPCAddress); in GetPCAddress()
440 void SBFrame::Clear() { in Clear()
441 LLDB_RECORD_METHOD_NO_ARGS(void, SBFrame, Clear); in Clear()
446 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path) { in GetValueForVariablePath()
447 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in GetValueForVariablePath()
464 lldb::SBValue SBFrame::GetValueForVariablePath(const char *var_path, in GetValueForVariablePath()
466 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in GetValueForVariablePath()
500 SBValue SBFrame::FindVariable(const char *name) { in FindVariable()
501 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindVariable, (const char *), in FindVariable()
518 SBValue SBFrame::FindVariable(const char *name, in FindVariable()
520 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindVariable, in FindVariable()
553 SBValue SBFrame::FindValue(const char *name, ValueType value_type) { in FindValue()
554 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindValue, in FindValue()
571 SBValue SBFrame::FindValue(const char *name, ValueType value_type, in FindValue()
573 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindValue, in FindValue()
694 bool SBFrame::IsEqual(const SBFrame &that) const { in IsEqual()
695 LLDB_RECORD_METHOD_CONST(bool, SBFrame, IsEqual, (const lldb::SBFrame &), in IsEqual()
703 bool SBFrame::operator==(const SBFrame &rhs) const { in operator ==()
704 LLDB_RECORD_METHOD_CONST(bool, SBFrame, operator==,(const lldb::SBFrame &), in operator ==()
710 bool SBFrame::operator!=(const SBFrame &rhs) const { in operator !=()
711 LLDB_RECORD_METHOD_CONST(bool, SBFrame, operator!=,(const lldb::SBFrame &), in operator !=()
717 SBThread SBFrame::GetThread() const { in GetThread()
718 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::SBThread, SBFrame, GetThread); in GetThread()
729 const char *SBFrame::Disassemble() const { in Disassemble()
730 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFrame, Disassemble); in Disassemble()
752 SBValueList SBFrame::GetVariables(bool arguments, bool locals, bool statics, in GetVariables()
754 LLDB_RECORD_METHOD(lldb::SBValueList, SBFrame, GetVariables, in GetVariables()
783 lldb::SBValueList SBFrame::GetVariables(bool arguments, bool locals, in GetVariables()
786 LLDB_RECORD_METHOD(lldb::SBValueList, SBFrame, GetVariables, in GetVariables()
806 SBValueList SBFrame::GetVariables(const lldb::SBVariablesOptions &options) { in GetVariables()
807 LLDB_RECORD_METHOD(lldb::SBValueList, SBFrame, GetVariables, in GetVariables()
907 SBValueList SBFrame::GetRegisters() { in GetRegisters()
908 LLDB_RECORD_METHOD_NO_ARGS(lldb::SBValueList, SBFrame, GetRegisters); in GetRegisters()
937 SBValue SBFrame::FindRegister(const char *name) { in FindRegister()
938 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, FindRegister, (const char *), in FindRegister()
977 bool SBFrame::GetDescription(SBStream &description) { in GetDescription()
978 LLDB_RECORD_METHOD(bool, SBFrame, GetDescription, (lldb::SBStream &), in GetDescription()
1004 SBValue SBFrame::EvaluateExpression(const char *expr) { in EvaluateExpression()
1005 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, (const char *), in EvaluateExpression()
1031 SBFrame::EvaluateExpression(const char *expr, in EvaluateExpression()
1033 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in EvaluateExpression()
1053 SBValue SBFrame::EvaluateExpression(const char *expr, in EvaluateExpression()
1056 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in EvaluateExpression()
1076 lldb::SBValue SBFrame::EvaluateExpression(const char *expr, in EvaluateExpression()
1078 LLDB_RECORD_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in EvaluateExpression()
1130 bool SBFrame::IsInlined() { in IsInlined()
1131 LLDB_RECORD_METHOD_NO_ARGS(bool, SBFrame, IsInlined); in IsInlined()
1133 return static_cast<const SBFrame *>(this)->IsInlined(); in IsInlined()
1136 bool SBFrame::IsInlined() const { in IsInlined()
1137 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFrame, IsInlined); in IsInlined()
1160 bool SBFrame::IsArtificial() { in IsArtificial()
1161 LLDB_RECORD_METHOD_NO_ARGS(bool, SBFrame, IsArtificial); in IsArtificial()
1163 return static_cast<const SBFrame *>(this)->IsArtificial(); in IsArtificial()
1166 bool SBFrame::IsArtificial() const { in IsArtificial()
1167 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBFrame, IsArtificial); in IsArtificial()
1179 const char *SBFrame::GetFunctionName() { in GetFunctionName()
1180 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBFrame, GetFunctionName); in GetFunctionName()
1182 return static_cast<const SBFrame *>(this)->GetFunctionName(); in GetFunctionName()
1185 lldb::LanguageType SBFrame::GuessLanguage() const { in GuessLanguage()
1186 LLDB_RECORD_METHOD_CONST_NO_ARGS(lldb::LanguageType, SBFrame, GuessLanguage); in GuessLanguage()
1206 const char *SBFrame::GetFunctionName() const { in GetFunctionName()
1207 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFrame, GetFunctionName); in GetFunctionName()
1248 const char *SBFrame::GetDisplayFunctionName() { in GetDisplayFunctionName()
1249 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBFrame, GetDisplayFunctionName); in GetDisplayFunctionName()
1295 void RegisterMethods<SBFrame>(Registry &R) { in RegisterMethods()
1296 LLDB_REGISTER_CONSTRUCTOR(SBFrame, ()); in RegisterMethods()
1297 LLDB_REGISTER_CONSTRUCTOR(SBFrame, (const lldb::StackFrameSP &)); in RegisterMethods()
1298 LLDB_REGISTER_CONSTRUCTOR(SBFrame, (const lldb::SBFrame &)); in RegisterMethods()
1299 LLDB_REGISTER_METHOD(const lldb::SBFrame &, in RegisterMethods()
1300 SBFrame, operator=,(const lldb::SBFrame &)); in RegisterMethods()
1301 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsValid, ()); in RegisterMethods()
1302 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, operator bool, ()); in RegisterMethods()
1303 LLDB_REGISTER_METHOD_CONST(lldb::SBSymbolContext, SBFrame, GetSymbolContext, in RegisterMethods()
1305 LLDB_REGISTER_METHOD_CONST(lldb::SBModule, SBFrame, GetModule, ()); in RegisterMethods()
1306 LLDB_REGISTER_METHOD_CONST(lldb::SBCompileUnit, SBFrame, GetCompileUnit, in RegisterMethods()
1308 LLDB_REGISTER_METHOD_CONST(lldb::SBFunction, SBFrame, GetFunction, ()); in RegisterMethods()
1309 LLDB_REGISTER_METHOD_CONST(lldb::SBSymbol, SBFrame, GetSymbol, ()); in RegisterMethods()
1310 LLDB_REGISTER_METHOD_CONST(lldb::SBBlock, SBFrame, GetBlock, ()); in RegisterMethods()
1311 LLDB_REGISTER_METHOD_CONST(lldb::SBBlock, SBFrame, GetFrameBlock, ()); in RegisterMethods()
1312 LLDB_REGISTER_METHOD_CONST(lldb::SBLineEntry, SBFrame, GetLineEntry, ()); in RegisterMethods()
1313 LLDB_REGISTER_METHOD_CONST(uint32_t, SBFrame, GetFrameID, ()); in RegisterMethods()
1314 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetCFA, ()); in RegisterMethods()
1315 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetPC, ()); in RegisterMethods()
1316 LLDB_REGISTER_METHOD(bool, SBFrame, SetPC, (lldb::addr_t)); in RegisterMethods()
1317 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetSP, ()); in RegisterMethods()
1318 LLDB_REGISTER_METHOD_CONST(lldb::addr_t, SBFrame, GetFP, ()); in RegisterMethods()
1319 LLDB_REGISTER_METHOD_CONST(lldb::SBAddress, SBFrame, GetPCAddress, ()); in RegisterMethods()
1320 LLDB_REGISTER_METHOD(void, SBFrame, Clear, ()); in RegisterMethods()
1321 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in RegisterMethods()
1323 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, GetValueForVariablePath, in RegisterMethods()
1325 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindVariable, (const char *)); in RegisterMethods()
1326 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindVariable, in RegisterMethods()
1328 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindValue, in RegisterMethods()
1331 lldb::SBValue, SBFrame, FindValue, in RegisterMethods()
1333 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsEqual, (const lldb::SBFrame &)); in RegisterMethods()
1335 SBFrame, operator==,(const lldb::SBFrame &)); in RegisterMethods()
1337 SBFrame, operator!=,(const lldb::SBFrame &)); in RegisterMethods()
1338 LLDB_REGISTER_METHOD_CONST(lldb::SBThread, SBFrame, GetThread, ()); in RegisterMethods()
1339 LLDB_REGISTER_METHOD_CONST(const char *, SBFrame, Disassemble, ()); in RegisterMethods()
1340 LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables, in RegisterMethods()
1342 LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables, in RegisterMethods()
1344 LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetVariables, in RegisterMethods()
1346 LLDB_REGISTER_METHOD(lldb::SBValueList, SBFrame, GetRegisters, ()); in RegisterMethods()
1347 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, FindRegister, (const char *)); in RegisterMethods()
1348 LLDB_REGISTER_METHOD(bool, SBFrame, GetDescription, (lldb::SBStream &)); in RegisterMethods()
1349 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in RegisterMethods()
1351 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in RegisterMethods()
1353 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in RegisterMethods()
1355 LLDB_REGISTER_METHOD(lldb::SBValue, SBFrame, EvaluateExpression, in RegisterMethods()
1357 LLDB_REGISTER_METHOD(bool, SBFrame, IsInlined, ()); in RegisterMethods()
1358 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsInlined, ()); in RegisterMethods()
1359 LLDB_REGISTER_METHOD(bool, SBFrame, IsArtificial, ()); in RegisterMethods()
1360 LLDB_REGISTER_METHOD_CONST(bool, SBFrame, IsArtificial, ()); in RegisterMethods()
1361 LLDB_REGISTER_METHOD(const char *, SBFrame, GetFunctionName, ()); in RegisterMethods()
1362 LLDB_REGISTER_METHOD_CONST(lldb::LanguageType, SBFrame, GuessLanguage, ()); in RegisterMethods()
1363 LLDB_REGISTER_METHOD_CONST(const char *, SBFrame, GetFunctionName, ()); in RegisterMethods()
1364 LLDB_REGISTER_METHOD(const char *, SBFrame, GetDisplayFunctionName, ()); in RegisterMethods()