Home
last modified time | relevance | path

Searched refs:m_cachesInMemory (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/loader/appcache/
DApplicationCacheStorage.cpp138 std::pair<CacheGroupMap::iterator, bool> result = m_cachesInMemory.add(manifestURL, 0); in findOrCreateCacheGroup()
161 return m_cachesInMemory.get(manifestURL); in findInMemoryCacheGroup()
199 CacheGroupMap::const_iterator end = m_cachesInMemory.end(); in cacheGroupForURL()
200 for (CacheGroupMap::const_iterator it = m_cachesInMemory.begin(); it != end; ++it) { in cacheGroupForURL()
230 if (m_cachesInMemory.contains(manifestURL)) in cacheGroupForURL()
254 m_cachesInMemory.set(group->manifestURL(), group); in cacheGroupForURL()
270 CacheGroupMap::const_iterator end = m_cachesInMemory.end(); in fallbackCacheGroupForURL()
271 for (CacheGroupMap::const_iterator it = m_cachesInMemory.begin(); it != end; ++it) { in fallbackCacheGroupForURL()
300 if (m_cachesInMemory.contains(manifestURL)) in fallbackCacheGroupForURL()
325 m_cachesInMemory.set(group->manifestURL(), group); in fallbackCacheGroupForURL()
[all …]
DApplicationCacheStorage.h148 CacheGroupMap m_cachesInMemory; // Excludes obsolete cache groups. variable