Home
last modified time | relevance | path

Searched refs:m_preloads (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/loader/cache/
DCachedResourceLoader.cpp716 if (!resource || (m_preloads && m_preloads->contains(resource))) in requestPreload()
720 if (!m_preloads) in requestPreload()
721 m_preloads = adoptPtr(new ListHashSet<CachedResource*>); in requestPreload()
722 m_preloads->add(resource); in requestPreload()
734 if (!m_preloads) in clearPreloads()
737 ListHashSet<CachedResource*>::iterator end = m_preloads->end(); in clearPreloads()
738 for (ListHashSet<CachedResource*>::iterator it = m_preloads->begin(); it != end; ++it) { in clearPreloads()
746 m_preloads.clear(); in clearPreloads()
763 ListHashSet<CachedResource*>::iterator end = m_preloads.end(); in printPreloadStats()
764 for (ListHashSet<CachedResource*>::iterator it = m_preloads.begin(); it != end; ++it) { in printPreloadStats()
[all …]
DCachedResourceLoader.h142 OwnPtr<ListHashSet<CachedResource*> > m_preloads; variable
/external/webkit/Source/WebCore/
DChangeLog-2010-05-244169 Allocate the m_preloads list hash set dynamically and free it when done.
DChangeLog-2008-08-1020025 (WebCore::DocLoader::clearPreloads): If a resource is in m_preloads but