Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadList.cpp270 bool should_stop = false; in ShouldStop() local
276 should_stop = true; in ShouldStop()
326 should_stop |= true; in ShouldStop()
339 should_stop = false; in ShouldStop()
340 } else if (!should_stop && !did_anybody_stop_for_a_reason) { in ShouldStop()
341 should_stop = true; in ShouldStop()
349 should_stop); in ShouldStop()
351 if (should_stop) { in ShouldStop()
358 return should_stop; in ShouldStop()
H A DScriptedThreadPlan.cpp97 bool should_stop = true; in ShouldStop() local
105 should_stop = *should_stop_or_err; in ShouldStop()
107 return should_stop; in ShouldStop()
H A DUnixSignals.cpp243 bool &should_stop, bool &should_notify) const { in GetSignalInfo() argument
250 should_stop = signal.m_stop; in GetSignalInfo()
341 std::optional<bool> should_stop, in GetFilteredSignals() argument
358 if (should_stop && signal_stop != *should_stop) in GetFilteredSignals()
H A DThread.cpp761 bool should_stop = true; in ShouldStop() local
848 should_stop = false; in ShouldStop()
863 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop()
875 if (should_stop) in ShouldStop()
888 should_stop = false; in ShouldStop()
903 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
904 LLDB_LOGF(log, "Base plan says should stop: %i.", should_stop); in ShouldStop()
913 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop()
915 should_stop); in ShouldStop()
917 if (should_stop) in ShouldStop()
[all …]
H A DStopInfo.cpp98 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument
99 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint()
761 bool should_stop = ThreadPlanStepInstruction::ShouldStop(event_ptr); in ShouldStop() local
768 return should_stop; in ShouldStop()
1483 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument
1484 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
H A DTarget.cpp3129 bool should_stop = false; in RunStopHooks() local
3165 should_stop = true; in RunStopHooks()
3192 if (requested_continue && !should_stop) { in RunStopHooks()
/freebsd/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.h65 bool GetSignalInfo(int32_t signo, bool &should_suppress, bool &should_stop,
141 std::optional<bool> should_stop,
H A DStopInfo.h141 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp381 bool should_stop = true; in ShouldStop() local
391 should_stop = InvokeCallback(context); in ShouldStop()
397 should_stop ? "stopping" : "continuing"); in ShouldStop()
400 return should_stop; in ShouldStop()
/freebsd/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/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp4922 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()