Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp130 BreakpointLocation *bp_loc = in FindAndReplaceIDRanges() local
134 &canonical_id_str, bp_id->GetBreakpointID(), bp_loc->GetID()); in FindAndReplaceIDRanges()
216 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
217 if ((bp_loc->GetID() >= start_loc_id) && in FindAndReplaceIDRanges()
218 (bp_loc->GetID() <= end_loc_id)) { in FindAndReplaceIDRanges()
221 bp_loc->GetID()); in FindAndReplaceIDRanges()
228 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
229 if (bp_loc->GetID() <= end_loc_id) { in FindAndReplaceIDRanges()
232 bp_loc->GetID()); in FindAndReplaceIDRanges()
H A DBreakpointLocationCollection.cpp25 void BreakpointLocationCollection::Add(const BreakpointLocationSP &bp_loc) { in Add() argument
28 FindByIDPair(bp_loc->GetBreakpoint().GetID(), bp_loc->GetID()); in Add()
30 m_break_loc_collection.push_back(bp_loc); in Add()
50 bool operator()(const BreakpointLocationSP &bp_loc) const { in operator ()()
51 return m_break_id == bp_loc->GetBreakpoint().GetID() && in operator ()()
52 m_break_loc_id == bp_loc->GetID(); in operator ()()
H A DBreakpointLocationList.cpp280 BreakpointLocation *bp_loc = m_locations[idx].get(); in RemoveInvalidLocations() local
281 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations()
288 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp386 BreakpointLocationSP bp_loc = in SetNextBranchBreakpoint() local
390 if (bp_loc) { in SetNextBranchBreakpoint()
391 BreakpointSiteSP bp_site = bp_loc->GetBreakpointSite(); in SetNextBranchBreakpoint()
407 if (bp_loc && block) { in SetNextBranchBreakpoint()
444 bp_loc->SetPreferredLineEntry(top_most_line_entry); in SetNextBranchBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpointCommand.cpp127 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd()
154 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in CommandObjectBreakpointCommandAdd()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp485 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in IOHandlerActivated()