Searched refs:manifestURL (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/loader/appcache/
H A DManifestParser.h44 bool parseManifest(const KURL& manifestURL, const char* data, int length, Manifest&);
H A DManifestParser.cpp41 bool parseManifest(const KURL& manifestURL, const char* data, int length, Manifest& manifest) argument
119 KURL url(manifestURL, String(line.characters(), p - line.characters()));
127 if (!equalIgnoringCase(url.protocol(), manifestURL.protocol()))
130 if (mode == Explicit && manifestURL.protocolIs("https") && !protocolHostAndPortAreEqual(manifestURL, url))
151 KURL namespaceURL(manifestURL, String(line.characters(), p - line.characters()));
157 if (!protocolHostAndPortAreEqual(manifestURL, namespaceURL))
169 KURL fallbackURL(manifestURL, String(fallbackStart, p - fallbackStart));
175 if (!protocolHostAndPortAreEqual(manifestURL, fallbackURL))
H A DApplicationCacheStorage.h76 ApplicationCacheGroup* findOrCreateCacheGroup(const KURL& manifestURL);
77 ApplicationCacheGroup* findInMemoryCacheGroup(const KURL& manifestURL) const;
94 bool cacheGroupSize(const String& manifestURL, int64_t* size);
95 bool deleteCacheGroup(const String& manifestURL);
106 ApplicationCacheGroup* loadCacheGroup(const KURL& manifestURL);
H A DApplicationCacheStorage.cpp99 ApplicationCacheGroup* ApplicationCacheStorage::loadCacheGroup(const KURL& manifestURL) argument
105 SQLiteStatement statement(m_database, "SELECT id, manifestURL, newestCache FROM CacheGroups WHERE newestCache IS NOT NULL AND manifestURL=?");
109 statement.bindText(1, manifestURL);
126 ApplicationCacheGroup* group = new ApplicationCacheGroup(manifestURL);
134 ApplicationCacheGroup* ApplicationCacheStorage::findOrCreateCacheGroup(const KURL& manifestURL) argument
136 ASSERT(!manifestURL.hasFragmentIdentifier());
138 std::pair<CacheGroupMap::iterator, bool> result = m_cachesInMemory.add(manifestURL, 0);
146 ApplicationCacheGroup* group = loadCacheGroup(manifestURL);
150 group = new ApplicationCacheGroup(manifestURL);
228 KURL manifestURL = KURL(ParsedURLString, statement.getColumnText(1)); local
298 KURL manifestURL = KURL(ParsedURLString, statement.getColumnText(1)); local
1315 cacheGroupSize(const String& manifestURL, int64_t* size) argument
1341 deleteCacheGroup(const String& manifestURL) argument
[all...]
H A DApplicationCacheGroup.h59 ApplicationCacheGroup(const KURL& manifestURL, bool isCopy = false);
67 static void selectCache(Frame*, const KURL& manifestURL);
70 const KURL& manifestURL() const { return m_manifestURL; } function in class:WebCore::ApplicationCacheGroup
H A DApplicationCacheGroup.cpp58 ApplicationCacheGroup::ApplicationCacheGroup(const KURL& manifestURL, bool isCopy) argument
59 : m_manifestURL(manifestURL)
60 , m_origin(SecurityOrigin::create(manifestURL))
152 KURL manifestURL(passedManifestURL);
153 if (manifestURL.hasFragmentIdentifier())
154 manifestURL.removeFragmentIdentifier();
159 if (manifestURL == mainResourceCache->group()->m_manifestURL) {
192 if (!protocolHostAndPortAreEqual(manifestURL, request.url()))
202 ApplicationCacheGroup* group = cacheStorage().findOrCreateCacheGroup(manifestURL);
H A DApplicationCacheHost.h123 void selectCacheWithManifest(const KURL& manifestURL);
H A DApplicationCacheHost.cpp71 void ApplicationCacheHost::selectCacheWithManifest(const KURL& manifestURL) argument
73 ApplicationCacheGroup::selectCache(m_documentLoader->frame(), manifestURL);
/external/webkit/Source/WebKit/chromium/public/
H A DWebApplicationCacheHost.h86 virtual bool selectCacheWithManifest(const WebURL& manifestURL) { return true; } argument
100 WebURL manifestURL; // Empty if there is no associated cache. member in struct:WebKit::WebApplicationCacheHost::CacheInfo
/external/chromium/chrome/browser/ui/cocoa/content_settings/
H A Dcookie_details.h159 - (NSString*)manifestURL;
195 - (id)initWithAppCacheManifestURL:(const std::string&)manifestURL;
/external/webkit/Source/WebKit/chromium/src/
H A DApplicationCacheHost.cpp101 void ApplicationCacheHost::selectCacheWithManifest(const KURL& manifestURL) argument
104 if (!m_internal->m_outerHost->selectCacheWithManifest(manifestURL)) {
232 return CacheInfo(webInfo.manifestURL, webInfo.creationTime, webInfo.updateTime, webInfo.totalSize);

Completed in 1561 milliseconds