Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/lldb/source/API/
HDSBBreakpointLocation.cpp75 BreakpointLocationSP loc_sp = GetSP(); in GetAddress() local
76 if (loc_sp) { in GetAddress()
77 return SBAddress(loc_sp->GetAddress()); in GetAddress()
87 BreakpointLocationSP loc_sp = GetSP(); in GetLoadAddress() local
89 if (loc_sp) { in GetLoadAddress()
91 loc_sp->GetTarget().GetAPIMutex()); in GetLoadAddress()
92 ret_addr = loc_sp->GetLoadAddress(); in GetLoadAddress()
101 BreakpointLocationSP loc_sp = GetSP(); in SetEnabled() local
102 if (loc_sp) { in SetEnabled()
104 loc_sp->GetTarget().GetAPIMutex()); in SetEnabled()
[all …]
/freebsd-head/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointSite.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()
HDBreakpointResolverAddress.cpp145 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback() local
150 loc_sp->ClearBreakpointSite(); in SearchCallback()
151 loc_sp->ResolveBreakpointSite(); in SearchCallback()
HDBreakpoint.cpp794 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
796 m_locations.RemoveLocation(loc_sp); in ModuleReplaced()
798 removed_locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
808 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
810 added_locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
HDBreakpointLocationList.cpp311 for (BreakpointLocationSP loc_sp : m_locations) { in Compact() local
312 lldb::break_id_t cur_id = loc_sp->GetID(); in Compact()
/freebsd-head/contrib/llvm-project/lldb/source/Commands/
HDCommandObjectProcess.cpp563 BreakpointLocationSP loc_sp in DoExecute() local
565 if (loc_sp->IsEnabled()) { in DoExecute()
572 BreakpointLocationSP loc_sp = bp_sp->FindLocationByID(loc_id); in DoExecute() local
573 if (loc_sp->IsEnabled()) in DoExecute()
627 BreakpointLocationSP loc_sp = bp_sp->GetLocationAtIndex(loc_idx); in DoExecute() local
629 if (!with_locs.Contains(tmp_id) && loc_sp->IsEnabled()) { in DoExecute()
631 loc_sp->SetEnabled(false); in DoExecute()
681 BreakpointLocationSP loc_sp in DoExecute() local
683 if (loc_sp) in DoExecute()
684 loc_sp->SetEnabled(true); in DoExecute()