Searched refs:new_plan_sp (Results 1 – 8 of 8) sorted by relevance
141 ThreadPlanSP new_plan_sp; in ShouldStop() local154 new_plan_sp = thread.QueueThreadPlanForStepThrough(m_stack_id, false, in ShouldStop()157 if (new_plan_sp && log) in ShouldStop()178 new_plan_sp = thread.QueueThreadPlanForStepOutNoShouldStop( in ShouldStop()183 new_plan_sp = thread.QueueThreadPlanForStepThrough( in ShouldStop()186 if (new_plan_sp) in ShouldStop()203 new_plan_sp = thread.QueueThreadPlanForStepThrough(m_stack_id, false, in ShouldStop()293 new_plan_sp = thread.QueueThreadPlanForStepOverRange( in ShouldStop()315 if (!new_plan_sp) { in ShouldStop()316 new_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order, m_status); in ShouldStop()[all …]
141 void ThreadPlanStack::PushPlan(lldb::ThreadPlanSP new_plan_sp) { in PushPlan() argument145 assert((m_plans.size() > 0 || new_plan_sp->IsBasePlan()) && in PushPlan()148 if (!new_plan_sp->GetThreadPlanTracer()) { in PushPlan()150 new_plan_sp->SetThreadPlanTracer(m_plans.back()->GetThreadPlanTracer()); in PushPlan()152 m_plans.push_back(new_plan_sp); in PushPlan()153 new_plan_sp->DidPush(); in PushPlan()
1911 ThreadPlanSP new_plan_sp; in StepIn() local1917 new_plan_sp = QueueThreadPlanForStepInRange( in StepIn()1922 new_plan_sp = QueueThreadPlanForStepSingleInstruction( in StepIn()1926 new_plan_sp->SetIsMasterPlan(true); in StepIn()1927 new_plan_sp->SetOkayToDiscard(false); in StepIn()1944 ThreadPlanSP new_plan_sp; in StepOver() local1951 new_plan_sp = QueueThreadPlanForStepOverRange( in StepOver()1955 new_plan_sp = QueueThreadPlanForStepSingleInstruction( in StepOver()1959 new_plan_sp->SetIsMasterPlan(true); in StepOver()1960 new_plan_sp->SetOkayToDiscard(false); in StepOver()[all …]
723 ThreadPlanSP new_plan_sp( in PerformAction() local729 if (new_plan_sp && new_plan_status.Success()) { in PerformAction()730 new_plan_sp->SetIsMasterPlan(true); in PerformAction()731 new_plan_sp->SetOkayToDiscard(false); in PerformAction()732 new_plan_sp->SetPrivate(true); in PerformAction()
543 ThreadPlanSP new_plan_sp; in StepOver() local548 new_plan_sp = thread->QueueThreadPlanForStepOverRange( in StepOver()552 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in StepOver()556 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOver()594 ThreadPlanSP new_plan_sp; in StepInto() local611 new_plan_sp = thread->QueueThreadPlanForStepInRange( in StepInto()616 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in StepInto()621 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepInto()651 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut( in StepOut() local656 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOut()[all …]
447 ThreadPlanSP new_plan_sp; in DoExecute() local494 new_plan_sp = thread->QueueThreadPlanForStepInRange( in DoExecute()501 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) { in DoExecute()503 static_cast<ThreadPlanStepInRange *>(new_plan_sp.get()); in DoExecute()507 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()513 new_plan_sp = thread->QueueThreadPlanForStepOverRange( in DoExecute()520 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()523 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()526 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()529 new_plan_sp = thread->QueueThreadPlanForStepOut( in DoExecute()[all …]
255 lldb::ThreadPlanSP new_plan_sp(new ThreadPlanCallFunction( in GetThreadPlanToCallFunction() local257 new_plan_sp->SetIsMasterPlan(true); in GetThreadPlanToCallFunction()258 new_plan_sp->SetOkayToDiscard(false); in GetThreadPlanToCallFunction()259 return new_plan_sp; in GetThreadPlanToCallFunction()
57 void PushPlan(lldb::ThreadPlanSP new_plan_sp);