/external/lldb/source/Target/ |
ThreadPlan.cpp | 1 //===-- 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) : 52 ThreadPlan::~ThreadPlan() 57 ThreadPlan::PlanExplainsStop (Event *event_ptr) 72 ThreadPlan::IsPlanComplete () 79 ThreadPlan::SetPlanComplete (bool success [all...] |
ThreadPlanStepOverBreakpoint.cpp | 30 ThreadPlan (ThreadPlan::eKindStepOverBreakpoint, "Step over breakpoint trap", 131 ThreadPlan::MischiefManaged ();
|
ThreadPlanRunToAddress.cpp | 37 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 ();
|
ThreadPlanStepInstruction.cpp | 41 ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote), 219 ThreadPlan::MischiefManaged ();
|
ThreadPlanShouldStopHere.cpp | 26 ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner, ThreadPlanShouldStopHereCallback callback, void *baton) :
|
ThreadPlanStepThrough.cpp | 36 ThreadPlan (ThreadPlan::eKindStepThrough, "Step through trampolines and prologues", thread, eVoteNoOpinion, eVoteNoOpinion), 262 ThreadPlan::MischiefManaged ();
|
Android.mk | 35 ThreadPlan.cpp \
|
ThreadPlanBase.cpp | 37 ThreadPlan(ThreadPlan::eKindBase, "base plan", thread, eVoteYes, eVoteNoOpinion)
|
Thread.cpp | 30 #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_plan = plan_ptr [all...] |
ThreadPlanCallFunction.cpp | 137 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/ |
ThreadPlanShouldStopHere.h | 17 #include "lldb/Target/ThreadPlan.h" 47 ThreadPlanShouldStopHere (ThreadPlan *owner, 80 ThreadPlan *m_owner;
|
ThreadPlan.h | 1 //===-- 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 : 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 can see and modify thes [all...] |
ThreadPlanBase.h | 19 #include "lldb/Target/ThreadPlan.h" 30 class ThreadPlanBase : public ThreadPlan
|
ThreadPlanStepInstruction.h | 19 #include "lldb/Target/ThreadPlan.h" 23 class ThreadPlanStepInstruction : public ThreadPlan
|
ThreadPlanStepOverBreakpoint.h | 18 #include "lldb/Target/ThreadPlan.h" 22 class ThreadPlanStepOverBreakpoint : public ThreadPlan
|
ThreadPlanRunToAddress.h | 20 #include "lldb/Target/ThreadPlan.h" 24 class ThreadPlanRunToAddress : public ThreadPlan
|
ThreadPlanStepThrough.h | 18 #include "lldb/Target/ThreadPlan.h" 22 class ThreadPlanStepThrough : public ThreadPlan
|
Thread.h | 457 // 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); [all...] |
ThreadPlanStepInRange.h | 58 DefaultShouldStopHereCallback (ThreadPlan *current_plan, Flags &flags, void *baton);
|
ThreadPlanStepOut.h | 18 #include "lldb/Target/ThreadPlan.h" 22 class ThreadPlanStepOut : public ThreadPlan
|
ThreadPlanStepRange.h | 20 #include "lldb/Target/ThreadPlan.h" 25 class ThreadPlanStepRange : public ThreadPlan
|
ThreadPlanStepUntil.h | 18 #include "lldb/Target/ThreadPlan.h" 23 class ThreadPlanStepUntil : public ThreadPlan
|
ThreadPlanTracer.h | 26 friend class ThreadPlan;
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
AppleThreadPlanStepThroughObjCTrampoline.h | 20 #include "lldb/Target/ThreadPlan.h" 26 class AppleThreadPlanStepThroughObjCTrampoline : public ThreadPlan
|
/external/lldb/include/lldb/Expression/ |
ClangFunction.h | 448 /// A ThreadPlan for executing the function. 450 static ThreadPlan * 484 /// A ThreadPlan for executing the function. 486 ThreadPlan *
|