Lines Matching refs:thread_plan
103 def __init__(self, thread_plan, dict): argument
104 self.thread_plan = thread_plan
105 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPC()
110 if self.thread_plan.GetThread().GetStopReason() == lldb.eStopReasonTrace:
116 cur_pc = self.thread_plan.GetThread().GetFrameAtIndex(0).GetPC()
119 self.thread_plan.SetPlanComplete(True)
130 def __init__(self, thread_plan, dict): argument
131 self.thread_plan = thread_plan
132 self.start_address = thread_plan.GetThread().GetFrameAtIndex(0).GetPCAddress()
133 self.step_thread_plan = thread_plan.QueueThreadPlanForStepOverRange(
143 self.thread_plan.SetPlanComplete(True)
158 def __init__(self, thread_plan, dict): argument
159 self.thread_plan = thread_plan
160 self.start_frame = thread_plan.GetThread().GetFrameAtIndex(0)
164 cur_frame = self.thread_plan.GetThread().GetFrameAtIndex(0)
169 self.step_thread_plan = self.thread_plan.QueueThreadPlanForStepOverRange(
181 frame = self.thread_plan.GetThread().GetFrameAtIndex(0)
183 self.thread_plan.SetPlanComplete(True)
201 self.thread_plan.SetPlanComplete(True)
218 def __init__(self, thread_plan, dict): argument
219 self.thread_plan = thread_plan
220 self.step_out_thread_plan = thread_plan.QueueThreadPlanForStepOut(
222 self.thread = self.thread_plan.GetThread()
237 self.thread_plan.SetPlanComplete(True)