| /llvm-project-15.0.7/lldb/test/API/functionalities/conditional_break/ |
| H A D | conditional_break.py | 19 should_stop = True 24 should_stop = True 26 should_stop = False 29 return should_stop
|
| /llvm-project-15.0.7/lldb/unittests/Process/ |
| H A D | ProcessEventDataTest.cpp | 120 ThreadSP CreateThread(ProcessSP &process_sp, bool should_stop, in CreateThread() argument 131 should_stop; in CreateThread() 209 bool should_stop = in TEST_F() local 211 ASSERT_TRUE(should_stop == true && found_valid_stopinfo == true); in TEST_F() 218 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F() 219 ASSERT_TRUE(should_stop == false && found_valid_stopinfo == false); in TEST_F() 247 should_stop = event_data_sp->ShouldStop(event_sp.get(), found_valid_stopinfo); in TEST_F() 248 ASSERT_TRUE(should_stop == false && found_valid_stopinfo == true); in TEST_F()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | scripted_step.py | 115 def should_stop(self, event): member in SimpleStep 141 def should_stop(self, event): member in StepWithPlan 177 def should_stop(self, event): member in StepCheckingCondition 234 def should_stop(self, event): member in FinishPrintAndContinue
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/step_scripted/ |
| H A D | Steps.py | 11 def should_stop(self, event): member in StepWithChild 67 def should_stop(self, event): member in StepUntil 93 def should_stop(self, event): member in StepReportsStopOthers
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| 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 | 189 bool &should_stop, in GetSignalInfo() argument 197 should_stop = signal.m_stop; in GetSignalInfo() 289 llvm::Optional<bool> should_stop, in GetFilteredSignals() argument 306 if (should_stop && signal_stop != should_stop.value()) in GetFilteredSignals()
|
| H A D | ThreadList.cpp | 282 bool should_stop = false; in ShouldStop() local 288 should_stop = true; in ShouldStop() 333 should_stop |= true; in ShouldStop() 336 if (!should_stop && !did_anybody_stop_for_a_reason) { in ShouldStop() 337 should_stop = true; in ShouldStop() 345 should_stop); in ShouldStop() 347 if (should_stop) { in ShouldStop() 354 return should_stop; in ShouldStop()
|
| H A D | Thread.cpp | 733 bool should_stop = true; in ShouldStop() local 818 should_stop = false; in ShouldStop() 827 should_stop = plan_ptr->ShouldStop(event_ptr); in ShouldStop() 839 if (should_stop) in ShouldStop() 862 should_stop = current_plan->ShouldStop(event_ptr); 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 | 95 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument 96 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 1274 bool should_stop) { in CreateStopReasonWithBreakpointSiteID() argument 1275 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
| H A D | Target.cpp | 2743 bool should_stop = false; in RunStopHooks() local 2820 if (!should_stop) in RunStopHooks() 2821 should_stop = this_should_stop; in RunStopHooks() 2835 if ((hooks_ran && !should_stop) || auto_continue) { in RunStopHooks() 3663 bool should_stop = script_interp->ScriptedStopHookHandleStop( in HandleStop() local 3666 return should_stop ? StopHookResult::KeepStopped in HandleStop()
|
| /llvm-project-15.0.7/lldb/unittests/Signals/ |
| H A D | UnixSignalsTest.cpp | 82 bool should_suppress = false, should_stop = false, should_notify = false; in TEST() local 85 signals.GetSignalInfo(signo, should_suppress, should_stop, should_notify); in TEST() 88 EXPECT_EQ(false, should_stop); in TEST()
|
| /llvm-project-15.0.7/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 | 40 bool &should_stop, bool &should_notify) const; 108 llvm::Optional<bool> should_stop,
|
| H A D | StopInfo.h | 110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/ |
| H A D | MachThreadList.cpp | 470 uint32_t should_stop = false; in ShouldStop() local 472 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) { in ShouldStop() 473 should_stop = m_threads[idx]->ShouldStop(step_more); in ShouldStop() 475 return should_stop; in ShouldStop() 570 uint32_t should_stop = false; in GetThreadIndexForThreadStoppedWithSignal() local 572 for (uint32_t idx = 0; !should_stop && idx < num_threads; ++idx) { in GetThreadIndexForThreadStoppedWithSignal()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/completion/ |
| H A D | thread_plan_script.py | 16 def should_stop(self, event): member in PushPlanStack
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/ |
| H A D | wrap_step_over.py | 19 def should_stop(self, event): member in WrapStepOver
|
| /llvm-project-15.0.7/lldb/source/Breakpoint/ |
| H A D | BreakpointLocation.cpp | 395 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()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/ |
| H A D | invalid_scripted_process.py | 32 def should_stop(self) -> bool: member in InvalidScriptedProcess
|
| H A D | dummy_scripted_process.py | 36 def should_stop(self) -> bool: member in DummyScriptedProcess
|
| H A D | stack_core_scripted_process.py | 88 def should_stop(self) -> bool: member in StackCoreScriptedProcess
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteClientBase.cpp | 129 const bool should_stop = ShouldStop(signals, response); in SendContinuePacketAndWaitForResponse() local 144 if (should_stop) in SendContinuePacketAndWaitForResponse()
|
| /llvm-project-15.0.7/lldb/examples/python/scripted_process/ |
| H A D | scripted_process.py | 161 def should_stop(self): member in ScriptedProcess
|
| H A D | crashlog_scripted_process.py | 92 def should_stop(self) -> bool: member in CrashLogScriptedProcess
|
| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 1776 bool should_stop = true; in ScriptedThreadPlanShouldStop() local 1783 should_stop = LLDBSWIGPythonCallThreadPlan( in ScriptedThreadPlanShouldStop() 1788 return should_stop; in ScriptedThreadPlanShouldStop()
|