Lines Matching refs:StopInfoSP

772                 StopInfoSP stored_stop_info_sp = thread_sp->GetStopInfo();  in PerformAction()
1267 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1269 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID()
1272 StopInfoSP StopInfo::CreateStopReasonWithBreakpointSiteID(Thread &thread, in CreateStopReasonWithBreakpointSiteID()
1275 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
1278 StopInfoSP
1281 return StopInfoSP(new StopInfoWatchpoint(thread, watch_id, watch_hit_addr)); in CreateStopReasonWithWatchpointID()
1284 StopInfoSP StopInfo::CreateStopReasonWithSignal(Thread &thread, int signo, in CreateStopReasonWithSignal()
1287 return StopInfoSP(new StopInfoUnixSignal(thread, signo, description)); in CreateStopReasonWithSignal()
1290 StopInfoSP StopInfo::CreateStopReasonToTrace(Thread &thread) { in CreateStopReasonToTrace()
1291 return StopInfoSP(new StopInfoTrace(thread)); in CreateStopReasonToTrace()
1294 StopInfoSP StopInfo::CreateStopReasonWithPlan( in CreateStopReasonWithPlan()
1297 return StopInfoSP(new StopInfoThreadPlan(plan_sp, return_valobj_sp, in CreateStopReasonWithPlan()
1301 StopInfoSP StopInfo::CreateStopReasonWithException(Thread &thread, in CreateStopReasonWithException()
1303 return StopInfoSP(new StopInfoException(thread, description)); in CreateStopReasonWithException()
1306 StopInfoSP StopInfo::CreateStopReasonProcessorTrace(Thread &thread, in CreateStopReasonProcessorTrace()
1308 return StopInfoSP(new StopInfoProcessorTrace(thread, description)); in CreateStopReasonProcessorTrace()
1311 StopInfoSP StopInfo::CreateStopReasonWithExec(Thread &thread) { in CreateStopReasonWithExec()
1312 return StopInfoSP(new StopInfoExec(thread)); in CreateStopReasonWithExec()
1315 StopInfoSP StopInfo::CreateStopReasonFork(Thread &thread, in CreateStopReasonFork()
1318 return StopInfoSP(new StopInfoFork(thread, child_pid, child_tid)); in CreateStopReasonFork()
1322 StopInfoSP StopInfo::CreateStopReasonVFork(Thread &thread, in CreateStopReasonVFork()
1325 return StopInfoSP(new StopInfoVFork(thread, child_pid, child_tid)); in CreateStopReasonVFork()
1328 StopInfoSP StopInfo::CreateStopReasonVForkDone(Thread &thread) { in CreateStopReasonVForkDone()
1329 return StopInfoSP(new StopInfoVForkDone(thread)); in CreateStopReasonVForkDone()
1332 ValueObjectSP StopInfo::GetReturnValueObject(StopInfoSP &stop_info_sp) { in GetReturnValueObject()
1342 ExpressionVariableSP StopInfo::GetExpressionVariable(StopInfoSP &stop_info_sp) { in GetExpressionVariable()
1353 StopInfo::GetCrashingDereference(StopInfoSP &stop_info_sp, in GetCrashingDereference()