Home
last modified time | relevance | path

Searched refs:stopped_thread (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/functionalities/thread/thread_exit/
H A DTestThreadExit.py61 stopped_thread = lldbutil.get_one_thread_stopped_at_breakpoint_id(
63 self.assertIsNotNone(stopped_thread,
75 stopped_thread = lldbutil.get_one_thread_stopped_at_breakpoint_id(
77 self.assertIsNotNone(stopped_thread,
89 stopped_thread = lldbutil.get_one_thread_stopped_at_breakpoint_id(
91 self.assertIsNotNone(stopped_thread,
103 stopped_thread = lldbutil.get_one_thread_stopped_at_breakpoint_id(
105 self.assertIsNotNone(stopped_thread,
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/state_after_expression/
H A Dmain.cpp11 std::thread stopped_thread(thread_func); in main() local
12 stopped_thread.join(); in main()
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/ignore_suspended/
H A DTestIgnoreSuspendedThread.py78 stopped_thread = \
81 self.assertIsNotNone(stopped_thread,
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.cpp1013 NativeThreadProtocol *stopped_thread = nullptr; in Interrupt() local
1023 } else if (!stopped_thread && StateIsStoppedState(thread_state, true)) { in Interrupt()
1026 stopped_thread = thread.get(); in Interrupt()
1030 if (!running_thread && !stopped_thread) { in Interrupt()
1039 running_thread ? running_thread : stopped_thread; in Interrupt()