Searched refs:current_plan (Results 1 - 18 of 18) sorted by relevance

/external/lldb/include/lldb/Target/
H A DThreadPlanStepOverRange.h40 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepInRange.h58 DefaultShouldStopHereCallback (ThreadPlan *current_plan, Flags &flags, void *baton);
67 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanBase.h57 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepOverBreakpoint.h41 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepOut.h52 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepThrough.h38 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlanStepUntil.h37 virtual bool DoWillResume (lldb::StateType resume_state, bool current_plan);
H A DThreadPlan.h381 WillResume (lldb::StateType resume_state, bool current_plan);
533 DoWillResume (lldb::StateType resume_state, bool current_plan) { return true; }; argument
/external/lldb/source/Target/
H A DThreadPlanStepInRange.cpp321 ThreadPlanStepInRange::DefaultShouldStopHereCallback (ThreadPlan *current_plan, Flags &flags, void *baton) argument
324 StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
338 if (current_plan->GetKind() == eKindStepInRange)
340 ThreadPlanStepInRange *step_in_range_plan = static_cast<ThreadPlanStepInRange *> (current_plan);
370 ThreadPlanStepInRange *step_in_range_plan = static_cast<ThreadPlanStepInRange *> (current_plan);
383 return current_plan->GetThread().QueueThreadPlanForStepOut (false,
458 ThreadPlanStepInRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
460 if (resume_state == eStateStepping && current_plan)
H A DThreadPlanStepOverBreakpoint.cpp95 ThreadPlanStepOverBreakpoint::DoWillResume (StateType resume_state, bool current_plan) argument
97 if (current_plan)
H A DThread.cpp540 ThreadPlan *current_plan = GetCurrentPlan(); local
545 if (!current_plan)
548 current_plan->WillStop();
677 ThreadPlan *current_plan = GetCurrentPlan(); local
734 current_plan->DoTraceLog ();
761 if (!current_plan->PlanExplainsStop(event_ptr))
763 if (current_plan->TracerExplainsStop())
772 ThreadPlan *plan_ptr = current_plan;
790 current_plan->WillStop();
793 while ((current_plan
1148 GetPreviousPlan(ThreadPlan *current_plan) argument
[all...]
H A DThreadPlan.cpp148 ThreadPlan::WillResume (StateType resume_state, bool current_plan) argument
152 if (current_plan)
176 return DoWillResume (resume_state, current_plan);
H A DThreadPlanBase.cpp220 ThreadPlanBase::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
H A DThreadPlanStepOut.cpp339 ThreadPlanStepOut::DoWillResume (StateType resume_state, bool current_plan) argument
347 if (current_plan)
H A DThreadPlanStepOverRange.cpp340 ThreadPlanStepOverRange::DoWillResume (lldb::StateType resume_state, bool current_plan) argument
345 if (resume_state == eStateStepping && current_plan)
H A DThreadPlanStepUntil.cpp344 ThreadPlanStepUntil::DoWillResume (StateType resume_state, bool current_plan) argument
346 if (current_plan)
H A DThreadPlanStepThrough.cpp226 ThreadPlanStepThrough::DoWillResume (StateType resume_state, bool current_plan) argument
/external/lldb/include/lldb/
H A Dlldb-private-interfaces.h36 typedef lldb::ThreadPlanSP (*ThreadPlanShouldStopHereCallback) (ThreadPlan *current_plan, Flags &flags, void *baton);

Completed in 115 milliseconds