Lines Matching defs:stop_info_sp
718 StopInfoWatchpointSP stop_info_sp,
722 m_stop_info_sp(stop_info_sp), m_watch_sp(watch_sp) {
741 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo();
745 if (stop_info_sp
746 && stop_info_sp->GetStopReason() == eStopReasonWatchpoint)
1520 ValueObjectSP StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) {
1521 if (stop_info_sp &&
1522 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1524 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1530 ExpressionVariableSP StopInfo::GetExpressionVariable(StopInfoSP &stop_info_sp) {
1531 if (stop_info_sp &&
1532 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1534 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1541 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp,
1543 if (!stop_info_sp) {
1547 const char *description = stop_info_sp->GetDescription();
1552 ThreadSP thread_sp = stop_info_sp->GetThread();