Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/os/
DWorkSource.java17 int[] mUids; field in WorkSource
52 if (orig.mUids != null) { in WorkSource()
53 mUids = orig.mUids.clone(); in WorkSource()
56 mUids = null; in WorkSource()
64 mUids = new int[] { uid, 0 }; in WorkSource()
74 mUids = new int[] { uid, 0 }; in WorkSource()
80 mUids = in.createIntArray(); in WorkSource()
91 return mUids[index]; in get()
112 if (mUids[sourceIndex] == mUids[sourceIndex - 1]) { in clearNames()
115 mUids[destIndex] = mUids[sourceIndex]; in clearNames()
[all …]
/frameworks/base/core/java/android/app/usage/
DNetworkStats.java55 private int[] mUids; field in NetworkStats
374 mUids = filteredUids.toArray(); in startUserUidEnumeration()
466 return mUids != null; in isUidEnumeration()
470 return isUidEnumeration() && (mUidOrUidIndex + 1) < mUids.length; in hasNextUid()
476 if (mUidOrUidIndex < 0 || mUidOrUidIndex >= mUids.length) { in getUid()
478 "Index=" + mUidOrUidIndex + " mUids.length=" + mUids.length); in getUid()
480 return mUids[mUidOrUidIndex]; in getUid()
491 if (mUids != null) { in stepUid()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsRecorder.java332 private final int[] mUids; field in NetworkStatsRecorder.RemoveUidRewriter
336 mUids = uids; in RemoveUidRewriter()
348 mTemp.removeUids(mUids); in read()