Lines Matching refs:bp_loc_sp
149 BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(0); in StoreBPInfo() local
150 if (bp_loc_sp) in StoreBPInfo()
152 m_break_id = bp_loc_sp->GetBreakpoint().GetID(); in StoreBPInfo()
153 m_was_one_shot = bp_loc_sp->GetBreakpoint().IsOneShot(); in StoreBPInfo()
382 … lldb::BreakpointLocationSP bp_loc_sp = bp_site_sp->GetOwnerAtIndex(j); in PerformAction() local
383 if (bp_loc_sp->GetBreakpoint().IsInternal()) in PerformAction()
413 lldb::BreakpointLocationSP bp_loc_sp = site_locations.GetByIndex(j); in PerformAction() local
416 if (!bp_loc_sp->IsEnabled() || !bp_loc_sp->GetBreakpoint().IsEnabled()) in PerformAction()
421 if (!bp_loc_sp->ValidForThisThread(thread_sp.get())) in PerformAction()
427 if (bp_loc_sp->GetConditionText() != NULL) in PerformAction()
430 … bool condition_says_stop = bp_loc_sp->ConditionSaysStop(exe_ctx, condition_error); in PerformAction()
437 bp_loc_sp->GetDescription (error_sp.get(), eDescriptionLevelBrief); in PerformAction()
439 bp_loc_sp->GetConditionText()); in PerformAction()
468 callback_says_stop = bp_loc_sp->InvokeCallback (&context); in PerformAction()
476 … if (callback_says_stop && bp_loc_sp && bp_loc_sp->GetBreakpoint().IsOneShot()) in PerformAction()
478 … thread_sp->GetProcess()->GetTarget().RemoveBreakpointByID (bp_loc_sp->GetBreakpoint().GetID()); in PerformAction()