Home
last modified time | relevance | path

Searched refs:return_bp (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/Target/
DThreadPlanStepUntil.cpp71 Breakpoint *return_bp = target_sp->CreateBreakpoint (m_return_addr, true).get(); in ThreadPlanStepUntil() local
72 if (return_bp != NULL) in ThreadPlanStepUntil()
74 return_bp->SetThreadID(thread_id); in ThreadPlanStepUntil()
75 m_return_bp_id = return_bp->GetID(); in ThreadPlanStepUntil()
76 return_bp->SetBreakpointKind ("until-return-backstop"); in ThreadPlanStepUntil()
351 Breakpoint *return_bp = target_sp->GetBreakpointByID(m_return_bp_id).get(); in DoWillResume() local
352 if (return_bp != NULL) in DoWillResume()
353 return_bp->SetEnabled (true); in DoWillResume()
377 Breakpoint *return_bp = target_sp->GetBreakpointByID(m_return_bp_id).get(); in WillStop() local
378 if (return_bp != NULL) in WillStop()
[all …]
DThreadPlanStepOut.cpp105 … Breakpoint *return_bp = m_thread.CalculateTarget()->CreateBreakpoint (m_return_addr, true).get(); in ThreadPlanStepOut() local
106 if (return_bp != NULL) in ThreadPlanStepOut()
108 return_bp->SetThreadID(m_thread.GetID()); in ThreadPlanStepOut()
109 m_return_bp_id = return_bp->GetID(); in ThreadPlanStepOut()
110 return_bp->SetBreakpointKind ("step-out"); in ThreadPlanStepOut()
349 Breakpoint *return_bp = m_thread.CalculateTarget()->GetBreakpointByID(m_return_bp_id).get(); in DoWillResume() local
350 if (return_bp != NULL) in DoWillResume()
351 return_bp->SetEnabled (true); in DoWillResume()
361 Breakpoint *return_bp = m_thread.CalculateTarget()->GetBreakpointByID(m_return_bp_id).get(); in WillStop() local
362 if (return_bp != NULL) in WillStop()
[all …]
DThreadPlanStepThrough.cpp59 …Breakpoint *return_bp = m_thread.GetProcess()->GetTarget().CreateBreakpoint (m_backstop_addr, true… in ThreadPlanStepThrough() local
60 if (return_bp != NULL) in ThreadPlanStepThrough()
62 return_bp->SetThreadID(m_thread.GetID()); in ThreadPlanStepThrough()
63 m_backstop_bkpt_id = return_bp->GetID(); in ThreadPlanStepThrough()
64 return_bp->SetBreakpointKind("step-through-backstop"); in ThreadPlanStepThrough()