Home
last modified time | relevance | path

Searched refs:should_stop (Results 1 – 19 of 19) sorted by relevance

/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dscripted_step.py113 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 DThreadPlanPython.cpp78 bool should_stop = true; in ShouldStop() local
83 should_stop = script_interp->ScriptedThreadPlanShouldStop( in ShouldStop()
89 return should_stop; in ShouldStop()
H A DThreadList.cpp285 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 DUnixSignals.cpp192 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 DThread.cpp748 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 DStopInfo.cpp96 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 DTarget.cpp2839 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 DThreadPlanShouldStopHere.h43 ThreadPlanShouldStopHereCallback should_stop, in ThreadPlanShouldStopHereCallbacks()
45 should_stop_here_callback = should_stop; in ThreadPlanShouldStopHereCallbacks()
H A DUnixSignals.h40 bool &should_stop, bool &should_notify) const;
108 std::optional<bool> should_stop,
H A DStopInfo.h110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp470 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 DBreakpointLocation.cpp395 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 DGDBRemoteClientBase.cpp128 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 Dscripted_process.py163 def should_stop(self): member in ScriptedProcess
H A Dcrashlog_scripted_process.py118 def should_stop(self) -> bool: member in CrashLogScriptedProcess
/openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1687 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 Dpython-wrapper.swig503 // handle_stop will return a bool with the meaning "should_stop"...
/openbsd-src/gnu/llvm/lldb/docs/use/
H A Dpython-reference.rst467 | ``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 DCommandObjectTarget.cpp4717 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()