Lines Matching refs:thread_plan_sp

1064 Thread::PushPlan (ThreadPlanSP &thread_plan_sp)
1066 if (thread_plan_sp)
1069 if (!thread_plan_sp->GetThreadPlanTracer())
1070 thread_plan_sp->SetThreadPlanTracer(m_plan_stack.back()->GetThreadPlanTracer());
1071 m_plan_stack.push_back (thread_plan_sp);
1073 thread_plan_sp->DidPush();
1079 thread_plan_sp->GetDescription (&s, lldb::eDescriptionLevelFull);
1083 thread_plan_sp->GetThread().GetID());
1226 Thread::QueueThreadPlan (ThreadPlanSP &thread_plan_sp, bool abort_other_plans)
1231 PushPlan (thread_plan_sp);
1404 ThreadPlanSP thread_plan_sp (new ThreadPlanBase(*this));
1405 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1406 return thread_plan_sp;
1417 ThreadPlanSP thread_plan_sp (new ThreadPlanStepInstruction (*this, step_over, stop_other_threads, eVoteNoOpinion, eVoteNoOpinion));
1418 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1419 return thread_plan_sp;
1431 ThreadPlanSP thread_plan_sp;
1432 thread_plan_sp.reset (new ThreadPlanStepOverRange (*this, range, addr_context, stop_other_threads));
1434 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1435 return thread_plan_sp;
1449 ThreadPlanSP thread_plan_sp;
1457 thread_plan_sp.reset (plan);
1459 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1460 return thread_plan_sp;
1476 ThreadPlanSP thread_plan_sp (new ThreadPlanStepOut (*this,
1484 if (thread_plan_sp->ValidatePlan(NULL))
1486 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1487 return thread_plan_sp;
1498 ThreadPlanSP thread_plan_sp(new ThreadPlanStepThrough (*this, return_stack_id, stop_other_threads));
1499 if (!thread_plan_sp || !thread_plan_sp->ValidatePlan (NULL))
1502 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1503 return thread_plan_sp;
1511 ThreadPlanSP thread_plan_sp (new ThreadPlanRunToAddress (*this, target_addr, stop_other_threads));
1512 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1513 return thread_plan_sp;
1523 ThreadPlanSP thread_plan_sp (new ThreadPlanStepUntil (*this, address_list, num_addresses, stop_other_threads, frame_idx));
1524 QueueThreadPlan (thread_plan_sp, abort_other_plans);
1525 return thread_plan_sp;