Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
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 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 DUnixSignals.cpp237 bool &should_stop, bool &should_notify) const { in GetSignalInfo() argument
244 should_stop = signal.m_stop; in GetSignalInfo()
335 std::optional<bool> should_stop, in GetFilteredSignals() argument
352 if (should_stop && signal_stop != *should_stop) in GetFilteredSignals()
H A DThread.cpp725 bool should_stop = true; in ShouldStop() local
813 should_stop = false; in ShouldStop()
822 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
834 if (should_stop) in ShouldStop()
847 should_stop = false; in ShouldStop()
874 should_stop); in ShouldStop()
876 if (should_stop) in ShouldStop()
905 should_stop = false; in ShouldStop()
914 if (should_stop) { in ShouldStop()
951 should_stop); in ShouldStop()
[all …]
H A DStopInfo.cpp97 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument
98 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
740 bool should_stop = ThreadPlanStepInstruction::ShouldStop(event_ptr); in ShouldStop() local
747 return should_stop; in ShouldStop()
1371 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument
1372 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
H A DTarget.cpp2953 bool should_stop = false; in RunStopHooks() local
3030 if (!should_stop) in RunStopHooks()
3031 should_stop = this_should_stop; in RunStopHooks()
3045 if ((hooks_ran && !should_stop) || auto_continue) { in RunStopHooks()
3876 bool should_stop = script_interp->ScriptedStopHookHandleStop( in HandleStop() local
3879 return should_stop ? StopHookResult::KeepStopped in HandleStop()
/freebsd-14.2/contrib/llvm-project/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.h63 bool GetSignalInfo(int32_t signo, bool &should_suppress, bool &should_stop,
139 std::optional<bool> should_stop,
H A DStopInfo.h110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp396 bool should_stop = true; in ShouldStop() local
406 should_stop = InvokeCallback(context); in ShouldStop()
412 should_stop ? "stopping" : "continuing"); in ShouldStop()
415 return should_stop; in ShouldStop()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1599 bool should_stop = true; in ScriptedThreadPlanShouldStop() local
1606 should_stop = SWIGBridge::LLDBSWIGPythonCallThreadPlan( in ScriptedThreadPlanShouldStop()
1611 return should_stop; in ScriptedThreadPlanShouldStop()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig492 // handle_stop will return a bool with the meaning "should_stop"...
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4996 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()