Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp82 bool should_stop = true; in ShouldStop() local
87 should_stop = script_interp->ScriptedThreadPlanShouldStop( in ShouldStop()
93 return should_stop; in ShouldStop()
H A DUnixSignals.cpp188 bool &should_stop, in GetSignalInfo() argument
196 should_stop = signal.m_stop; in GetSignalInfo()
288 llvm::Optional<bool> should_stop, in GetFilteredSignals() argument
306 if (should_stop.hasValue() && signal_stop != should_stop.getValue()) in GetFilteredSignals()
H A DThreadList.cpp281 bool should_stop = false; in ShouldStop() local
287 should_stop = true; in ShouldStop()
332 should_stop |= true; in ShouldStop()
335 if (!should_stop && !did_anybody_stop_for_a_reason) { in ShouldStop()
336 should_stop = true; in ShouldStop()
344 should_stop); in ShouldStop()
346 if (should_stop) { in ShouldStop()
353 return should_stop; in ShouldStop()
H A DThread.cpp734 bool should_stop = true; in ShouldStop() local
819 should_stop = false; in ShouldStop()
828 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
840 if (should_stop) in ShouldStop()
863 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
875 should_stop); in ShouldStop()
877 if (should_stop) in ShouldStop()
906 should_stop = false; in ShouldStop()
915 if (should_stop) { in ShouldStop()
952 should_stop); in ShouldStop()
[all …]
H A DStopInfo.cpp94 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument
95 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
1166 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument
1167 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
H A DTarget.cpp2664 bool should_stop = false; in RunStopHooks() local
2741 if (!should_stop) in RunStopHooks()
2742 should_stop = this_should_stop; in RunStopHooks()
2756 if ((hooks_ran && !should_stop) || auto_continue) { in RunStopHooks()
3461 bool should_stop = script_interp->ScriptedStopHookHandleStop( in HandleStop() local
3464 return should_stop ? StopHookResult::KeepStopped in HandleStop()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DUnixSignals.h39 bool &should_stop, bool &should_notify) const;
92 llvm::Optional<bool> should_stop,
H A DThreadPlanShouldStopHere.h43 ThreadPlanShouldStopHereCallback should_stop, in ThreadPlanShouldStopHereCallbacks()
45 should_stop_here_callback = should_stop; in ThreadPlanShouldStopHereCallbacks()
H A DStopInfo.h110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.cpp66 llvm::Optional<unsigned long long> should_stop = in ShouldStop() local
69 if (!should_stop) in ShouldStop()
72 return static_cast<bool>(*should_stop); in ShouldStop()
H A DScriptInterpreterPython.cpp1899 bool should_stop = true; in ScriptedThreadPlanShouldStop() local
1906 should_stop = LLDBSWIGPythonCallThreadPlan( in ScriptedThreadPlanShouldStop()
1911 return should_stop; in ScriptedThreadPlanShouldStop()
/freebsd-13.1/contrib/llvm-project/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()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteClientBase.cpp129 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse() local
144 if (should_stop) in SendContinuePacketAndWaitForResponse()
/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-wrapper.swig637 // handle_stop will return a bool with the meaning "should_stop"...
/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4541 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()