Home
last modified time | relevance | path

Searched refs:m_preloadCount (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/loader/cache/
DCachedResource.h177 …bool canDelete() const { return !hasClients() && !m_request && !m_preloadCount && !m_handleCount &… in canDelete()
194 bool isPreloaded() const { return m_preloadCount; } in isPreloaded()
195 void increasePreloadCount() { ++m_preloadCount; } in increasePreloadCount()
196 void decreasePreloadCount() { ASSERT(m_preloadCount); --m_preloadCount; } in decreasePreloadCount()
258 unsigned m_preloadCount; variable
DCachedResource.cpp87 , m_preloadCount(0) in CachedResource()