Home
last modified time | relevance | path

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

/packages/modules/Connectivity/staticlibs/framework/com/android/net/module/util/
DPerUidCounter.java36 final SparseIntArray mUidToCount = new SparseIntArray(); field in PerUidCounter
61 final long newCount = ((long) mUidToCount.get(uid, 0)) + 1; in incrementCountOrThrow()
67 mUidToCount.put(uid, (int) newCount); in incrementCountOrThrow()
80 final int newCount = mUidToCount.get(uid, 0) - 1; in decrementCountOrThrow()
84 mUidToCount.delete(uid); in decrementCountOrThrow()
86 mUidToCount.put(uid, newCount); in decrementCountOrThrow()
92 return mUidToCount.get(uid, 0); in get()