Lines Matching refs:threads
87 threads = lldbutil.get_threads_stopped_at_breakpoint (process, break1)
88 if len(threads) != 1:
91 thread = threads[0]
116 threads = lldbutil.continue_to_breakpoint (process, break2)
117 self.assertTrue (len(threads) == 1, "Continued to second breakpoint in main.")
120 thread = threads[0]
125 threads = lldbutil.continue_to_breakpoint (process, break_returnStruct_call_super)
126 … self.assertTrue (len(threads) == 1, "Stepped to the call super line in Source returnsStruct.")
127 thread = threads[0]
136 threads = lldbutil.continue_to_breakpoint (process, break3)
137 …self.assertTrue (len(threads) == 1, "Continued to third breakpoint in main, our object should now …
147 thread = threads[0]
157 threads = lldbutil.continue_to_breakpoint (process, break4)
158 self.assertTrue (len(threads) == 1, "Continued to fourth breakpoint in main.")
159 thread = threads[0]
166 threads = lldbutil.continue_to_breakpoint(process, break_returnStruct_call_super)
167 …self.assertTrue (len(threads) == 1, "Stepped to the call super line in Source returnsStruct - seco…
168 thread = threads[0]
177 threads = lldbutil.continue_to_breakpoint (process, break_step_nil)
178 self.assertTrue (len(threads) == 1, "Continued to step nil breakpoint.")