Lines Matching refs:ThreadPlanSP
345 ThreadPlanSP completed_plan_sp(GetCompletedPlan()); in GetStopInfo()
641 ThreadPlanSP step_bp_plan_sp(new ThreadPlanStepOverBreakpoint(*this)); in SetupForResume()
1075 void Thread::PushPlan(ThreadPlanSP thread_plan_sp) { in PushPlan()
1092 ThreadPlanSP popped_plan_sp = GetPlans().PopPlan(); in PopPlan()
1101 ThreadPlanSP discarded_plan_sp = GetPlans().DiscardPlan(); in DiscardPlan()
1114 ThreadPlanSP p; in AutoCompleteThreadPlans()
1128 ThreadPlanSP Thread::GetCompletedPlan() const { in GetCompletedPlan()
1156 Status Thread::QueueThreadPlan(ThreadPlanSP &thread_plan_sp, in QueueThreadPlan()
1198 void Thread::DiscardThreadPlansUpToPlan(lldb::ThreadPlanSP &up_to_plan_sp) { in DiscardThreadPlansUpToPlan()
1238 ThreadPlanSP Thread::QueueBasePlan(bool abort_other_plans) { in QueueBasePlan()
1239 ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this)); in QueueBasePlan()
1244 ThreadPlanSP Thread::QueueThreadPlanForStepSingleInstruction( in QueueThreadPlanForStepSingleInstruction()
1247 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInstruction( in QueueThreadPlanForStepSingleInstruction()
1253 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1257 ThreadPlanSP thread_plan_sp; in QueueThreadPlanForStepOverRange()
1268 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1280 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1286 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInRange( in QueueThreadPlanForStepInRange()
1295 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1310 ThreadPlanSP Thread::QueueThreadPlanForStepOut( in QueueThreadPlanForStepOut()
1315 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOut()
1323 ThreadPlanSP Thread::QueueThreadPlanForStepOutNoShouldStop( in QueueThreadPlanForStepOutNoShouldStop()
1329 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOutNoShouldStop()
1342 ThreadPlanSP Thread::QueueThreadPlanForStepThrough(StackID &return_stack_id, in QueueThreadPlanForStepThrough()
1346 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForStepThrough()
1349 return ThreadPlanSP(); in QueueThreadPlanForStepThrough()
1355 ThreadPlanSP Thread::QueueThreadPlanForRunToAddress(bool abort_other_plans, in QueueThreadPlanForRunToAddress()
1359 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForRunToAddress()
1366 ThreadPlanSP Thread::QueueThreadPlanForStepUntil( in QueueThreadPlanForStepUntil()
1369 ThreadPlanSP thread_plan_sp(new ThreadPlanStepUntil( in QueueThreadPlanForStepUntil()
1376 lldb::ThreadPlanSP Thread::QueueThreadPlanForStepScripted( in QueueThreadPlanForStepScripted()
1381 ThreadPlanSP thread_plan_sp(new ThreadPlanPython( in QueueThreadPlanForStepScripted()
1929 ThreadPlanSP new_plan_sp; in StepIn()
1962 ThreadPlanSP new_plan_sp; in StepOver()
1997 ThreadPlanSP new_plan_sp(QueueThreadPlanForStepOut( in StepOut()