Lines Matching refs:ThreadPlanSP

337   ThreadPlanSP completed_plan_sp(GetCompletedPlan());  in GetStopInfo()
647 ThreadPlanSP step_bp_plan_sp(new ThreadPlanStepOverBreakpoint(*this)); in SetupForResume()
1069 void Thread::PushPlan(ThreadPlanSP thread_plan_sp) { in PushPlan()
1086 ThreadPlanSP popped_plan_sp = GetPlans().PopPlan(); in PopPlan()
1095 ThreadPlanSP discarded_plan_sp = GetPlans().PopPlan(); in DiscardPlan()
1108 ThreadPlanSP p; in AutoCompleteThreadPlans()
1122 ThreadPlanSP Thread::GetCompletedPlan() const { in GetCompletedPlan()
1150 Status Thread::QueueThreadPlan(ThreadPlanSP &thread_plan_sp, in QueueThreadPlan()
1192 void Thread::DiscardThreadPlansUpToPlan(lldb::ThreadPlanSP &up_to_plan_sp) { in DiscardThreadPlansUpToPlan()
1232 ThreadPlanSP Thread::QueueBasePlan(bool abort_other_plans) { in QueueBasePlan()
1233 ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this)); in QueueBasePlan()
1238 ThreadPlanSP Thread::QueueThreadPlanForStepSingleInstruction( in QueueThreadPlanForStepSingleInstruction()
1241 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInstruction( in QueueThreadPlanForStepSingleInstruction()
1247 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1251 ThreadPlanSP thread_plan_sp; in QueueThreadPlanForStepOverRange()
1262 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1274 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1280 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInRange( in QueueThreadPlanForStepInRange()
1289 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1304 ThreadPlanSP Thread::QueueThreadPlanForStepOut( in QueueThreadPlanForStepOut()
1309 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOut()
1317 ThreadPlanSP Thread::QueueThreadPlanForStepOutNoShouldStop( in QueueThreadPlanForStepOutNoShouldStop()
1323 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOutNoShouldStop()
1336 ThreadPlanSP Thread::QueueThreadPlanForStepThrough(StackID &return_stack_id, in QueueThreadPlanForStepThrough()
1340 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForStepThrough()
1343 return ThreadPlanSP(); in QueueThreadPlanForStepThrough()
1349 ThreadPlanSP Thread::QueueThreadPlanForRunToAddress(bool abort_other_plans, in QueueThreadPlanForRunToAddress()
1353 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForRunToAddress()
1360 ThreadPlanSP Thread::QueueThreadPlanForStepUntil( in QueueThreadPlanForStepUntil()
1363 ThreadPlanSP thread_plan_sp(new ThreadPlanStepUntil( in QueueThreadPlanForStepUntil()
1370 lldb::ThreadPlanSP Thread::QueueThreadPlanForStepScripted( in QueueThreadPlanForStepScripted()
1381 ThreadPlanSP thread_plan_sp(new ThreadPlanPython(*this, class_name, in QueueThreadPlanForStepScripted()
1903 ThreadPlanSP new_plan_sp; in StepIn()
1936 ThreadPlanSP new_plan_sp; in StepOver()
1971 ThreadPlanSP new_plan_sp(QueueThreadPlanForStepOut( in StepOut()