Lines Matching refs:thread
87 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
89 thread.IsValid(),
93 proc_of_thread = thread.GetProcess()
113 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
115 thread.IsValid(),
122 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 1))
125 self.assertEqual("breakpoint", thread.GetStopDescription(len('breakpoint') + 1))
126 self.assertEqual("break", thread.GetStopDescription(len('break') + 1))
127 self.assertEqual("b", thread.GetStopDescription(len('b') + 1))
130 self.assertEqual("breakpoint 1.1", thread.GetStopDescription(len('breakpoint 1.1') + 100))
147 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
149 thread.IsValid(),
151 caller_symbol = get_caller_symbol(thread)
160 thread.StepOut()
161 self.assertTrue(thread.IsValid(),
163 caller_symbol = get_caller_symbol(thread)
173 thread.StepOut()
176 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), self.step_out_of_malloc,
199 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
201 thread.IsValid(),
204 frame0 = thread.GetFrameAtIndex(0)
208 thread.StepOver()
209 thread.StepOver()
210 thread.StepOver()
215 frame0 = thread.GetFrameAtIndex(0)
217 self.assertEqual(thread.GetStopReason(), lldb.eStopReasonPlanComplete)
245 thread = get_stopped_thread(process, lldb.eStopReasonBreakpoint)
247 thread.IsValid(),
250 frame0 = thread.GetFrameAtIndex(0)
265 thread.StepOver()
266 thread.StepOver()
267 thread.StepOver()
272 thread.RunToAddress(start_addr)