Lines Matching defs:plan_ptr
712 ThreadPlan *plan_ptr = GetCurrentPlan();
713 if (plan_ptr) {
714 need_to_resume = plan_ptr->WillResume(resume_state, true);
716 while ((plan_ptr = GetPreviousPlan(plan_ptr)) != nullptr) {
717 plan_ptr->WillResume(resume_state, false);
845 ThreadPlan *plan_ptr = current_plan;
846 while ((plan_ptr = GetPreviousPlan(plan_ptr)) != nullptr) {
847 if (plan_ptr->PlanExplainsStop(event_ptr)) {
848 LLDB_LOGF(log, "Plan %s explains stop.", plan_ptr->GetName());
850 should_stop = plan_ptr->ShouldStop(event_ptr);
852 // plan_ptr explains the stop, next check whether plan_ptr is done,
856 if (plan_ptr->MischiefManaged()) {
859 ThreadPlan *prev_plan_ptr = GetPreviousPlan(plan_ptr);
870 (plan_ptr->IsControllingPlan() && !plan_ptr->OkayToDiscard());
872 bool should_force_run = plan_ptr->ShouldRunBeforePublicStop();
943 ThreadPlan *plan_ptr = GetCurrentPlan();
947 while (!plan_ptr->IsBasePlan()) {
948 bool stale = plan_ptr->IsPlanStale();
949 ThreadPlan *examined_plan = plan_ptr;
950 plan_ptr = GetPreviousPlan(examined_plan);
1025 ThreadPlan *plan_ptr = GetCurrentPlan();
1027 if (plan_ptr->PlanExplainsStop(event_ptr)) {
1028 thread_vote = plan_ptr->ShouldReportStop(event_ptr);
1031 if (plan_ptr->IsBasePlan())
1034 plan_ptr = GetPreviousPlan(plan_ptr);