Lines Matching refs:threads
71 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_1_in_main)
73 if len(threads) != 1:
76 thread = threads[0]
85 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_a)
86 if len(threads) != 1:
93 thread = threads[0]
98 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
99 if len(threads) != 1:
101 thread = threads[0]
168 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break_in_b)
169 if len(threads) != 1:
171 thread = threads[0]
202 threads = lldbutil.continue_to_breakpoint(process, break_before_complex_1)
203 self.assertTrue (len(threads) == 1)
204 thread = threads[0]
211 threads = lldbutil.continue_to_breakpoint (process, break_before_complex_2)
212 self.assertTrue (len(threads) == 1)
213 thread = threads[0]
220 threads = lldbutil.continue_to_breakpoint (process, break_before_complex_3)
221 self.assertTrue (len(threads) == 1)
222 thread = threads[0]
229 threads = lldbutil.get_stopped_threads(process, lldb.eStopReasonBreakpoint);
231 self.assertTrue (len(threads) == 1)
232 thread = threads[0]
243 threads = lldbutil.continue_to_breakpoint (process, break_before_complex_4)
244 self.assertTrue (len(threads) == 1)
245 thread = threads[0]