| /freebsd-14.2/contrib/llvm-project/lldb/source/Target/ |
| H A D | ThreadList.cpp | 285 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 D | ThreadPlanPython.cpp | 78 bool should_stop = true; in ShouldStop() local 83 should_stop = script_interp->ScriptedThreadPlanShouldStop( in ShouldStop() 89 return should_stop; in ShouldStop()
|
| H A D | UnixSignals.cpp | 237 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 D | Thread.cpp | 725 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 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() 1371 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument 1372 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
| H A D | Target.cpp | 2953 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 D | ThreadPlanShouldStopHere.h | 43 ThreadPlanShouldStopHereCallback should_stop, in ThreadPlanShouldStopHereCallbacks() 45 should_stop_here_callback = should_stop; in ThreadPlanShouldStopHereCallbacks()
|
| H A D | UnixSignals.h | 63 bool GetSignalInfo(int32_t signo, bool &should_suppress, bool &should_stop, 139 std::optional<bool> should_stop,
|
| H A D | StopInfo.h | 110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 396 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 D | GDBRemoteClientBase.cpp | 128 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 D | ScriptInterpreterPython.cpp | 1599 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 D | python-wrapper.swig | 492 // handle_stop will return a bool with the meaning "should_stop"...
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectTarget.cpp | 4996 Return Value: The method returns "should_stop". If should_stop is false in CommandObjectTargetStopHookAdd()
|