Searched refs:new_plan_sp (Results 1 – 7 of 7) sorted by relevance
142 ThreadPlanSP new_plan_sp; in ShouldStop() local155 new_plan_sp = thread.QueueThreadPlanForStepThrough(m_stack_id, false, in ShouldStop()158 if (new_plan_sp && log) in ShouldStop()179 new_plan_sp = thread.QueueThreadPlanForStepOutNoShouldStop( in ShouldStop()184 new_plan_sp = thread.QueueThreadPlanForStepThrough( in ShouldStop()187 if (new_plan_sp) in ShouldStop()204 new_plan_sp = thread.QueueThreadPlanForStepThrough(m_stack_id, false, in ShouldStop()297 new_plan_sp = thread.QueueThreadPlanForStepOverRange( in ShouldStop()319 if (!new_plan_sp) { in ShouldStop()320 new_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order, m_status); in ShouldStop()[all …]
133 void ThreadPlanStack::PushPlan(lldb::ThreadPlanSP new_plan_sp) { in PushPlan() argument138 assert((m_plans.size() > 0 || new_plan_sp->IsBasePlan()) && in PushPlan()141 if (!new_plan_sp->GetThreadPlanTracer()) { in PushPlan()143 new_plan_sp->SetThreadPlanTracer(m_plans.back()->GetThreadPlanTracer()); in PushPlan()145 m_plans.push_back(new_plan_sp); in PushPlan()146 new_plan_sp->DidPush(); in PushPlan()
1929 ThreadPlanSP new_plan_sp; in StepIn() local1935 new_plan_sp = QueueThreadPlanForStepInRange( in StepIn()1940 new_plan_sp = QueueThreadPlanForStepSingleInstruction( in StepIn()1944 new_plan_sp->SetIsControllingPlan(true); in StepIn()1945 new_plan_sp->SetOkayToDiscard(false); in StepIn()1962 ThreadPlanSP new_plan_sp; in StepOver() local1969 new_plan_sp = QueueThreadPlanForStepOverRange( in StepOver()1973 new_plan_sp = QueueThreadPlanForStepSingleInstruction( in StepOver()1977 new_plan_sp->SetIsControllingPlan(true); in StepOver()1978 new_plan_sp->SetOkayToDiscard(false); in StepOver()[all …]
547 ThreadPlanSP new_plan_sp; in StepOver() local552 new_plan_sp = thread->QueueThreadPlanForStepOverRange( in StepOver()556 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in StepOver()560 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOver()593 ThreadPlanSP new_plan_sp; in StepInto() local610 new_plan_sp = thread->QueueThreadPlanForStepInRange( in StepInto()615 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in StepInto()620 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepInto()650 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut( in StepOut() local655 error = ResumeNewPlan(exe_ctx, new_plan_sp.get()); in StepOut()[all …]
475 ThreadPlanSP new_plan_sp; in DoExecute() local519 new_plan_sp = thread->QueueThreadPlanForStepInRange( in DoExecute()526 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) { in DoExecute()528 static_cast<ThreadPlanStepInRange *>(new_plan_sp.get()); in DoExecute()532 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()538 new_plan_sp = thread->QueueThreadPlanForStepOverRange( in DoExecute()545 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()548 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()551 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction( in DoExecute()554 new_plan_sp = thread->QueueThreadPlanForStepOut( in DoExecute()[all …]
278 lldb::ThreadPlanSP new_plan_sp(new ThreadPlanCallFunction( in GetThreadPlanToCallFunction() local280 new_plan_sp->SetIsControllingPlan(true); in GetThreadPlanToCallFunction()281 new_plan_sp->SetOkayToDiscard(false); in GetThreadPlanToCallFunction()282 return new_plan_sp; in GetThreadPlanToCallFunction()
51 void PushPlan(lldb::ThreadPlanSP new_plan_sp);