Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DImageDecodingStore.cpp50 ASSERT(!m_decoderCacheMap.size()); in ~ImageDecodingStore()
67 …DecoderCacheMap::iterator iter = m_decoderCacheMap.find(DecoderCacheEntry::makeCacheKey(generator,… in lockDecoder()
68 if (iter == m_decoderCacheMap.end()) in lockDecoder()
83 …DecoderCacheMap::iterator iter = m_decoderCacheMap.find(DecoderCacheEntry::makeCacheKey(generator,… in unlockDecoder()
84 ASSERT_WITH_SECURITY_IMPLICATION(iter != m_decoderCacheMap.end()); in unlockDecoder()
102 ASSERT(!m_decoderCacheMap.contains(newCacheEntry->cacheKey())); in insertDecoder()
103 insertCacheInternal(newCacheEntry.release(), &m_decoderCacheMap, &m_decoderCacheKeyMap); in insertDecoder()
111 …DecoderCacheMap::iterator iter = m_decoderCacheMap.find(DecoderCacheEntry::makeCacheKey(generator,… in removeDecoder()
112 ASSERT_WITH_SECURITY_IMPLICATION(iter != m_decoderCacheMap.end()); in removeDecoder()
136 …removeCacheIndexedByGeneratorInternal(&m_decoderCacheMap, &m_decoderCacheKeyMap, generator, &cache… in removeCacheIndexedByGenerator()
[all …]
DImageDecodingStore.h196 DecoderCacheMap m_decoderCacheMap; variable