Lines Matching full:threads
91 threads = lldbutil.get_threads_stopped_at_breakpoint(process, break1)
92 if len(threads) != 1:
95 thread = threads[0]
129 threads = lldbutil.continue_to_breakpoint(process, break2)
130 self.assertEqual(len(threads), 1, "Continued to second breakpoint in main.")
134 thread = threads[0]
143 threads = lldbutil.continue_to_breakpoint(
147 len(threads), 1, "Stepped to the call super line in Source returnsStruct."
149 thread = threads[0]
163 threads = lldbutil.continue_to_breakpoint(process, break3)
165 len(threads),
181 thread = threads[0]
200 threads = lldbutil.continue_to_breakpoint(process, break4)
201 self.assertEqual(len(threads), 1, "Continued to fourth breakpoint in main.")
202 thread = threads[0]
214 threads = lldbutil.continue_to_breakpoint(
218 len(threads),
222 thread = threads[0]
235 threads = lldbutil.continue_to_breakpoint(process, break_step_nil)
236 self.assertEqual(len(threads), 1, "Continued to step nil breakpoint.")