HomeSort by relevance Sort by last modified time
    Searched defs:ShouldStop (Results 1 - 25 of 29) sorted by null

1 2

  /external/lldb/source/Plugins/Process/POSIX/
POSIXStopInfo.cpp 34 POSIXLimboStopInfo::ShouldStop(Event *event_ptr)
80 POSIXNewThreadStopInfo::ShouldStop(Event *event_ptr)
  /external/lldb/source/Target/
ThreadPlanBase.cpp 98 ThreadPlanBase::ShouldStop (Event *event_ptr)
168 if (stop_info_sp->ShouldStop(event_ptr))
ThreadPlanStepInstruction.cpp 109 ThreadPlanStepInstruction::ShouldStop (Event *event_ptr)
ThreadPlanStepOverBreakpoint.cpp 77 ThreadPlanStepOverBreakpoint::ShouldStop (Event *event_ptr)
ThreadPlanRunToAddress.cpp 197 ThreadPlanRunToAddress::ShouldStop (Event *event_ptr)
ThreadPlanStepThrough.cpp 155 ThreadPlanStepThrough::ShouldStop (Event *event_ptr)
ThreadPlanStepUntil.cpp 317 ThreadPlanStepUntil::ShouldStop (Event *event_ptr)
ThreadPlan.cpp 258 ThreadPlanNull::ShouldStop (Event *event_ptr)
ThreadPlanStepInRange.cpp 94 ThreadPlanStepInRange::ShouldStop (Event *event_ptr)
ThreadPlanStepOut.cpp 267 ThreadPlanStepOut::ShouldStop (Event *event_ptr)
305 return m_step_out_plan_sp->ShouldStop(event_ptr);
319 return m_step_through_inline_plan_sp->ShouldStop(event_ptr);
ThreadList.cpp 247 ThreadList::ShouldStop (Event *event_ptr)
253 // The ShouldStop method of the threads can do a whole lot of work,
282 // we start running the ShouldStop, because one thread's ShouldStop could destroy information (like deleting a
298 const bool thread_should_stop = thread_sp->ShouldStop(event_ptr);
ThreadPlanCallFunction.cpp 430 log->Printf("ThreadPlanCallFunction::PlanExplainsStop: we are ignoring breakpoints, overriding breakpoint stop info ShouldStop, returning true");
437 log->Printf("ThreadPlanCallFunction::PlanExplainsStop: we are not ignoring breakpoints, overriding breakpoint stop info ShouldStop, returning true");
476 ThreadPlanCallFunction::ShouldStop (Event *event_ptr)
601 // catcher breakpoint, but in this case we can't let that happen, so force the ShouldStop here.
ThreadPlanStepOverRange.cpp 69 ThreadPlanStepOverRange::ShouldStop (Event *event_ptr)
  /external/lldb/include/lldb/Breakpoint/
StoppointLocation.h 93 ShouldStop (StoppointCallbackContext *context)
  /external/lldb/include/lldb/Target/
StopInfo.h 187 // the thread to continue if desired. The ShouldStop method should not do anything
190 // The PerformAction will always get called before the ShouldStop. This is done by the
193 ShouldStop (Event *event_ptr)
  /external/lldb/source/Breakpoint/
BreakpointLocationCollection.cpp 138 BreakpointLocationCollection::ShouldStop (StoppointCallbackContext *context)
140 bool shouldStop = false;
144 if (GetByIndex(i)->ShouldStop(context))
145 shouldStop = true;
147 return shouldStop;
BreakpointSite.cpp 61 BreakpointSite::ShouldStop (StoppointCallbackContext *context)
64 return m_owners.ShouldStop (context);
BreakpointLocationList.cpp 51 BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id)
59 return bp->ShouldStop (context);
BreakpointSiteList.cpp 54 BreakpointSiteList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t site_id)
62 return site_sp->ShouldStop (context);
WatchpointList.cpp 240 WatchpointList::ShouldStop (StoppointCallbackContext *context, lldb::watch_id_t watch_id)
249 return wp_sp->ShouldStop (context);
BreakpointLocation.cpp 435 BreakpointLocation::ShouldStop (StoppointCallbackContext *context)
451 // We only run synchronous callbacks in ShouldStop:
Watchpoint.cpp 186 Watchpoint::ShouldStop (StoppointCallbackContext *context)
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleThreadPlanStepThroughObjCTrampoline.cpp 144 AppleThreadPlanStepThroughObjCTrampoline::ShouldStop (Event *event_ptr)
  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ThreadKDP.cpp 99 ThreadKDP::ShouldStop (bool &step_more)
  /external/lldb/source/Plugins/Process/gdb-remote/
ThreadGDBRemote.cpp 151 ThreadGDBRemote::ShouldStop (bool &step_more)

Completed in 616 milliseconds

1 2