Home
last modified time | relevance | path

Searched refs:m_resources (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/loader/appcache/
DApplicationCache.cpp80 ASSERT(!m_resources.contains(url)); in addResource()
90 m_resources.set(url, resource); in addResource()
95 HashMap<String, RefPtr<ApplicationCacheResource> >::iterator it = m_resources.find(url); in removeResource()
96 if (it == m_resources.end()) in removeResource()
102 m_resources.remove(it); in removeResource()
109 return m_resources.get(url).get(); in resourceForURL()
197 ResourceMap::const_iterator end = m_resources.end(); in clearStorageID()
198 for (ResourceMap::const_iterator it = m_resources.begin(); it != end; ++it) in clearStorageID()
205 HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator end = m_resources.end(); in dump()
207 …for (HashMap<String, RefPtr<ApplicationCacheResource> >::const_iterator it = m_resources.begin(); … in dump()
DApplicationCache.h86 ResourceMap::const_iterator begin() const { return m_resources.begin(); } in begin()
87 ResourceMap::const_iterator end() const { return m_resources.end(); } in end()
99 ResourceMap m_resources; variable
/external/webkit/WebCore/loader/
DCache.cpp130m_resources.set(url.string(), resource); // The size will be added in later once the resource is … in requestResource()
179 m_resources.set(url, userSheet); in requestUserCSSStyleSheet()
206 m_resources.set(url, newResource); in revalidateResource()
221 ASSERT(!m_resources.get(resource->url())); in revalidationSucceeded()
222 m_resources.set(resource->url(), resource); in revalidationSucceeded()
245 CachedResource* resource = m_resources.get(url); in resourceForURL()
414 m_resources.remove(resource->url()); in evict()
426 ASSERT(m_resources.get(resource->url()) != resource); in evict()
676 CachedResourceMap::iterator e = m_resources.end(); in getStatistics()
677 for (CachedResourceMap::iterator i = m_resources.begin(); i != e; ++i) { in getStatistics()
[all …]
DCache.h207 HashMap<String, CachedResource*> m_resources; variable
/external/webkit/WebCore/inspector/
DInspectorController.h213 const ResourcesMap& resources() const { return m_resources; } in resources()
295 ResourcesMap m_resources; variable
DInspectorController.cpp2100 ResourcesMap::iterator resourcesEnd = m_resources.end(); in populateScriptObjects()
2101 for (ResourcesMap::iterator it = m_resources.begin(); it != resourcesEnd; ++it) in populateScriptObjects()
2260 ResourcesMap::iterator resourcesEnd = m_resources.end(); in resetScriptObjects()
2261 for (ResourcesMap::iterator it = m_resources.begin(); it != resourcesEnd; ++it) { in resetScriptObjects()
2350 m_resources.set(resource->identifier, resource); in addResource()
2366 m_resources.remove(resource->identifier); in removeResource()
2440 InspectorResource* resource = m_resources.get(identifier).get(); in willSendRequest()
2469 InspectorResource* resource = m_resources.get(identifier).get(); in didReceiveResponse()
2488 InspectorResource* resource = m_resources.get(identifier).get(); in didReceiveContentLength()
2503 RefPtr<InspectorResource> resource = m_resources.get(identifier); in didFinishLoading()
[all …]
/external/webkit/WebCore/
DChangeLog12897 ASSERTION FAILED: !m_resources.contains(url) in ApplicationCache::addResource()