Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/net/
H A DSSLSessionCache.java44 /* package */ final SSLClientSessionCache mSessionCache; field in SSLSessionCache
63 cache == null ? null : cache.mSessionCache); in install()
77 mSessionCache = (SSLClientSessionCache) cache; in SSLSessionCache()
89 mSessionCache = FileClientSessionCache.usingDirectory(dir); in SSLSessionCache()
106 mSessionCache = cache; in SSLSessionCache()
H A DSSLCertificateSocketFactory.java132 private final SSLClientSessionCache mSessionCache; field in SSLCertificateSocketFactory
146 mSessionCache = cache == null ? null : cache.mSessionCache; in SSLCertificateSocketFactory()
259 .setPersistentCache(mSessionCache); in makeSocketFactory()
/aosp14/frameworks/base/services/core/java/com/android/server/textclassifier/
H A DTextClassificationManagerService.java174 private final SessionCache mSessionCache; field in TextClassificationManagerService
189 mSessionCache = new SessionCache(mLock); in TextClassificationManagerService()
370 mSessionCache.put(sessionId, classificationContext); in onCreateTextClassificationSession()
390 mSessionCache.get(sessionId.getToken()); in onDestroyTextClassificationSession()
406 mSessionCache.remove(sessionId.getToken()); in onDestroyTextClassificationSession()
473 pw.println("Number of active sessions: " + mSessionCache.size()); in dump()