HomeSort by relevance Sort by last modified time
    Searched refs:ApplicationCacheResource (Results 1 - 18 of 18) sorted by null

  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.h 35 class ApplicationCacheResource : public SubstituteResource {
45 static PassRefPtr<ApplicationCacheResource> create(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> buffer = SharedBuffer::create(), const String& path = String())
48 return adoptRef(new ApplicationCacheResource(url, response, type, buffer, path));
67 ApplicationCacheResource(const KURL&, const ResourceResponse&, unsigned type, PassRefPtr<SharedBuffer>, const String& path);
ApplicationCache.h 41 class ApplicationCacheResource;
57 void addResource(PassRefPtr<ApplicationCacheResource> resource);
60 void setManifestResource(PassRefPtr<ApplicationCacheResource> manifest);
61 ApplicationCacheResource* manifestResource() const { return m_manifest; }
68 ApplicationCacheResource* resourceForRequest(const ResourceRequest&);
69 ApplicationCacheResource* resourceForURL(const String& url);
85 typedef HashMap<String, RefPtr<ApplicationCacheResource> > ResourceMap;
102 ApplicationCacheResource* m_manifest;
ApplicationCacheResource.cpp 27 #include "ApplicationCacheResource.h"
34 ApplicationCacheResource::ApplicationCacheResource(const KURL& url, const ResourceResponse& response, unsigned type, PassRefPtr<SharedBuffer> data, const String& path)
43 void ApplicationCacheResource::addType(unsigned type)
49 int64_t ApplicationCacheResource::estimatedSizeInStorage()
72 void ApplicationCacheResource::dumpType(unsigned type)
ApplicationCache.cpp 32 #include "ApplicationCacheResource.h"
66 void ApplicationCache::setManifestResource(PassRefPtr<ApplicationCacheResource> manifest)
70 ASSERT(manifest->type() & ApplicationCacheResource::Manifest);
77 void ApplicationCache::addResource(PassRefPtr<ApplicationCacheResource> resource)
87 ASSERT(resource->type() & ApplicationCacheResource::Master);
100 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url);
114 ApplicationCacheResource* ApplicationCache::resourceForURL(const String& url)
131 ApplicationCacheResource* ApplicationCache::resourceForRequest(const ResourceRequest& request)
213 HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator end = m_resources.end();
215 for (HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator it = m_resources.begin(); it != end; ++it)
    [all...]
ApplicationCacheStorage.h 43 class ApplicationCacheResource;
83 bool store(ApplicationCacheResource*, ApplicationCache*);
84 bool storeUpdatedType(ApplicationCacheResource*, ApplicationCache*);
108 typedef StorageIDJournal<ApplicationCacheResource> ResourceStorageIDJournal;
113 bool store(ApplicationCacheResource*, unsigned cacheStorageID);
116 bool shouldStoreResourceAsFlatFile(ApplicationCacheResource*);
ApplicationCacheGroup.cpp 33 #include "ApplicationCacheResource.h"
170 ApplicationCacheResource* resource = mainResourceCache->resourceForURL(resourceURL);
172 resource->addType(ApplicationCacheResource::Foreign);
244 if (ApplicationCacheResource* resource = m_newestCache->resourceForURL(url)) {
245 if (!(resource->type() & ApplicationCacheResource::Master)) {
246 resource->addType(ApplicationCacheResource::Master);
250 m_newestCache->addResource(ApplicationCacheResource::create(url, loader->response(), ApplicationCacheResource::Master, loader->mainResourceData()));
264 if (ApplicationCacheResource* resource = m_cacheBeingUpdated->resourceForURL(url)) {
265 if (!(resource->type() & ApplicationCacheResource::Master))
    [all...]
ApplicationCacheHost.cpp 33 #include "ApplicationCacheResource.h"
86 ApplicationCacheResource* resource = m_mainResourceApplicationCache->resourceForRequest(request);
166 ApplicationCacheResource* resource;
202 ApplicationCacheResource* resource;
223 ApplicationCacheResource* resource;
283 RefPtr<ApplicationCacheResource> resource = it->second;
285 bool isMaster = type & ApplicationCacheResource::Master;
286 bool isManifest = type & ApplicationCacheResource::Manifest;
287 bool isExplicit = type & ApplicationCacheResource::Explicit;
288 bool isForeign = type & ApplicationCacheResource::Foreign
    [all...]
ApplicationCacheGroup.h 45 class ApplicationCacheResource;
108 PassRefPtr<ResourceHandle> createResourceHandle(const KURL&, ApplicationCacheResource* newestCachedResource);
194 RefPtr<ApplicationCacheResource> m_currentResource;
200 RefPtr<ApplicationCacheResource> m_manifestResource;
ApplicationCacheHost.h 57 class ApplicationCacheResource;
160 bool shouldLoadResourceFromApplicationCache(const ResourceRequest&, ApplicationCacheResource*&);
161 bool getApplicationCacheFallbackResource(const ResourceRequest&, ApplicationCacheResource*&, ApplicationCache* = 0);
ApplicationCacheStorage.cpp 34 #include "ApplicationCacheResource.h"
209 ApplicationCacheResource* resource = cache->resourceForURL(url);
212 if (resource->type() & ApplicationCacheResource::Foreign)
243 ApplicationCacheResource* resource = cache->resourceForURL(url);
246 if (resource->type() & ApplicationCacheResource::Foreign)
282 if (cache->resourceForURL(fallbackURL)->type() & ApplicationCacheResource::Foreign)
317 if (cache->resourceForURL(fallbackURL)->type() & ApplicationCacheResource::Foreign)
776 bool ApplicationCacheStorage::store(ApplicationCacheResource* resource, unsigned cacheStorageID)
847 // The same ApplicationCacheResource are used in ApplicationCacheResource::size(
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/avfoundation/
MediaPlayerPrivateAVFoundationObjC.h 52 class ApplicationCacheResource;
90 virtual void createAVPlayerForCacheResource(ApplicationCacheResource*);
MediaPlayerPrivateAVFoundation.h 38 class ApplicationCacheResource;
164 virtual void createAVPlayerForCacheResource(ApplicationCacheResource*) = 0;
MediaPlayerPrivateAVFoundation.cpp 244 ApplicationCacheResource* resource = 0;
MediaPlayerPrivateAVFoundationObjC.mm 32 #import "ApplicationCacheResource.h"
251 void MediaPlayerPrivateAVFoundationObjC::createAVPlayerForCacheResource(ApplicationCacheResource* resource)
253 // AVFoundation can't open arbitrary data pointers, so if this ApplicationCacheResource doesn't
  /external/webkit/Source/WebCore/platform/graphics/mac/
MediaPlayerPrivateQTKit.h 58 class ApplicationCacheResource;
144 void createQTMovie(ApplicationCacheResource*);
MediaPlayerPrivateQTKit.mm 34 #include "ApplicationCacheResource.h"
308 void MediaPlayerPrivateQTKit::createQTMovie(ApplicationCacheResource* resource)
705 ApplicationCacheResource* resource = NULL;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/win/
MediaPlayerPrivateQuickTimeVisualContext.cpp 32 #include "ApplicationCacheResource.h"
379 ApplicationCacheResource* resource = 0;
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 466 loader/appcache/ApplicationCacheResource.cpp \
    [all...]

Completed in 264 milliseconds