Home
last modified time | relevance | path

Searched refs:thread_plan (Results 1 – 6 of 6) sorted by relevance

/external/llvm-project/lldb/examples/python/
Dscripted_step.py103 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(
[all …]
/external/llvm-project/lldb/test/API/functionalities/step_scripted/
DSteps.py4 def __init__(self, thread_plan): argument
5 self.thread_plan = thread_plan
15 self.thread_plan.SetPlanComplete(True)
26 def __init__(self, thread_plan, dict): argument
27 StepWithChild.__init__(self, thread_plan)
30 return self.thread_plan.QueueThreadPlanForStepOut(0)
33 def __init__(self, thread_plan, dict): argument
34 StepWithChild.__init__(self, thread_plan)
37 return self.thread_plan.QueueThreadPlanForStepScripted("Steps.StepOut")
41 def __init__(self, thread_plan, args_data, dict): argument
[all …]
/external/llvm-project/lldb/test/API/functionalities/thread_plan/
Dwrap_step_over.py4 def __init__(self, thread_plan, args_data, dict): argument
5 self.plan = thread_plan
6 thread = thread_plan.GetThread()
14 self.sub_plan = thread_plan.QueueThreadPlanForStepOverRange(start_addr, range_size)
/external/llvm-project/lldb/test/API/functionalities/completion/
Dthread_plan_script.py10 def __init__(self, thread_plan, dict): argument
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DScriptInterpreterPythonImpl.h81 lldb::ThreadPlanSP thread_plan) override;
/external/llvm-project/lldb/docs/use/
Dpython-reference.rst438 | **__init__** | **thread_plan: lldb.SBThreadPlan** | This is the underlying SBThreadPlan that…