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 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 DBreakpointIDList.cpp150 BreakpointLocation *bp_loc = in FindAndReplaceIDRanges() local
154 &canonical_id_str, bp_id->GetBreakpointID(), bp_loc->GetID()); in FindAndReplaceIDRanges()
237 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
238 if ((bp_loc->GetID() >= start_loc_id) && in FindAndReplaceIDRanges()
239 (bp_loc->GetID() <= end_loc_id)) { in FindAndReplaceIDRanges()
242 bp_loc->GetID()); in FindAndReplaceIDRanges()
249 BreakpointLocation *bp_loc = breakpoint->GetLocationAtIndex(k).get(); in FindAndReplaceIDRanges() local
250 if (bp_loc->GetID() <= end_loc_id) { in FindAndReplaceIDRanges()
253 bp_loc->GetID()); in FindAndReplaceIDRanges()
H A DBreakpointLocationList.cpp272 BreakpointLocation *bp_loc = m_locations[idx].get(); in RemoveInvalidLocations() local
273 if (bp_loc->GetAddress().SectionWasDeleted()) { in RemoveInvalidLocations()
280 ModuleSP module_sp(bp_loc->GetAddress().GetModule()); in RemoveInvalidLocations()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepRange.cpp362 BreakpointLocationSP bp_loc = in SetNextBranchBreakpoint() local
364 if (bp_loc) { in SetNextBranchBreakpoint()
365 BreakpointSiteSP bp_site = bp_loc->GetBreakpointSite(); 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.cpp497 bp_loc: an lldb.SBBreakpointLocation for the breakpoint location information in IOHandlerActivated()