OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:manifestURL
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/WebCore/loader/appcache/
ManifestParser.h
44
bool parseManifest(const KURL&
manifestURL
, const char* data, int length, Manifest&);
ManifestParser.cpp
41
bool parseManifest(const KURL&
manifestURL
, const char* data, int length, Manifest& manifest)
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))
ApplicationCacheStorage.h
76
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
);
ApplicationCacheStorage.cpp
99
ApplicationCacheGroup* ApplicationCacheStorage::loadCacheGroup(const KURL&
manifestURL
)
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
)
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
);
[
all
...]
ApplicationCacheGroup.h
59
ApplicationCacheGroup(const KURL&
manifestURL
, bool isCopy = false);
67
static void selectCache(Frame*, const KURL&
manifestURL
);
70
const KURL&
manifestURL
() const { return m_manifestURL; }
ApplicationCacheGroup.cpp
58
ApplicationCacheGroup::ApplicationCacheGroup(const KURL&
manifestURL
, bool isCopy)
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
);
[
all
...]
ApplicationCacheHost.h
123
void selectCacheWithManifest(const KURL&
manifestURL
);
ApplicationCacheHost.cpp
71
void ApplicationCacheHost::selectCacheWithManifest(const KURL&
manifestURL
)
73
ApplicationCacheGroup::selectCache(m_documentLoader->frame(),
manifestURL
);
/external/webkit/Source/WebKit/chromium/public/
WebApplicationCacheHost.h
86
virtual bool selectCacheWithManifest(const WebURL&
manifestURL
) { return true; }
100
WebURL
manifestURL
; // Empty if there is no associated cache.
/external/chromium/chrome/browser/ui/cocoa/content_settings/
cookie_details.h
159
- (NSString*)
manifestURL
;
195
- (id)initWithAppCacheManifestURL:(const std::string&)
manifestURL
;
/external/webkit/Source/WebKit/chromium/src/
ApplicationCacheHost.cpp
101
void ApplicationCacheHost::selectCacheWithManifest(const KURL&
manifestURL
)
104
if (!m_internal->m_outerHost->selectCacheWithManifest(
manifestURL
)) {
232
return CacheInfo(webInfo.
manifestURL
, webInfo.creationTime, webInfo.updateTime, webInfo.totalSize);
Completed in 5244 milliseconds