Lines Matching refs:threads
84 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break1)
85 if len(threads) != 1:
88 thread = threads[0]
118 threads = lldbutil.continue_to_breakpoint(process, break2)
120 len(threads), 1,
125 thread = threads[0]
132 threads = lldbutil.continue_to_breakpoint(
135 len(threads), 1,
137 thread = threads[0]
149 threads = lldbutil.continue_to_breakpoint(process, break3)
151 len(threads), 1,
165 thread = threads[0]
180 threads = lldbutil.continue_to_breakpoint(process, break4)
182 len(threads), 1,
184 thread = threads[0]
194 threads = lldbutil.continue_to_breakpoint(
197 len(threads), 1,
199 thread = threads[0]
210 threads = lldbutil.continue_to_breakpoint(process, break_step_nil)
211 self.assertEqual(len(threads), 1, "Continued to step nil breakpoint.")