Home
last modified time | relevance | path

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

/packages/modules/HealthFitness/framework/java/android/health/connect/ratelimiter/
DRateLimiter.java53 private static final Map<Integer, Map<Integer, Quota>> sUserIdToQuotasMap = new HashMap<>(); field in RateLimiter
240 sUserIdToQuotasMap.clear(); in clearCache()
329 sUserIdToQuotasMap in spendResources()
373 if (!sUserIdToQuotasMap.containsKey(uid)) { in getQuota()
374 sUserIdToQuotasMap.put(uid, new HashMap<>()); in getQuota()
376 Map<Integer, Quota> packageQuotas = sUserIdToQuotasMap.get(uid); in getQuota()