Home
last modified time | relevance | path

Searched refs:newestCache (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/loader/appcache/
DApplicationCacheHost.cpp418 if (cache != cache->group()->newestCache()) in status()
450 ApplicationCache* newestCache = cache->group()->newestCache(); in swapCache() local
451 if (cache == newestCache) in swapCache()
454 ASSERT(cache->group() == newestCache->group()); in swapCache()
455 setApplicationCache(newestCache); in swapCache()
DApplicationCacheStorage.cpp208 if (ApplicationCache* cache = group->newestCache()) { in cacheGroupForURL()
276 if (ApplicationCache* cache = group->newestCache()) { in fallbackCacheGroupForURL()
358 if (ApplicationCache* newestCache = group->newestCache()) in cacheGroupMadeObsolete() local
359 remove(newestCache); in cacheGroupMadeObsolete()
967 if (remainingSpaceInOrigin < group->newestCache()->estimatedSizeInStorage()) { in storeNewestCache()
983 ASSERT(group->newestCache()); in storeNewestCache()
985 ASSERT(!group->newestCache()->storageID()); in storeNewestCache()
993 if (!store(group->newestCache(), &resourceStorageIDJournal)) { in storeNewestCache()
1007 statement.bindInt64(1, group->newestCache()->storageID()); in storeNewestCache()
1182 if (cache->group()->newestCache() == cache) { in remove()
DApplicationCacheGroup.cpp109 ASSERT(group->newestCache()); in cacheForMainRequest()
112 return group->newestCache(); in cacheForMainRequest()
128 ASSERT(group->newestCache()); in fallbackCacheForMainRequest()
131 return group->newestCache(); in fallbackCacheForMainRequest()
396 void ApplicationCacheGroup::setNewestCache(PassRefPtr<ApplicationCache> newestCache) in setNewestCache() argument
398 m_newestCache = newestCache; in setNewestCache()
DApplicationCacheGroup.h86 ApplicationCache* newestCache() const { return m_newestCache.get(); } in newestCache() function
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1015415 …Don't call newestCache since it will always be null. Instead, call hasNewestCache which returns th…
28303 (WebCore::ApplicationCacheGroup::newestCache):
29892 (WebCore::ApplicationCacheGroup::newestCache):
DChangeLog-2009-06-1656437 teardown started, with newestCache being zeroed out.
56439 4) Since newestCache was null, this caused many problems.