Lines Matching defs:plan_ptr
696 ThreadPlan *plan_ptr = GetCurrentPlan();
697 if (plan_ptr) {
698 need_to_resume = plan_ptr->WillResume(resume_state, true);
700 while ((plan_ptr = GetPreviousPlan(plan_ptr)) != nullptr) {
701 plan_ptr->WillResume(resume_state, false);
824 ThreadPlan *plan_ptr = current_plan;
825 while ((plan_ptr = GetPreviousPlan(plan_ptr)) != nullptr) {
826 if (plan_ptr->PlanExplainsStop(event_ptr)) {
827 LLDB_LOGF(log, "Plan %s explains stop.", plan_ptr->GetName());
829 should_stop = plan_ptr->ShouldStop(event_ptr);
831 // plan_ptr explains the stop, next check whether plan_ptr is done,
835 if (plan_ptr->MischiefManaged()) {
838 ThreadPlan *prev_plan_ptr = GetPreviousPlan(plan_ptr);
849 (plan_ptr->IsControllingPlan() && !plan_ptr->OkayToDiscard());
851 bool should_force_run = plan_ptr->ShouldRunBeforePublicStop();
922 ThreadPlan *plan_ptr = GetCurrentPlan();
926 while (!plan_ptr->IsBasePlan()) {
927 bool stale = plan_ptr->IsPlanStale();
928 ThreadPlan *examined_plan = plan_ptr;
929 plan_ptr = GetPreviousPlan(examined_plan);
1004 ThreadPlan *plan_ptr = GetCurrentPlan();
1006 if (plan_ptr->PlanExplainsStop(event_ptr)) {
1007 thread_vote = plan_ptr->ShouldReportStop(event_ptr);
1010 if (plan_ptr->IsBasePlan())
1013 plan_ptr = GetPreviousPlan(plan_ptr);