| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | scripted_step.py | 113 def should_stop(self, event): member in SimpleStep 139 def should_stop(self, event): member in StepWithPlan 175 def should_stop(self, event): member in StepCheckingCondition 232 def should_stop(self, event): member in FinishPrintAndContinue
|
| /openbsd-src/gnu/llvm/lldb/source/Target/ |
| H A D | ThreadPlanPython.cpp | 78 bool should_stop = true; in ShouldStop() local 83 should_stop = script_interp->ScriptedThreadPlanShouldStop( in ShouldStop() 89 return should_stop; in ShouldStop()
|
| H A D | ThreadList.cpp | 285 bool should_stop = false; in ShouldStop() local 291 should_stop = true; in ShouldStop() 341 should_stop |= true; in ShouldStop() 354 should_stop = false; in ShouldStop() 355 } else if (!should_stop && !did_anybody_stop_for_a_reason) { in ShouldStop() 356 should_stop = true; in ShouldStop() 364 should_stop); in ShouldStop() 366 if (should_stop) { in ShouldStop() 373 return should_stop; in ShouldStop()
|
| H A D | UnixSignals.cpp | 192 bool &should_stop, in GetSignalInfo() argument 200 should_stop = signal.m_stop; in GetSignalInfo() 292 std::optional<bool> should_stop, in GetFilteredSignals() argument 309 if (should_stop && signal_stop != *should_stop) in GetFilteredSignals()
|
| H A D | Thread.cpp | 748 bool should_stop = true; in ShouldStop() local 836 should_stop = false; in ShouldStop() 845 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop() 857 if (should_stop) in ShouldStop() 870 should_stop = false; in ShouldStop() 885 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop() 886 LLDB_LOGF(log, "Base plan says should stop: %i.", should_stop); in ShouldStop() 895 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop() 897 should_stop); in ShouldStop() 899 if (should_stop) in ShouldStop() [all …]
|
| H A D | StopInfo.cpp | 96 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument 97 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 736 bool should_stop = ThreadPlanStepInstruction::ShouldStop(event_ptr); in ShouldStop() local 743 return should_stop; in ShouldStop() 1365 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument 1366 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
| H A D | Target.cpp | 2839 bool should_stop = false; in RunStopHooks() local 2916 if (!should_stop) in RunStopHooks() 2917 should_stop = this_should_stop; in RunStopHooks() 2931 if ((hooks_ran && !should_stop) || auto_continue) { in RunStopHooks() 3760 bool should_stop = script_interp->ScriptedStopHookHandleStop( in HandleStop() local 3763 return should_stop ? StopHookResult::KeepStopped in HandleStop()
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | ThreadPlanShouldStopHere.h | 43 ThreadPlanShouldStopHereCallback should_stop, in ThreadPlanShouldStopHereCallbacks() 45 should_stop_here_callback = should_stop; in ThreadPlanShouldStopHereCallbacks()
|
| H A D | UnixSignals.h | 40 bool &should_stop, bool &should_notify) const; 108 std::optional<bool> should_stop,
|
| H A D | StopInfo.h | 110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachThreadList.cpp | 470 uint32_t should_stop = false; in ShouldStop() local 472 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) { in ShouldStop() 473 should_stop = m_threads[idx]->ShouldStop(step_more); in ShouldStop() 475 return should_stop; in ShouldStop() 570 uint32_t should_stop = false; in GetThreadIndexForThreadStoppedWithSignal() local 572 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) { in GetThreadIndexForThreadStoppedWithSignal()
|
| /openbsd-src/gnu/llvm/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 395 bool should_stop = true; in ShouldStop() local 405 should_stop = InvokeCallback(context); in ShouldStop() 411 should_stop ? "stopping" : "continuing"); in ShouldStop() 414 return should_stop; in ShouldStop()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 128 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse() local 143 if (should_stop) in SendContinuePacketAndWaitForResponse()
|
| /openbsd-src/gnu/llvm/lldb/examples/python/scripted_process/ |
| H A D | scripted_process.py | 163 def should_stop(self): member in ScriptedProcess
|
| H A D | crashlog_scripted_process.py | 118 def should_stop(self) -> bool: member in CrashLogScriptedProcess
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1687 bool should_stop = true; in ScriptedThreadPlanShouldStop() local 1694 should_stop = LLDBSWIGPythonCallThreadPlan( in ScriptedThreadPlanShouldStop() 1699 return should_stop; in ScriptedThreadPlanShouldStop()
|
| /openbsd-src/gnu/llvm/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 503 // handle_stop will return a bool with the meaning "should_stop"...
|
| /openbsd-src/gnu/llvm/lldb/docs/use/ |
| H A D | python-reference.rst | 467 | ``should_stop`` | ``event``: `lldb.SBEvent` | If your plan wants to stop and return co… 483 your explains_stop and should_stop methods won't get called until the
|
| /openbsd-src/gnu/llvm/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 4717 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()
|