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

References

tools/lldb/include/lldb/Target/Memory.h
   52   BlockMap m_L1_cache; // A first level memory cache whose chunk sizes vary that
   55   BlockMap m_L2_cache; // A memory cache of fixed size chinks
tools/lldb/source/Target/Memory.cpp
   61     BlockMap::iterator pos = m_L1_cache.upper_bound(addr);
   93       BlockMap::iterator pos = m_L2_cache.find(curr_addr);
  139     BlockMap::iterator pos = m_L1_cache.upper_bound(addr);
  181       BlockMap::const_iterator pos = m_L2_cache.find(curr_addr);
  182       BlockMap::const_iterator end = m_L2_cache.end();