reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overridden By

tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
   32   bool ShouldStop(Event *event_ptr) override = 0;
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
  115 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlan.cpp
  189 bool ThreadPlanNull::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanBase.cpp
   72 bool ThreadPlanBase::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanCallFunction.cpp
  349 bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
   59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanPython.cpp
   75 bool ThreadPlanPython::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
  158 bool ThreadPlanRunToAddress::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  143 bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
  125 bool ThreadPlanStepInstruction::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepOut.cpp
  317 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
  109 bool ThreadPlanStepOverBreakpoint::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
  126 bool ThreadPlanStepOverRange::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepThrough.cpp
  163 bool ThreadPlanStepThrough::ShouldStop(Event *event_ptr) {
tools/lldb/source/Target/ThreadPlanStepUntil.cpp
  263 bool ThreadPlanStepUntil::ShouldStop(Event *event_ptr) {

References

tools/lldb/source/Target/StopInfo.cpp
 1051       return m_plan_sp->ShouldStop(event_ptr);
tools/lldb/source/Target/Thread.cpp
  793           should_stop = plan_ptr->ShouldStop(event_ptr);
  831       should_stop = current_plan->ShouldStop(event_ptr);
  841         should_stop = current_plan->ShouldStop(event_ptr);
tools/lldb/source/Target/ThreadPlanStepOut.cpp
  333       return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr);
  338       return m_step_through_inline_plan_sp->ShouldStop(event_ptr);
  343       return m_step_out_further_plan_sp->ShouldStop(event_ptr);