Searched refs:m_locations (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationList.cpp23 : m_owner(owner), m_locations(), m_address_to_location(), m_mutex(),
37 m_locations.push_back(bp_loc_sp);
71 collection::const_iterator end = m_locations.end();
73 std::lower_bound(m_locations.begin(), end, break_id, Compare);
84 collection::iterator pos, end = m_locations.end();
86 for (pos = m_locations.begin(); pos != end; ++pos) {
100 if (!m_locations.empty()) {
128 (uint64_t)m_locations.size());
130 collection::const_iterator pos, end = m_locations.end();
131 for (pos = m_locations
[all...]
H A DBreakpoint.cpp53 m_options_up(new BreakpointOptions(true)), m_locations(*this),
62 m_locations(*this),
256 return m_locations.AddLocation(addr, m_resolve_indirect_symbols,
261 return m_locations.FindByAddress(addr);
265 return m_locations.FindIDByAddress(addr);
269 return m_locations.FindByID(bp_loc_id);
273 return m_locations.GetByIndex(index);
277 m_locations.RemoveInvalidLocations(arch);
294 m_locations.ResolveAllBreakpointSites();
296 m_locations
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationList.h146 size_t GetSize() const { return m_locations.size(); }
197 collection m_locations; // Vector of locations, sorted by ID member in class:lldb_private::BreakpointLocationList
209 return BreakpointLocationIterable(m_locations);
H A DBreakpoint.h114 return m_locations;
138 BreakpointLocationCollection m_locations; member in class:lldb_private::Breakpoint::BreakpointEventData
654 m_locations; // The list of locations currently found for this breakpoint. member in class:lldb_private::Breakpoint

Completed in 304 milliseconds