Home
last modified time | relevance | path

Searched refs:new_plan_sp (Results 1 – 4 of 4) sorted by relevance

/external/lldb/source/Target/
DThreadPlanStepOverRange.cpp90 ThreadPlanSP new_plan_sp; in ShouldStop() local
103 new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others); in ShouldStop()
105 if (new_plan_sp && log) in ShouldStop()
145 new_plan_sp = m_thread.QueueThreadPlanForStepOut (false, in ShouldStop()
155new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others); in ShouldStop()
176 new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others); in ShouldStop()
257new_plan_sp = m_thread.QueueThreadPlanForRunToAddress(abort_other_plans, in ShouldStop()
276 if (!new_plan_sp) in ShouldStop()
281 if (!new_plan_sp) in ShouldStop()
DStopInfo.cpp676 … ThreadPlanSP new_plan_sp(thread_sp->QueueThreadPlanForStepSingleInstruction(false, // step-over in PerformAction() local
679 new_plan_sp->SetIsMasterPlan (true); in PerformAction()
680 new_plan_sp->SetOkayToDiscard (false); in PerformAction()
681 new_plan_sp->SetPrivate (true); in PerformAction()
/external/lldb/source/API/
DSBThread.cpp571 ThreadPlanSP new_plan_sp; in StepOver() local
577 new_plan_sp = thread->QueueThreadPlanForStepOverRange (abort_other_plans, in StepOver()
584 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true, in StepOver()
591 ResumeNewPlan (exe_ctx, new_plan_sp.get()); in StepOver()
621 ThreadPlanSP new_plan_sp; in StepInto() local
627 new_plan_sp = thread->QueueThreadPlanForStepInRange (abort_other_plans, in StepInto()
636 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false, in StepInto()
642 ResumeNewPlan (exe_ctx, new_plan_sp.get()); in StepInto()
665 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut (abort_other_plans, in StepOut() local
674 ResumeNewPlan (exe_ctx, new_plan_sp.get()); in StepOut()
[all …]
/external/lldb/source/Commands/
DCommandObjectThread.cpp464 ThreadPlanSP new_plan_sp; in DoExecute() local
472 new_plan_sp = thread->QueueThreadPlanForStepInRange (abort_other_plans, in DoExecute()
478 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) in DoExecute()
480 …readPlanStepInRange *step_in_range_plan = static_cast<ThreadPlanStepInRange *> (new_plan_sp.get()); in DoExecute()
485new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false, abort_other_plans, bool_stop… in DoExecute()
493 new_plan_sp = thread->QueueThreadPlanForStepOverRange (abort_other_plans, in DoExecute()
498 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true, in DoExecute()
505new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false, abort_other_plans, bool_stop… in DoExecute()
509new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true, abort_other_plans, bool_stop_… in DoExecute()
513 new_plan_sp = thread->QueueThreadPlanForStepOut (abort_other_plans, in DoExecute()
[all …]