Lines Matching refs:threads
95 threads = lldbutil.get_threads_stopped_at_breakpoint(process, call_me_bkpt)
96 self.assertEqual(len(threads), 1, "Hit my breakpoint while stepping over")
98 current_id = threads[0].GetIndexID()
99 current_tid = threads[0].GetThreadID()
129 threads = lldbutil.get_stopped_threads(process, lldb.eStopReasonPlanComplete)
130 self.assertEqual(len(threads), 1, "One thread completed a step")
144 threads = lldbutil.continue_to_breakpoint(process, second_step_bkpt)
145 self.assertEqual(len(threads), 1, "Hit the second step breakpoint")
147 threads[0].StepOver()
148 threads = lldbutil.get_threads_stopped_at_breakpoint(process, call_me_bkpt)
160 threads = lldbutil.get_threads_stopped_at_breakpoint(process, final_bkpt)
161 self.assertEqual(len(threads), 1, "Ran to final breakpoint")
162 threads = lldbutil.get_stopped_threads(process, lldb.eStopReasonPlanComplete)
163 self.assertEqual(len(threads), 0, "Did NOT complete the step over plan")