Home | History | Annotate | Download | only in Target

Lines Matching defs:bp_loc_sp

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