reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
  146   size_t GetSize() const { return m_locations.size(); }
  217     return BreakpointLocationIterable(m_locations);
tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
   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.begin(); pos != end; ++pos)
  139   if (i < m_locations.size())
  140     bp_loc_sp = m_locations[i];
  148   if (i < m_locations.size())
  149     bp_loc_sp = m_locations[i];
  156   collection::iterator pos, end = m_locations.end();
  157   for (pos = m_locations.begin(); pos != end; ++pos)
  163   collection::iterator pos, end = m_locations.end();
  165   for (pos = m_locations.begin(); pos != end; ++pos) {
  174   collection::const_iterator pos, end = m_locations.end();
  175   for (pos = m_locations.begin(); pos != end; ++pos)
  183   collection::const_iterator pos, end = m_locations.end();
  184   for (pos = m_locations.begin(); pos != end; ++pos) {
  194   collection::iterator pos, end = m_locations.end();
  196   for (pos = m_locations.begin(); pos != end; ++pos) {
  244     size_t num_locations = m_locations.size();
  246       if (m_locations[idx].get() == bp_loc_sp.get()) {
  256   assert (idx < m_locations.size());
  257   m_address_to_location.erase(m_locations[idx]->GetAddress());
  258   m_locations.erase(m_locations.begin() + idx);
  258   m_locations.erase(m_locations.begin() + idx);
  266   while (idx < m_locations.size()) {
  267     BreakpointLocation *bp_loc = m_locations[idx].get();
  306   for (BreakpointLocationSP loc_sp : m_locations) {