Lines Matching refs:StopInfoSP

724       StopInfoSP stop_info_sp = GetThread().GetPrivateStopInfo();  in DoPlanExplainsStop()
1364 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1366 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID()
1369 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1372 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
1377 StopInfoSP StopInfo::CreateStopReasonWithWatchpointID(Thread &thread, in CreateStopReasonWithWatchpointID()
1380 return StopInfoSP( in CreateStopReasonWithWatchpointID()
1384 StopInfoSP StopInfo::CreateStopReasonWithSignal(Thread &thread, int signo, in CreateStopReasonWithSignal()
1388 return StopInfoSP(new StopInfoUnixSignal(thread, signo, description, code)); in CreateStopReasonWithSignal()
1391 StopInfoSP StopInfo::CreateStopReasonToTrace(Thread &thread) { in CreateStopReasonToTrace()
1392 return StopInfoSP(new StopInfoTrace(thread)); in CreateStopReasonToTrace()
1395 StopInfoSP StopInfo::CreateStopReasonWithPlan( in CreateStopReasonWithPlan()
1398 return StopInfoSP(new StopInfoThreadPlan(plan_sp, return_valobj_sp, in CreateStopReasonWithPlan()
1402 StopInfoSP StopInfo::CreateStopReasonWithException(Thread &thread, in CreateStopReasonWithException()
1404 return StopInfoSP(new StopInfoException(thread, description)); in CreateStopReasonWithException()
1407 StopInfoSP StopInfo::CreateStopReasonProcessorTrace(Thread &thread, in CreateStopReasonProcessorTrace()
1409 return StopInfoSP(new StopInfoProcessorTrace(thread, description)); in CreateStopReasonProcessorTrace()
1412 StopInfoSP StopInfo::CreateStopReasonWithExec(Thread &thread) { in CreateStopReasonWithExec()
1413 return StopInfoSP(new StopInfoExec(thread)); in CreateStopReasonWithExec()
1416 StopInfoSP StopInfo::CreateStopReasonFork(Thread &thread, in CreateStopReasonFork()
1419 return StopInfoSP(new StopInfoFork(thread, child_pid, child_tid)); in CreateStopReasonFork()
1423 StopInfoSP StopInfo::CreateStopReasonVFork(Thread &thread, in CreateStopReasonVFork()
1426 return StopInfoSP(new StopInfoVFork(thread, child_pid, child_tid)); in CreateStopReasonVFork()
1429 StopInfoSP StopInfo::CreateStopReasonVForkDone(Thread &thread) { in CreateStopReasonVForkDone()
1430 return StopInfoSP(new StopInfoVForkDone(thread)); in CreateStopReasonVForkDone()
1433 ValueObjectSP StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) { in GetReturnValueObject()
1443 ExpressionVariableSP StopInfo::GetExpressionVariable(StopInfoSP &stop_info_sp) { in GetExpressionVariable()
1454 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp, in GetCrashingDereference()