Searched refs:mClientCountByResolution (Results 1 – 1 of 1) sorted by relevance
126 private final ArrayMap<Float, Integer> mClientCountByResolution; field in SubscriptionManager.RateInfoForClients136 mClientCountByResolution = new ArrayMap<>(); in RateInfoForClients()144 mClientCountByResolution = new ArrayMap<>(other.mClientCountByResolution); in RateInfoForClients()216 if (!mClientCountByResolution.containsKey(resolution)) { in add()218 mClientCountByResolution.put(resolution, 1); in add()220 mClientCountByResolution.put(resolution, in add()221 mClientCountByResolution.get(resolution) + 1); in add()244 if (mClientCountByResolution.containsKey(resolution)) { in remove()245 int newCount = mClientCountByResolution.get(resolution) - 1; in remove()247 mClientCountByResolution.remove(resolution); in remove()[all …]