Lines Matching refs:threads
68 threads = lldbutil.continue_to_breakpoint(process, rt_bp)
69 self.assertEqual(len(threads), 1, "Hit the running_func breakpoint")
75 self.try_an_expression(threads[0], 0, st_bp)
78 threads = lldbutil.continue_to_breakpoint(process, rt_bp)
79 self.assertEqual(len(threads), 1, "We didn't hit running breakpoint")
83 for thread in process.threads:
95 threads = lldbutil.continue_to_breakpoint(process, rt_exit_bp)
96 self.assertEqual(len(threads), 1)
100 threads = lldbutil.continue_to_breakpoint(process, st_bp)
101 self.assertEqual(len(threads), 1, "The thread resumed successfully")
105 threads = lldbutil.continue_to_breakpoint(process, st_exit_bp)
106 self.assertEqual(len(threads), 1, "pthread_join exited successfully")