HomeSort by relevance Sort by last modified time
    Searched defs:mUids (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/os/
WorkSource.java 19 int[] mUids;
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[sourceIndex] == mUids[sourceIndex - 1])
    [all...]
  /frameworks/base/core/java/android/app/usage/
NetworkStats.java 58 private int[] mUids;
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 != null)
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsRecorder.java 387 private final int[] mUids;
391 mUids = uids;
403 mTemp.removeUids(mUids);
NetworkPolicyManagerService.java     [all...]

Completed in 1465 milliseconds