/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadList.cpp | 284 bool should_stop = false; in ShouldStop() local 290 should_stop = true; in ShouldStop() 340 should_stop |= true; in ShouldStop() 353 should_stop = false; in ShouldStop() 354 } else if (!should_stop && !did_anybody_stop_for_a_reason) { in ShouldStop() 355 should_stop = true; in ShouldStop() 363 should_stop); in ShouldStop() 365 if (should_stop) { in ShouldStop() 372 return should_stop; in ShouldStop()
|
H A D | ThreadPlanPython.cpp | 100 bool should_stop = true; in ShouldStop() local 108 should_stop = *should_stop_or_err; in ShouldStop() 110 return should_stop; in ShouldStop()
|
H A D | UnixSignals.cpp | 237 bool &should_stop, bool &should_notify) const { in GetNextSignalNumber() 244 should_stop = signal.m_stop; in GetSignalInfo() 335 std::optional<bool> should_stop, in GetSignalAtIndex() 352 if (should_stop && signal_stop != *should_stop) in GetFilteredSignals() 242 GetSignalInfo(int32_t signo,bool & should_suppress,bool & should_stop,bool & should_notify) const GetSignalInfo() argument 342 GetFilteredSignals(std::optional<bool> should_suppress,std::optional<bool> should_stop,std::optional<bool> should_notify) GetFilteredSignals() argument
|
H A D | Thread.cpp | 732 bool should_stop = true; in ShouldStop() local 820 should_stop = false; in ShouldStop() 829 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop() 841 if (should_stop) in ShouldStop() 854 should_stop = false; in ShouldStop() 869 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop() 870 LLDB_LOGF(log, "Base plan says should stop: %i.", should_stop); in ShouldStop() 879 should_stop = current_plan->ShouldStop(event_ptr); in ShouldStop() 881 should_stop); in ShouldStop() 883 if (should_stop) in ShouldStop() [all …]
|
H A D | StopInfo.cpp | 97 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() 1373 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument 1374 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
H A D | Target.cpp | 2941 bool should_stop = false; in RunStopHooks() local 3018 if (!should_stop) in RunStopHooks() 3019 should_stop = this_should_stop; in RunStopHooks() 3033 if ((hooks_ran && !should_stop) || auto_continue) { in RunStopHooks() 3864 bool should_stop = script_interp->ScriptedStopHookHandleStop( in HandleStop() local 3867 return should_stop ? StopHookResult::KeepStopped in HandleStop()
|
/freebsd/contrib/llvm-project/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 | 55 /// \param[out] should_stop 63 bool GetSignalInfo(int32_t signo, bool &should_suppress, bool &should_stop, 139 std::optional<bool> should_stop,
|
H A D | StopInfo.h | 115 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointLocation.cpp | 388 bool should_stop = true; in ShouldStop() local 398 should_stop = InvokeCallback(context); in ShouldStop() 404 should_stop ? "stopping" : "continuing"); in ShouldStop() 407 return should_stop; in ShouldStop()
|
/freebsd/contrib/llvm-project/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()
|
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-wrapper.swig | 365 // handle_stop will return a bool with the meaning "should_stop"...
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectTarget.cpp | 4896 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()
|