Home
last modified time | relevance | path

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

/system/core/libutils/include/utils/
DLruCache.h127 mCache(cache), mIterator(mCache.mSet->begin()), mBeginReturned(false) { in Iterator()
131 if (mIterator == mCache.mSet->end()) { in next()
141 bool ret = (mIterator != mCache.mSet->end()); in next()
155 const LruCache<TKey, TValue>& mCache;
/system/tools/hidl/
DCoordinator.cpp230 auto it = mCache.find(fqName); in parseOptional()
231 if (it != mCache.end()) { in parseOptional()
247 mCache[fqName] = nullptr; in parseOptional()
267 mCache.erase(fqName); // nullptr in cache is used to find circular imports in parseOptional()
338 mCache[fqName] = *ast; in parseOptional()
343 mCache[fqName] = nullptr; in parseOptional()
DCoordinator.h198 mutable std::map<FQName, AST *> mCache; member