Lines Matching full:threads
65 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break_1_in_main)
67 if len(threads) != 1:
70 thread = threads[0]
79 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break_in_a)
80 if len(threads) != 1:
87 thread = threads[0]
92 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break_in_b)
93 if len(threads) != 1:
95 thread = threads[0]
206 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break_in_b)
208 if len(threads) != 1:
210 thread = threads[0]
256 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_1)
257 self.assertEqual(len(threads), 1)
258 thread = threads[0]
266 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_2)
267 self.assertEqual(len(threads), 1)
268 thread = threads[0]
276 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_3)
277 self.assertEqual(len(threads), 1)
278 thread = threads[0]
285 threads = lldbutil.get_stopped_threads(process, lldb.eStopReasonBreakpoint)
287 self.assertEqual(len(threads), 1)
288 thread = threads[0]
303 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_4)
304 self.assertEqual(len(threads), 1)
305 thread = threads[0]