Searched refs:m_locations (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointLocationList.cpp | 36 m_locations.push_back(bp_loc_sp); in Create() 70 collection::const_iterator end = m_locations.end(); in FindByID() 72 llvm::lower_bound(m_locations, break_id, Compare); in FindByID() 83 collection::iterator pos, end = m_locations.end(); in FindInModule() 85 for (pos = m_locations.begin(); pos != end; ++pos) { in FindInModule() 99 if (!m_locations.empty()) { in FindByAddress() 127 (uint64_t)m_locations.size()); in Dump() 129 collection::const_iterator pos, end = m_locations.end(); in Dump() 130 for (pos = m_locations.begin(); pos != end; ++pos) in Dump() 138 if (i < m_locations.size()) in GetByIndex() [all …]
|
H A D | Breakpoint.cpp | 48 m_resolver_sp(resolver_sp), m_options(true), m_locations(*this), in Breakpoint() 54 m_locations(*this), in Breakpoint() 253 return m_locations.AddLocation(addr, m_resolve_indirect_symbols, in AddLocation() 258 return m_locations.FindByAddress(addr); in FindLocationByAddress() 262 return m_locations.FindIDByAddress(addr); in FindLocationIDByAddress() 266 return m_locations.FindByID(bp_loc_id); in FindLocationByID() 270 return m_locations.GetByIndex(index); in GetLocationAtIndex() 274 m_locations.RemoveInvalidLocations(arch); in RemoveInvalidLocations() 291 m_locations.ResolveAllBreakpointSites(); in SetEnabled() 293 m_locations.ClearAllBreakpointSites(); in SetEnabled() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A D | BreakpointLocationList.h | 149 size_t GetSize() const { return m_locations.size(); } in GetSize() 200 collection m_locations; // Vector of locations, sorted by ID variable 212 return BreakpointLocationIterable(m_locations); in BreakpointLocations()
|
H A D | Breakpoint.h | 119 return m_locations; in GetBreakpointLocationCollection() 143 BreakpointLocationCollection m_locations; variable 659 m_locations; // The list of locations currently found for this breakpoint. variable
|