Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DApplicationLoaders.java161 if (mSystemLibsCacheMap != null) { in createAndCacheNonBootclasspathSystemClassLoaders()
165 mSystemLibsCacheMap = new HashMap<>(); in createAndCacheNonBootclasspathSystemClassLoaders()
188 CachedClassLoader cached = mSystemLibsCacheMap.get(dependencyPath); in createAndCacheNonBootclasspathSystemClassLoader()
215 mSystemLibsCacheMap.put(path, cached); in createAndCacheNonBootclasspathSystemClassLoader()
234 if (mSystemLibsCacheMap == null) { in getCachedNonBootclasspathSystemLib()
243 CachedClassLoader cached = mSystemLibsCacheMap.get(zip); in getCachedNonBootclasspathSystemLib()
318 private Map<String, CachedClassLoader> mSystemLibsCacheMap = null; field in ApplicationLoaders