Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBBreakpointLocation.cpp81 BreakpointLocationSP loc_sp = GetSP(); in GetAddress() local
82 if (loc_sp) { in GetAddress()
83 return LLDB_RECORD_RESULT(SBAddress(loc_sp->GetAddress())); in GetAddress()
94 BreakpointLocationSP loc_sp = GetSP(); in GetLoadAddress() local
96 if (loc_sp) { in GetLoadAddress()
98 loc_sp->GetTarget().GetAPIMutex()); in GetLoadAddress()
99 ret_addr = loc_sp->GetLoadAddress(); in GetLoadAddress()
108 BreakpointLocationSP loc_sp = GetSP(); in SetEnabled() local
109 if (loc_sp) { in SetEnabled()
111 loc_sp->GetTarget().GetAPIMutex()); in SetEnabled()
[all …]
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointSite.cpp154 for (BreakpointLocationSP loc_sp : m_owners.BreakpointLocations()) { in BumpHitCounts() local
155 loc_sp->BumpHitCount(); in BumpHitCounts()
204 for (BreakpointLocationSP loc_sp : m_owners.BreakpointLocations()) { in CopyOwnersList() local
205 out_collection.Add(loc_sp); in CopyOwnersList()
DBreakpointResolverAddress.cpp151 BreakpointLocationSP loc_sp = breakpoint.GetLocationAtIndex(0); in SearchCallback() local
156 loc_sp->ClearBreakpointSite(); in SearchCallback()
157 loc_sp->ResolveBreakpointSite(); in SearchCallback()
DBreakpoint.cpp826 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
828 m_locations.RemoveLocation(loc_sp); in ModuleReplaced()
830 locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
839 for (BreakpointLocationSP loc_sp : in ModuleReplaced() local
841 locations_event->GetBreakpointLocationCollection().Add(loc_sp); in ModuleReplaced()
DBreakpointLocationList.cpp306 for (BreakpointLocationSP loc_sp : m_locations) { in Compact() local
307 lldb::break_id_t cur_id = loc_sp->GetID(); in Compact()