/external/webkit/Source/WebCore/loader/appcache/ |
D | ApplicationCache.cpp | 41 ApplicationCache::ApplicationCache() in ApplicationCache() function in WebCore::ApplicationCache 49 ApplicationCache::~ApplicationCache() in ~ApplicationCache() 55 void ApplicationCache::setGroup(ApplicationCacheGroup* group) in setGroup() 61 bool ApplicationCache::isComplete() const in isComplete() 66 void ApplicationCache::setManifestResource(PassRefPtr<ApplicationCacheResource> manifest) in setManifestResource() 77 void ApplicationCache::addResource(PassRefPtr<ApplicationCacheResource> resource) in addResource() 98 unsigned ApplicationCache::removeResource(const String& url) in removeResource() 114 ApplicationCacheResource* ApplicationCache::resourceForURL(const String& url) in resourceForURL() 120 bool ApplicationCache::requestIsHTTPOrHTTPSGet(const ResourceRequest& request) in requestIsHTTPOrHTTPSGet() 131 ApplicationCacheResource* ApplicationCache::resourceForRequest(const ResourceRequest& request) in resourceForRequest() [all …]
|
D | ApplicationCacheGroup.h | 44 class ApplicationCache; variable 64 static ApplicationCache* cacheForMainRequest(const ResourceRequest&, DocumentLoader*); 65 static ApplicationCache* fallbackCacheForMainRequest(const ResourceRequest&, DocumentLoader*); 80 void cacheDestroyed(ApplicationCache*); 82 …bool cacheIsBeingUpdated(const ApplicationCache* cache) const { return cache == m_cacheBeingUpdate… in cacheIsBeingUpdated() 86 ApplicationCache* newestCache() const { return m_newestCache.get(); } in newestCache() 87 void setNewestCache(PassRefPtr<ApplicationCache>); 134 void associateDocumentLoaderWithCache(DocumentLoader*, ApplicationCache*); 143 RefPtr<ApplicationCache> m_newestCache; 146 HashSet<ApplicationCache*> m_caches; [all …]
|
D | ApplicationCacheStorage.h | 40 class ApplicationCache; variable 70 …bool remainingSizeForOriginExcludingCache(const SecurityOrigin*, ApplicationCache*, int64_t& remai… 81 …bool storeNewestCache(ApplicationCacheGroup*, ApplicationCache* oldCache, FailureReason& failureRe… 83 bool store(ApplicationCacheResource*, ApplicationCache*); 84 bool storeUpdatedType(ApplicationCacheResource*, ApplicationCache*); 87 void remove(ApplicationCache*); 105 PassRefPtr<ApplicationCache> loadCache(unsigned storageID); 112 bool store(ApplicationCache*, ResourceStorageIDJournal*);
|
D | ApplicationCache.h | 49 class ApplicationCache : public RefCounted<ApplicationCache> { 51 static PassRefPtr<ApplicationCache> create() { return adoptRef(new ApplicationCache); } in create() 55 ~ApplicationCache(); 98 ApplicationCache();
|
D | ApplicationCacheHost.h | 55 class ApplicationCache; variable 161 …onCacheFallbackResource(const ResourceRequest&, ApplicationCacheResource*&, ApplicationCache* = 0); 189 … bool scheduleLoadFallbackResourceFromApplicationCache(ResourceLoader*, ApplicationCache* = 0); 192 void setApplicationCache(PassRefPtr<ApplicationCache> applicationCache); 193 ApplicationCache* applicationCache() const { return m_applicationCache.get(); } in applicationCache() 194 …ApplicationCache* mainResourceApplicationCache() const { return m_mainResourceApplicationCache.get… in mainResourceApplicationCache() 198 RefPtr<ApplicationCache> m_applicationCache; 205 RefPtr<ApplicationCache> m_mainResourceApplicationCache;
|
D | ApplicationCacheHost.cpp | 277 ApplicationCache* cache = applicationCache(); in fillResourceList() 281 ApplicationCache::ResourceMap::const_iterator end = cache->end(); in fillResourceList() 282 for (ApplicationCache::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) { in fillResourceList() 296 ApplicationCache* cache = applicationCache(); in applicationCacheInfo() 326 void ApplicationCacheHost::setApplicationCache(PassRefPtr<ApplicationCache> applicationCache) in setApplicationCache() 338 ApplicationCache* cache = applicationCache(); in shouldLoadResourceFromApplicationCache() 344 …if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request) || !equalIgnoringCase(request.url().protoc… in shouldLoadResourceFromApplicationCache() 361 …ource(const ResourceRequest& request, ApplicationCacheResource*& resource, ApplicationCache* cache) in getApplicationCacheFallbackResource() 372 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request)) in getApplicationCacheFallbackResource() 387 …::scheduleLoadFallbackResourceFromApplicationCache(ResourceLoader* loader, ApplicationCache* cache) in scheduleLoadFallbackResourceFromApplicationCache() [all …]
|
D | ApplicationCacheStorage.cpp | 122 RefPtr<ApplicationCache> cache = loadCache(newestCacheStorageID); in loadCacheGroup() 208 if (ApplicationCache* cache = group->newestCache()) { in cacheGroupForURL() 239 RefPtr<ApplicationCache> cache = loadCache(newestCacheID); in cacheGroupForURL() 276 if (ApplicationCache* cache = group->newestCache()) { in fallbackCacheGroupForURL() 310 RefPtr<ApplicationCache> cache = loadCache(newestCacheID); in fallbackCacheGroupForURL() 358 if (ApplicationCache* newestCache = group->newestCache()) in cacheGroupMadeObsolete() 483 …:remainingSizeForOriginExcludingCache(const SecurityOrigin* origin, ApplicationCache* cache, int64… in remainingSizeForOriginExcludingCache() 695 bool ApplicationCacheStorage::store(ApplicationCache* cache, ResourceStorageIDJournal* storageIDJou… in store() 715 ApplicationCache::ResourceMap::const_iterator end = cache->end(); in store() 716 for (ApplicationCache::ResourceMap::const_iterator it = cache->begin(); it != end; ++it) { in store() [all …]
|
D | ApplicationCacheGroup.cpp | 99 ApplicationCache* ApplicationCacheGroup::cacheForMainRequest(const ResourceRequest& request, Docume… in cacheForMainRequest() 101 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request)) in cacheForMainRequest() 118 ApplicationCache* ApplicationCacheGroup::fallbackCacheForMainRequest(const ResourceRequest& request… in fallbackCacheForMainRequest() 120 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request)) in fallbackCacheForMainRequest() 156 …ApplicationCache* mainResourceCache = documentLoader->applicationCacheHost()->mainResourceApplicat… in selectCache() 188 if (!ApplicationCache::requestIsHTTPOrHTTPSGet(request)) in selectCache() 220 …ApplicationCache* mainResourceCache = documentLoader->applicationCacheHost()->mainResourceApplicat… in selectCacheWithoutManifestURL() 374 void ApplicationCacheGroup::cacheDestroyed(ApplicationCache* cache) in cacheDestroyed() 396 void ApplicationCacheGroup::setNewestCache(PassRefPtr<ApplicationCache> newestCache) in setNewestCache() 715 m_cacheBeingUpdated = ApplicationCache::create(); in didFinishLoadingManifest() [all …]
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebApplicationCache.mm | 31 #import <WebCore/ApplicationCache.h> 68 ApplicationCache::deleteCacheForOrigin([origin _core]);
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorApplicationCacheAgent.h | 72 InspectorFrontend::ApplicationCache* m_frontend;
|
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/ |
D | WebApplicationCacheManager.cpp | 95 ApplicationCache::deleteCacheForOrigin(origin.get()); in deleteEntriesForOrigin()
|
/external/webkit/Source/WebKit2/ |
D | WebKit2.pri | 41 $$SOURCE_DIR/WebKit2/WebProcess/ApplicationCache \
|
D | DerivedSources.make | 27 $(WebKit2)/WebProcess/ApplicationCache \
|
D | DerivedSources.pro | 78 WebProcess/ApplicationCache \
|
D | GNUmakefile.am | 493 Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h \ 494 Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \ 719 -I$(srcdir)/Source/WebKit2/WebProcess/ApplicationCache \ 941 $(WebKit2)/UIProcess/ApplicationCache \ 947 $(WebKit2)/WebProcess/ApplicationCache \
|
D | WebKit2.pro | 232 WebProcess/ApplicationCache/WebApplicationCacheManager.h \ 444 WebProcess/ApplicationCache/WebApplicationCacheManager.cpp \
|
D | ChangeLog | 1259 * WebProcess/ApplicationCache/WebApplicationCacheManager.cpp: 5250 * WebProcess/ApplicationCache/WebApplicationCacheManager.cpp: 7620 …* WebProcess/ApplicationCache/WebApplicationCacheManager.cpp: calling ApplicationCacheGroup::delet… 12434 * WebProcess/ApplicationCache/WebApplicationCacheManager.h: 12625 * WebProcess/ApplicationCache: Added. 12626 * WebProcess/ApplicationCache/WebApplicationCacheManager.cpp: Added. 12633 * WebProcess/ApplicationCache/WebApplicationCacheManager.h: Added. 12634 * WebProcess/ApplicationCache/WebApplicationCacheManager.messages.in: Added.
|
/external/webkit/Source/WebKit/haiku/ |
D | ChangeLog | 511 Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas)
|
/external/webkit/Source/WebCore/ |
D | Android.mk | 463 loader/appcache/ApplicationCache.cpp \
|
D | ChangeLog-2008-08-10 | 1405 * loader/appcache/ApplicationCache.cpp: 1406 (WebCore::ApplicationCache::~ApplicationCache): 21629 * loader/appcache/ApplicationCache.cpp: 21630 (WebCore::ApplicationCache::clearStorageID): 21631 * loader/appcache/ApplicationCache.h: 21933 * loader/appcache/ApplicationCache.cpp: Include stdio.h 21934 as we are using printf in ApplicationCache::dump(). 22579 * loader/appcache/ApplicationCache.cpp: 22580 (WebCore::ApplicationCache::ApplicationCache): 22833 * loader/appcache/ApplicationCache.cpp: [all …]
|
D | WebCore.pro | 1796 loader/appcache/ApplicationCache.h \ 3409 loader/appcache/ApplicationCache.cpp \
|
D | CMakeLists.txt | 965 loader/appcache/ApplicationCache.cpp
|
/external/webkit/Source/WebKit/ |
D | ChangeLog | 621 Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas) 647 Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas) 2691 ApplicationCache should have size limit
|
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/ |
D | project.pbxproj | 1182 …= sourcecode.cpp.cpp; name = WebApplicationCacheManager.cpp; path = ApplicationCache/WebApplicatio… 1183 …eType = sourcecode.c.h; name = WebApplicationCacheManager.h; path = ApplicationCache/WebApplicatio… 1184 …eType = text; name = WebApplicationCacheManager.messages.in; path = ApplicationCache/WebApplicatio… 2315 512E352A130B559900ABD19A /* ApplicationCache */ = { 2322 name = ApplicationCache; 2384 512E352A130B559900ABD19A /* ApplicationCache */,
|
/external/webkit/Source/WebKit/wx/ |
D | ChangeLog | 916 Limit ApplicationCache Total and Per-Origin Storage Capacity (Quotas) 2088 ApplicationCache should have size limit
|