Lines Matching refs:ThreadPlanSP
340 ThreadPlanSP completed_plan_sp(GetCompletedPlan()); in GetStopInfo()
657 ThreadPlanSP step_bp_plan_sp(new ThreadPlanStepOverBreakpoint(*this)); in SetupForResume()
1091 void Thread::PushPlan(ThreadPlanSP thread_plan_sp) { in PushPlan()
1108 ThreadPlanSP popped_plan_sp = GetPlans().PopPlan(); in PopPlan()
1117 ThreadPlanSP discarded_plan_sp = GetPlans().DiscardPlan(); in DiscardPlan()
1130 ThreadPlanSP p; in AutoCompleteThreadPlans()
1144 ThreadPlanSP Thread::GetCompletedPlan() const { in GetCompletedPlan()
1172 Status Thread::QueueThreadPlan(ThreadPlanSP &thread_plan_sp, in QueueThreadPlan()
1214 void Thread::DiscardThreadPlansUpToPlan(lldb::ThreadPlanSP &up_to_plan_sp) { in DiscardThreadPlansUpToPlan()
1254 ThreadPlanSP Thread::QueueBasePlan(bool abort_other_plans) { in QueueBasePlan()
1255 ThreadPlanSP thread_plan_sp(new ThreadPlanBase(*this)); in QueueBasePlan()
1260 ThreadPlanSP Thread::QueueThreadPlanForStepSingleInstruction( in QueueThreadPlanForStepSingleInstruction()
1263 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInstruction( in QueueThreadPlanForStepSingleInstruction()
1269 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1273 ThreadPlanSP thread_plan_sp; in QueueThreadPlanForStepOverRange()
1284 ThreadPlanSP Thread::QueueThreadPlanForStepOverRange( in QueueThreadPlanForStepOverRange()
1296 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1302 ThreadPlanSP thread_plan_sp(new ThreadPlanStepInRange( in QueueThreadPlanForStepInRange()
1311 ThreadPlanSP Thread::QueueThreadPlanForStepInRange( in QueueThreadPlanForStepInRange()
1326 ThreadPlanSP Thread::QueueThreadPlanForStepOut( in QueueThreadPlanForStepOut()
1331 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOut()
1339 ThreadPlanSP Thread::QueueThreadPlanForStepOutNoShouldStop( in QueueThreadPlanForStepOutNoShouldStop()
1345 ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut( in QueueThreadPlanForStepOutNoShouldStop()
1358 ThreadPlanSP Thread::QueueThreadPlanForStepThrough(StackID &return_stack_id, in QueueThreadPlanForStepThrough()
1362 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForStepThrough()
1365 return ThreadPlanSP(); in QueueThreadPlanForStepThrough()
1371 ThreadPlanSP Thread::QueueThreadPlanForRunToAddress(bool abort_other_plans, in QueueThreadPlanForRunToAddress()
1375 ThreadPlanSP thread_plan_sp( in QueueThreadPlanForRunToAddress()
1382 ThreadPlanSP Thread::QueueThreadPlanForStepUntil( in QueueThreadPlanForStepUntil()
1385 ThreadPlanSP thread_plan_sp(new ThreadPlanStepUntil( in QueueThreadPlanForStepUntil()
1392 lldb::ThreadPlanSP Thread::QueueThreadPlanForStepScripted( in QueueThreadPlanForStepScripted()
1397 ThreadPlanSP thread_plan_sp(new ThreadPlanPython( in QueueThreadPlanForStepScripted()
1923 ThreadPlanSP new_plan_sp; in StepIn()
1956 ThreadPlanSP new_plan_sp; in StepOver()
1991 ThreadPlanSP new_plan_sp(QueueThreadPlanForStepOut( in StepOut()