Searched refs:fBlobIDCache (Results 1 – 4 of 4) sorted by relevance
33 const BlobIDCacheEntry* idEntry = fBlobIDCache.find(key.fUniqueID); in find()54 auto* idEntry = fBlobIDCache.find(id); in internalRemove()63 fBlobIDCache.remove(id); in internalRemove()71 fBlobIDCache.reset(); in freeAll()91 auto* idEntry = fBlobIDCache.find(msg.fBlobID); in internalPurgeStaleBlobs()104 fBlobIDCache.remove(msg.fBlobID); in internalPurgeStaleBlobs()144 auto* idEntry = fBlobIDCache.find(id); in internalAdd()146 idEntry = fBlobIDCache.set(id, BlobIDCacheEntry(id)); in internalAdd()
86 SkTHashMap<uint32_t, BlobIDCacheEntry> fBlobIDCache SK_GUARDED_BY(fSpinLock);
22 fBlobIDCache.foreach([this](uint32_t, BlobIDCacheEntry* entry) { in freeAll()28 fBlobIDCache.reset(); in freeAll()46 auto* idEntry = fBlobIDCache.find(msg.fBlobID); in purgeStaleBlobs()59 fBlobIDCache.remove(msg.fBlobID); in purgeStaleBlobs()
53 const auto* idEntry = fBlobIDCache.find(key.fUniqueID); in find()59 auto* idEntry = fBlobIDCache.find(id); in remove()66 fBlobIDCache.remove(id); in remove()159 auto* idEntry = fBlobIDCache.find(id); in add()161 idEntry = fBlobIDCache.set(id, BlobIDCacheEntry(id)); in add()178 SkTHashMap<uint32_t, BlobIDCacheEntry> fBlobIDCache; variable