Searched refs:mHotCache (Results 1 – 2 of 2) sorted by relevance
428 if (mHotCache.find(entryHash) != mHotCache.end()) { in get()430 cacheEntry = mHotCache[entryHash].entryBuffer; in get()473 cacheEntry = mHotCache[entryHash].entryBuffer; in get()512 for (auto hotCacheIter = mHotCache.begin(); hotCacheIter != mHotCache.end();) { in finish()519 mHotCache.erase(hotCacheIter++); in finish()669 for (auto hotCacheIter = mHotCache.begin(); hotCacheIter != mHotCache.end();) { in addToHotCache()689 mHotCache[newEntryHash] = {newFd, newEntryBuffer, newEntrySize}; in addToHotCache()698 if (mHotCache.find(entryHash) != mHotCache.end()) { in removeFromHotCache()706 MultifileHotCache entry = mHotCache[entryHash]; in removeFromHotCache()711 mHotCache.erase(entryHash); in removeFromHotCache()
156 std::unordered_map<uint32_t, MultifileHotCache> mHotCache; variable