| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 163 m_should_stop = bp_site_sp->ShouldStop(&context); in ShouldStopSynchronous() 271 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoBreakpoint 760 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoWatchpoint::ThreadPlanStepOverWatchpoint 761 bool should_stop = ThreadPlanStepInstruction::ShouldStop(event_ptr); in ShouldStop() 831 m_should_stop = wp_sp->ShouldStop(&context); in ShouldStopSynchronous() 887 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoWatchpoint 1087 bool ShouldStop(Event *event_ptr) override { return IsShouldStopSignal(); } in ShouldStop() function in lldb_private::StopInfoUnixSignal 1330 bool ShouldStop(Event *event_ptr) override { in ShouldStop() function in lldb_private::StopInfoThreadPlan 1332 return m_plan_sp->ShouldStop(event_ptr); in ShouldStop() 1334 return StopInfo::ShouldStop(event_ptr); in ShouldStop() [all …]
|
| H A D | ThreadPlanBase.cpp | 73 bool ThreadPlanBase::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanBase 148 if (stop_info_sp->ShouldStop(event_ptr)) { in ShouldStop()
|
| H A D | ThreadPlanStepOut.cpp | 377 bool ThreadPlanStepOut::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanStepOut 393 return m_step_out_to_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop() 398 return m_step_through_inline_plan_sp->ShouldStop(event_ptr); in ShouldStop() 403 return m_step_out_further_plan_sp->ShouldStop(event_ptr); in ShouldStop()
|
| H A D | ScriptedThreadPlan.cpp | 92 bool ScriptedThreadPlan::ShouldStop(Event *event_ptr) { in ShouldStop() function in ScriptedThreadPlan 99 auto should_stop_or_err = m_interface->ShouldStop(event_ptr); in ShouldStop()
|
| H A D | ThreadPlanCallOnFunctionExit.cpp | 59 bool ThreadPlanCallOnFunctionExit::ShouldStop(Event *event_ptr) { in ShouldStop() function in ThreadPlanCallOnFunctionExit
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleThreadPlanStepThroughObjCTrampoline.h | 40 bool ShouldStop(Event *event_ptr) override; 93 bool ShouldStop(Event *event_ptr) override;
|
| H A D | AppleThreadPlanStepThroughObjCTrampoline.cpp | 116 bool AppleThreadPlanStepThroughObjCTrampoline::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughObjCTrampoline 348 // done, we'll get called to figure out what to do in ShouldStop... in DoPlanExplainsStop() 359 bool AppleThreadPlanStepThroughDirectDispatch::ShouldStop(Event *event_ptr) { in ShouldStop() function in AppleThreadPlanStepThroughDirectDispatch 364 const bool step_out_should_stop = ThreadPlanStepOut::ShouldStop(event_ptr); in ShouldStop()
|
| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | WatchpointResource.cpp | 94 bool WatchpointResource::ShouldStop(StoppointCallbackContext *context) { in ShouldStop() function in WatchpointResource 108 return constituents_copy.ShouldStop(context); in ShouldStop()
|
| H A D | BreakpointLocationCollection.cpp | 117 bool BreakpointLocationCollection::ShouldStop( in ShouldStop() function in BreakpointLocationCollection 127 if (cur_loc_sp->ShouldStop(context)) in ShouldStop()
|
| H A D | BreakpointSiteList.cpp | |
| H A D | BreakpointSite.cpp | 48 bool BreakpointSite::ShouldStop(StoppointCallbackContext *context) { in ShouldStop() function in BreakpointSite 59 return constituents_copy.ShouldStop(context); in ShouldStop()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadPlan.h | 377 virtual bool ShouldStop(Event *event_ptr) = 0; 605 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanCallOnFunctionExit.h | 38 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanStepOverRange.h | 33 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanStepInstruction.h | 27 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanBase.h | 30 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanRunToAddress.h | 36 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanStepOverBreakpoint.h | 25 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanStepThrough.h | 23 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ScriptedThreadPlan.h | 38 bool ShouldStop(Event *event_ptr) override;
|
| H A D | ThreadPlanStepUntil.h | 23 bool ShouldStop(Event *event_ptr) override;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/ |
| H A D | ScriptedThreadPlanInterface.h | 26 virtual llvm::Expected<bool> ShouldStop(Event *event) { return true; } in ShouldStop() function
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/ |
| H A D | ScriptedThreadPlanPythonInterface.h | 40 llvm::Expected<bool> ShouldStop(Event *event) override;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | StopPointSiteList.h | 227 bool ShouldStop(StoppointCallbackContext *context, in ShouldStop() function 233 return site_sp->ShouldStop(context); in ShouldStop()
|
| H A D | StoppointSite.h | 41 virtual bool ShouldStop(StoppointCallbackContext* context) = 0; in GetHardwareIndex()
|