Lines Matching defs:current_plan
603 ThreadPlan *current_plan = GetCurrentPlan();
608 if (!current_plan)
611 current_plan->WillStop();
730 ThreadPlan *current_plan = GetCurrentPlan();
786 current_plan->DoTraceLog();
817 if (!current_plan->PlanExplainsStop(event_ptr)) {
818 if (current_plan->TracerExplainsStop()) {
824 ThreadPlan *plan_ptr = current_plan;
842 current_plan->WillStop();
844 } while ((current_plan = GetCurrentPlan()) != prev_plan_ptr);
868 if (current_plan->IsBasePlan()) {
869 should_stop = current_plan->ShouldStop(event_ptr);
876 if (current_plan->IsBasePlan())
879 should_stop = current_plan->ShouldStop(event_ptr);
880 LLDB_LOGF(log, "Plan %s should stop: %d.", current_plan->GetName(),
882 if (current_plan->MischiefManaged()) {
884 current_plan->WillStop();
886 if (current_plan->ShouldAutoContinue(event_ptr)) {
889 current_plan->GetName());
896 if (should_stop && current_plan->IsControllingPlan() &&
897 !current_plan->OkayToDiscard()) {
901 current_plan = GetCurrentPlan();
902 if (current_plan == nullptr) {
1152 ThreadPlan *Thread::GetPreviousPlan(ThreadPlan *current_plan) const{
1153 return GetPlans().GetPreviousPlan(current_plan);