Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/lldb/test/API/functionalities/conditional_break/
H A Dconditional_break.py19 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 DProcessEventDataTest.cpp120 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 Dscripted_step.py115 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 DSteps.py11 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 DThreadPlanPython.cpp78 bool should_stop = true; in ShouldStop() local
83 should_stop = script_interp->ScriptedThreadPlanShouldStop( in ShouldStop()
89 return should_stop; in ShouldStop()
H A DUnixSignals.cpp189 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 DThreadList.cpp282 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 DThread.cpp733 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 DStopInfo.cpp95 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 DTarget.cpp2743 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 DUnixSignalsTest.cpp82 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 DThreadPlanShouldStopHere.h43 ThreadPlanShouldStopHereCallback should_stop, in ThreadPlanShouldStopHereCallbacks()
45 should_stop_here_callback = should_stop; in ThreadPlanShouldStopHereCallbacks()
H A DUnixSignals.h40 bool &should_stop, bool &should_notify) const;
108 llvm::Optional<bool> should_stop,
H A DStopInfo.h110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DMachThreadList.cpp470 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 Dthread_plan_script.py16 def should_stop(self, event): member in PushPlanStack
/llvm-project-15.0.7/lldb/test/API/functionalities/thread_plan/
H A Dwrap_step_over.py19 def should_stop(self, event): member in WrapStepOver
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/test/API/functionalities/scripted_process/
H A Dinvalid_scripted_process.py32 def should_stop(self) -> bool: member in InvalidScriptedProcess
H A Ddummy_scripted_process.py36 def should_stop(self) -> bool: member in DummyScriptedProcess
H A Dstack_core_scripted_process.py88 def should_stop(self) -> bool: member in StackCoreScriptedProcess
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/examples/python/scripted_process/
H A Dscripted_process.py161 def should_stop(self): member in ScriptedProcess
H A Dcrashlog_scripted_process.py92 def should_stop(self) -> bool: member in CrashLogScriptedProcess
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1776 bool should_stop = true; in ScriptedThreadPlanShouldStop() local
1783 should_stop = LLDBSWIGPythonCallThreadPlan( in ScriptedThreadPlanShouldStop()
1788 return should_stop; in ScriptedThreadPlanShouldStop()

12