Home
last modified time | relevance | path

Searched refs:m_nextInLiveResourcesList (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/loader/cache/
DMemoryCache.cpp513 …* current = m_liveDecodedResources.m_head; current; current = current->m_nextInLiveResourcesList) { in removeFromLiveDecodedResourcesList()
522 CachedResource* next = resource->m_nextInLiveResourcesList; in removeFromLiveDecodedResourcesList()
528 resource->m_nextInLiveResourcesList = 0; in removeFromLiveDecodedResourcesList()
537 prev->m_nextInLiveResourcesList = next; in removeFromLiveDecodedResourcesList()
545 …ASSERT(!resource->m_nextInLiveResourcesList && !resource->m_prevInLiveResourcesList && !resource->… in insertInLiveDecodedResourcesList()
548 resource->m_nextInLiveResourcesList = m_liveDecodedResources.m_head; in insertInLiveDecodedResourcesList()
553 if (!resource->m_nextInLiveResourcesList) in insertInLiveDecodedResourcesList()
559 …* current = m_liveDecodedResources.m_head; current; current = current->m_nextInLiveResourcesList) { in insertInLiveDecodedResourcesList()
DCachedResource.h280 CachedResource* m_nextInLiveResourcesList; variable
DCachedResource.cpp102 , m_nextInLiveResourcesList(0) in CachedResource()