Searched refs:return_bp (Results 1 – 3 of 3) sorted by relevance
71 Breakpoint *return_bp = target_sp->CreateBreakpoint (m_return_addr, true).get(); in ThreadPlanStepUntil() local72 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() local352 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() local378 if (return_bp != NULL) in WillStop()[all …]
105 … Breakpoint *return_bp = m_thread.CalculateTarget()->CreateBreakpoint (m_return_addr, true).get(); in ThreadPlanStepOut() local106 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() local350 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() local362 if (return_bp != NULL) in WillStop()[all …]
59 …Breakpoint *return_bp = m_thread.GetProcess()->GetTarget().CreateBreakpoint (m_backstop_addr, true… in ThreadPlanStepThrough() local60 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()