Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointLocation.cpp76 if (loc_sp) { in GetAddress()
89 if (loc_sp) { in GetLoadAddress()
102 if (loc_sp) { in SetEnabled()
113 if (loc_sp) { in IsEnabled()
125 if (loc_sp) { in GetHitCount()
137 if (loc_sp) { in GetIgnoreCount()
149 if (loc_sp) { in SetIgnoreCount()
160 if (loc_sp) { in SetCondition()
171 if (!loc_sp) in GetCondition()
278 if (!loc_sp) in SetCommandLineCommands()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSite.cpp152 for (BreakpointLocationSP loc_sp : m_constituents.BreakpointLocations()) { in BumpHitCounts() local
153 loc_sp->BumpHitCount(); in BumpHitCounts()
202 for (BreakpointLocationSP loc_sp : m_constituents.BreakpointLocations()) { in CopyConstituentsList() local
203 out_collection.Add(loc_sp); in CopyConstituentsList()
H A DBreakpointResolverAddress.cpp145 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback() local
150 loc_sp->ClearBreakpointSite(); in SearchCallback()
151 loc_sp->ResolveBreakpointSite(); in SearchCallback()
H A DBreakpoint.cpp797 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
799 m_locations.RemoveLocation(loc_sp); in ModuleReplaced()
801 removed_locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
811 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
813 added_locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
H A DBreakpointLocationList.cpp311 for (BreakpointLocationSP loc_sp : m_locations) { in Compact() local
312 lldb::break_id_t cur_id = loc_sp->GetID(); in Compact()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectProcess.cpp583 BreakpointLocationSP loc_sp in DoExecute() local
585 if (loc_sp->IsEnabled()) { in DoExecute()
592 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id); in DoExecute() local
593 if (loc_sp->IsEnabled()) in DoExecute()
647 BreakpointLocationSP loc_sp = bp_sp->GetLocationAtIndex(loc_idx); in DoExecute() local
651 && loc_sp->IsEnabled()) { in DoExecute()
653 loc_sp->SetEnabled(false); in DoExecute()
703 BreakpointLocationSP loc_sp in DoExecute() local
705 if (loc_sp) in DoExecute()
706 loc_sp->SetEnabled(true); in DoExecute()