Home
last modified time | relevance | path

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

/system/libhidl/libhidlcache/
DHidlCache.h36 HidlCacheLock(sp<HidlCache> cache, const Key& key) : mCache(cache), mKey(key) { in HidlCacheLock()
37 mCache->lock(mKey); in HidlCacheLock()
39 ~HidlCacheLock() { mCache->unlock(mKey); } in ~HidlCacheLock()
42 sp<HidlCache> mCache;
/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/netd/resolv/
DDnsTlsSocket.h51 : mMark(mark), mServer(server), mObserver(observer), mCache(cache) {} in DnsTlsSocket()
130 DnsTlsSessionCache* _Nonnull const mCache; variable
DDnsTlsTransport.h67 DnsTlsSessionCache mCache; variable
DDnsTlsSocket.cpp157 mCache->prepareSslContext(mSslCtx.get()); in initialize()
193 if (!mCache->prepareSsl(ssl.get())) { in sslConnect()
211 bssl::UniquePtr<SSL_SESSION> session = mCache->getSession(); in sslConnect()
DDnsTlsTransport.cpp64 mSocket = mFactory->createDnsTlsSocket(mServer, mMark, this, &mCache); in doConnect()
/system/tools/hidl/
DCoordinator.cpp225 auto it = mCache.find(fqName); in parseOptional()
226 if (it != mCache.end()) { in parseOptional()
242 mCache[fqName] = nullptr; in parseOptional()
274 mCache.erase(fqName); // nullptr in cache is used to find circular imports in parseOptional()
345 mCache[fqName] = *ast; in parseOptional()
350 mCache[fqName] = nullptr; in parseOptional()
DCoordinator.h177 mutable std::map<FQName, AST *> mCache; member