HomeSort by relevance Sort by last modified time
    Searched defs:new_plan_sp (Results 1 - 3 of 3) sorted by null

  /external/lldb/source/Target/
ThreadPlanStepOverRange.cpp 90 ThreadPlanSP new_plan_sp; local
103 new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others);
105 if (new_plan_sp && log)
145 new_plan_sp = m_thread.QueueThreadPlanForStepOut (false,
155 new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others);
176 new_plan_sp = m_thread.QueueThreadPlanForStepThrough (m_stack_id, false, stop_others);
257 new_plan_sp = m_thread.QueueThreadPlanForRunToAddress(abort_other_plans,
276 if (!new_plan_sp)
281 if (!new_plan_sp)
  /external/lldb/source/API/
SBThread.cpp 571 ThreadPlanSP new_plan_sp; local
577 new_plan_sp = thread->QueueThreadPlanForStepOverRange (abort_other_plans,
584 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true,
591 ResumeNewPlan (exe_ctx, new_plan_sp.get());
621 ThreadPlanSP new_plan_sp; local
627 new_plan_sp = thread->QueueThreadPlanForStepInRange (abort_other_plans,
636 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false,
642 ResumeNewPlan (exe_ctx, new_plan_sp.get());
665 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut (abort_other_plans,
674 ResumeNewPlan (exe_ctx, new_plan_sp.get())
    [all...]
  /external/lldb/source/Commands/
CommandObjectThread.cpp 464 ThreadPlanSP new_plan_sp; local
472 new_plan_sp = thread->QueueThreadPlanForStepInRange (abort_other_plans,
478 if (new_plan_sp && !m_options.m_avoid_regexp.empty())
480 ThreadPlanStepInRange *step_in_range_plan = static_cast<ThreadPlanStepInRange *> (new_plan_sp.get());
485 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false, abort_other_plans, bool_stop_other_threads);
493 new_plan_sp = thread->QueueThreadPlanForStepOverRange (abort_other_plans,
498 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true,
505 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (false, abort_other_plans, bool_stop_other_threads);
509 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction (true, abort_other_plans, bool_stop_other_threads);
513 new_plan_sp = thread->QueueThreadPlanForStepOut (abort_other_plans
1004 ThreadPlanSP new_plan_sp; local
    [all...]

Completed in 2934 milliseconds