Lines Matching defs:stop_info_sp
701 StopInfoWatchpointSP stop_info_sp,
705 m_stop_info_sp(stop_info_sp), m_watch_sp(watch_sp) {
724 StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo();
728 if (stop_info_sp
729 && stop_info_sp->GetStopReason() == eStopReasonWatchpoint)
1435 ValueObjectSP StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) {
1436 if (stop_info_sp &&
1437 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1439 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1445 ExpressionVariableSP StopInfo::GetExpressionVariable(StopInfoSP &stop_info_sp) {
1446 if (stop_info_sp &&
1447 stop_info_sp->GetStopReason() == eStopReasonPlanComplete) {
1449 static_cast<StopInfoThreadPlan *>(stop_info_sp.get());
1456 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp,
1458 if (!stop_info_sp) {
1462 const char *description = stop_info_sp->GetDescription();
1467 ThreadSP thread_sp = stop_info_sp->GetThread();