Searched refs:mUids (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/os/
H A DWorkSource.java19 int[] mUids; field in class:WorkSource
54 if (orig.mUids != null) {
55 mUids = orig.mUids.clone();
58 mUids = null;
66 mUids = new int[] { uid, 0 };
76 mUids = new int[] { uid, 0 };
82 mUids = in.createIntArray();
93 return mUids[index];
114 if (mUids[sourceInde
[all...]
/frameworks/base/core/java/android/app/usage/
H A DNetworkStats.java58 private int[] mUids; field in class:NetworkStats
61 * Index of the current uid in mUids when doing uid enumeration or a single uid value,
514 mUids = filteredUids.toArray();
612 return mUids != null;
616 return isUidEnumeration() && (mUidOrUidIndex + 1) < mUids.length;
622 if (mUidOrUidIndex < 0 || mUidOrUidIndex >= mUids.length) {
624 "Index=" + mUidOrUidIndex + " mUids.length=" + mUids.length);
626 return mUids[mUidOrUidIndex];
638 if (mUids !
[all...]
/frameworks/base/services/core/java/com/android/server/net/
H A DNetworkStatsRecorder.java390 private final int[] mUids; field in class:NetworkStatsRecorder.RemoveUidRewriter
394 mUids = uids;
406 mTemp.removeUids(mUids);
H A DNetworkPolicyManagerService.java4451 private final int[] mUids; field in class:NetworkPolicyManagerService.ProcStateSeqHistory
4453 * Used for storing the sequence numbers associated with {@link #mUids}.
4463 mUids = new int[mMaxCapacity];
4464 Arrays.fill(mUids, INVALID_UID);
4470 mUids[mHistoryNext] = uid;
4477 if (mUids[0] == INVALID_UID) {
4484 if (mUids[index] == INVALID_UID) {
4487 fout.println(getString(mUids[index], mProcStateSeqs[index]));

Completed in 1320 milliseconds