Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java63 Key cacheKey = (Key) o; in equals() local
64 return Objects.equals(account, cacheKey.account) in equals()
65 && Objects.equals(packageName, cacheKey.packageName) in equals()
66 && Objects.equals(tokenType, cacheKey.tokenType) in equals()
67 && Arrays.equals(sigDigest, cacheKey.sigDigest); in equals()
/aosp14/frameworks/base/core/java/android/app/
H A DApplicationLoaders.java96 ClassLoader parent, String cacheKey, in getClassLoader() argument
119 ClassLoader loader = mLoaders.get(cacheKey); in getClassLoader()
138 if (cacheKey != null) { in getClassLoader()
139 mLoaders.put(cacheKey, classloader); in getClassLoader()
265 String cacheKey) { in createAndCacheWebViewClassLoader() argument
273 cacheKey, null /* classLoaderName */, null /* sharedLibraries */, in createAndCacheWebViewClassLoader()
/aosp14/frameworks/base/services/core/java/com/android/server/pm/parsing/
H A DPackageCacher.java166 final String cacheKey = getCacheKey(packageFile, flags); in getCachedResult() local
167 final File cacheFile = new File(mCacheDir, cacheKey); in getCachedResult()
197 final String cacheKey = getCacheKey(packageFile, flags); in cacheResult() local
198 final File cacheFile = new File(mCacheDir, cacheKey); in cacheResult()
/aosp14/frameworks/base/location/java/com/android/internal/location/altitude/
H A DGeoidHeightMap.java113 long cacheKey = getCacheKey(params, s2CellIds[i]); in getUnitIntervalValues() local
114 tiles[i] = tileFunction.getTile(cacheKey); in getUnitIntervalValues()
334 return cacheKey -> { in loadFromCacheAndDisk()
336 if (cacheKeys[i] == cacheKey) { in loadFromCacheAndDisk()
355 TileFunction diskTileFunction = cacheKey -> diskTile;
395 S2TileProto getTile(long cacheKey);
/aosp14/frameworks/base/core/java/com/android/internal/os/
H A DWebViewZygoteInit.java88 String cacheKey) { in handlePreloadPackage() argument
95 packagePath, libsPath, cacheKey); in handlePreloadPackage()
H A DZygoteConnection.java476 String cacheKey) { in handlePreloadPackage() argument
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/controls/ui/
H A DMediaViewController.kt422 var cacheKey = getKey(state, isGutsVisible, tmpKey) regex
423 val viewState = viewStates[cacheKey]
432 cacheKey = cacheKey.copy()
451 viewStates[cacheKey] = result
/aosp14/frameworks/base/services/core/java/com/android/server/notification/
H A DValidateNotificationPeople.java283 final String cacheKey = getCacheKey(context.getUserId(), handle); in validatePeople() local
284 LookupResult lookupResult = mPeopleCache.get(cacheKey); in validatePeople()
549 final String cacheKey = getCacheKey(mContext.getUserId(), handle); in work() local
553 lookupResult = mPeopleCache.get(cacheKey); in work()
582 mPeopleCache.put(cacheKey, lookupResult); in work()
/aosp14/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionManager.java2786 Pair<Context, Integer> cacheKey = null; in getResourcesForSubId() local
2788 cacheKey = Pair.create(context, subId); in getResourcesForSubId()
2789 if (sResourcesCache.containsKey(cacheKey)) { in getResourcesForSubId()
2791 return sResourcesCache.get(cacheKey); in getResourcesForSubId()
2804 cacheKey = null; in getResourcesForSubId()
2807 cacheKey = null; in getResourcesForSubId()
2822 if (cacheKey != null) { in getResourcesForSubId()
2824 sResourcesCache.put(cacheKey, res); in getResourcesForSubId()
/aosp14/frameworks/base/core/java/android/os/
H A DZygoteProcess.java1121 String packagePath, String libsPath, String libFileName, String cacheKey, String abi) in preloadPackageForAbi() argument
1140 state.mZygoteOutputWriter.write(cacheKey); in preloadPackageForAbi()