Searched refs:ThreadPlan (Results 1 - 25 of 39) sorted by relevance

12

/external/lldb/source/Target/
H A DThreadPlan.cpp1 //===-- ThreadPlan.cpp ------------------------------------------*- C++ -*-===//
12 #include "lldb/Target/ThreadPlan.h"
30 // ThreadPlan constructor
32 ThreadPlan::ThreadPlan(ThreadPlanKind kind, const char *name, Thread &thread, Vote stop_vote, Vote run_vote) : function in class:ThreadPlan
52 ThreadPlan::~ThreadPlan()
57 ThreadPlan::PlanExplainsStop (Event *event_ptr)
72 ThreadPlan::IsPlanComplete ()
79 ThreadPlan
[all...]
H A DThreadPlanStepOverBreakpoint.cpp30 ThreadPlan (ThreadPlan::eKindStepOverBreakpoint, "Step over breakpoint trap",
131 ThreadPlan::MischiefManaged ();
H A DThreadPlanRunToAddress.cpp37 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
52 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
67 ThreadPlan (ThreadPlan::eKindRunToAddress, "Run to address plan", thread, eVoteNoOpinion, eVoteNoOpinion),
246 ThreadPlan::MischiefManaged ();
H A DThreadPlanStepInstruction.cpp41 ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote),
219 ThreadPlan::MischiefManaged ();
H A DThreadPlanShouldStopHere.cpp26 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner, ThreadPlanShouldStopHereCallback callback, void *baton) :
H A DThreadPlanStepThrough.cpp36 ThreadPlan (ThreadPlan::eKindStepThrough, "Step through trampolines and prologues", thread, eVoteNoOpinion, eVoteNoOpinion),
262 ThreadPlan::MischiefManaged ();
H A DAndroid.mk35 ThreadPlan.cpp \
H A DThreadPlanBase.cpp37 ThreadPlan(ThreadPlan::eKindBase, "base plan", thread, eVoteYes, eVoteNoOpinion)
H A DThread.cpp30 #include "lldb/Target/ThreadPlan.h"
540 ThreadPlan *current_plan = GetCurrentPlan();
575 ThreadPlan *cur_plan = GetCurrentPlan();
577 if (cur_plan->GetKind() != ThreadPlan::eKindStepOverBreakpoint)
633 ThreadPlan *plan_ptr = GetCurrentPlan();
677 ThreadPlan *current_plan = GetCurrentPlan();
772 ThreadPlan *plan_ptr = current_plan;
785 ThreadPlan *prev_plan_ptr = GetPreviousPlan (plan_ptr);
879 ThreadPlan *plan_ptr = GetCurrentPlan();
883 ThreadPlan *examined_pla
[all...]
H A DThreadPlanCallFunction.cpp137 ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion),
203 ThreadPlan (ThreadPlan::eKindCallFunction, "Call function plan", thread, eVoteNoOpinion, eVoteNoOpinion),
361 return ThreadPlan::ShouldReportStop(event_ptr);
550 ThreadPlan::MischiefManaged ();
/external/lldb/include/lldb/Target/
H A DThreadPlanShouldStopHere.h17 #include "lldb/Target/ThreadPlan.h"
47 ThreadPlanShouldStopHere (ThreadPlan *owner,
80 ThreadPlan *m_owner;
H A DThreadPlan.h1 //===-- ThreadPlan.h --------------------------------------------*- C++ -*-===//
30 // ThreadPlan:
87 // Over the lifetime of the plan, various methods of the ThreadPlan are then called in response to changes of state in
142 // originally thought "MasterPlan-ness" would need to be a fixed characteristic of a ThreadPlan, in which case you needed
156 // SetPlanComplete and the ThreadPlan implementation of MischiefManaged will return "true", without your having
225 class ThreadPlan : class in namespace:lldb_private
259 ThreadPlan (ThreadPlanKind kind,
266 ~ThreadPlan();
378 // This is the wrapper for DoWillResume that does generic ThreadPlan logic, then
529 // Classes that inherit from ThreadPlan ca
[all...]
H A DThreadPlanBase.h19 #include "lldb/Target/ThreadPlan.h"
30 class ThreadPlanBase : public ThreadPlan
H A DThreadPlanStepInstruction.h19 #include "lldb/Target/ThreadPlan.h"
23 class ThreadPlanStepInstruction : public ThreadPlan
H A DThreadPlanStepOverBreakpoint.h18 #include "lldb/Target/ThreadPlan.h"
22 class ThreadPlanStepOverBreakpoint : public ThreadPlan
H A DThread.h457 // machinery uses to run the target. ThreadPlan.h provides more details on
470 // than the thread containing the ThreadPlan.
473 // ThreadPlan and Co. to use the latter. That is made more annoying to do because there's
627 /// See standard meanings for the stop & run votes in ThreadPlan.h.
713 ThreadPlan *
729 PlanIsBasePlan (ThreadPlan *plan_ptr);
768 IsThreadPlanDone (ThreadPlan *plan);
782 WasThreadPlanDiscarded (ThreadPlan *plan);
820 DiscardThreadPlansUpToPlan (ThreadPlan *up_to_plan_ptr);
970 friend class ThreadPlan;
[all...]
H A DThreadPlanRunToAddress.h20 #include "lldb/Target/ThreadPlan.h"
24 class ThreadPlanRunToAddress : public ThreadPlan
H A DThreadPlanStepInRange.h58 DefaultShouldStopHereCallback (ThreadPlan *current_plan, Flags &flags, void *baton);
H A DThreadPlanStepOut.h18 #include "lldb/Target/ThreadPlan.h"
22 class ThreadPlanStepOut : public ThreadPlan
H A DThreadPlanStepRange.h20 #include "lldb/Target/ThreadPlan.h"
25 class ThreadPlanStepRange : public ThreadPlan
H A DThreadPlanStepThrough.h18 #include "lldb/Target/ThreadPlan.h"
22 class ThreadPlanStepThrough : public ThreadPlan
H A DThreadPlanStepUntil.h18 #include "lldb/Target/ThreadPlan.h"
23 class ThreadPlanStepUntil : public ThreadPlan
H A DThreadPlanTracer.h26 friend class ThreadPlan;
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleThreadPlanStepThroughObjCTrampoline.h20 #include "lldb/Target/ThreadPlan.h"
26 class AppleThreadPlanStepThroughObjCTrampoline : public ThreadPlan
/external/lldb/include/lldb/Expression/
H A DClangFunction.h448 /// A ThreadPlan for executing the function.
450 static ThreadPlan *
484 /// A ThreadPlan for executing the function.
486 ThreadPlan *

Completed in 238 milliseconds

12