Lines Matching refs:thread
35 "// frame select 2, thread step-out while stopped at .c.1..",
48 "// thread step-out while stopped at .c.2..", self.main_source_spec
64 # The stop reason of the thread should be breakpoint.
70 thread = threads[0]
76 thread.StepOver()
78 # The stop reason of the thread should be breakpoint.
87 thread = threads[0]
90 thread.StepOver()
95 thread = threads[0]
99 frame = thread.GetFrameAtIndex(0)
102 current_bp = thread.stop_reason_data
109 frame = thread.GetFrameAtIndex(0)
121 thread.GetStopReason(),
126 thread.stop_reason_data,
153 frame = thread.GetFrameAtIndex(0)
165 thread.GetStopReason(),
170 thread.GetStopReasonDataAtIndex(0) == current_bp[0]
171 and thread.GetStopReasonDataAtIndex(1) == current_bp[1],
183 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "a")
184 self.assertStopReason(thread.GetStopReason(), lldb.eStopReasonPlanComplete)
189 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "main")
190 self.assertStopReason(thread.GetStopReason(), lldb.eStopReasonPlanComplete)
194 frame = thread.GetFrameAtIndex(0)
195 frame = thread.GetFrameAtIndex(0)
210 thread = threads[0]
214 thread.StepOver()
217 func_name = thread.GetFrameAtIndex(0).GetFunctionName()
225 thread.GetFrameAtIndex(0).GetLineEntry().GetLine(), current_line
228 thread.GetFrameAtIndex(0).GetLineEntry().GetFileSpec(), current_file
258 thread = threads[0]
261 thread.StepInto("b")
262 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "b")
268 thread = threads[0]
271 thread.StepInto("complex")
272 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "complex")
278 thread = threads[0]
284 thread.StepInto("b")
288 thread = threads[0]
289 stop_break_id = thread.GetStopReasonDataAtIndex(0)
299 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "b")
305 thread = threads[0]
308 thread.StepInto("NoSuchFunction")
309 self.assertEqual(thread.GetFrameAtIndex(0).GetFunctionName(), "main")