Home | History | Annotate | Download | only in net

Lines Matching defs:mUids

80         mUids = null;
96 setUids(nc.mUids); // Will make the defensive copy
986 * For networks, mUids represent the list of network this applies to, and null means this
988 * For requests, mUids is the list of UIDs this network MUST apply to to match ; ALL UIDs
990 * a null mUids field for requests mean "no requirements" rather than what the general rule
995 * mUids is typically (and at this time, only) used by VPN. This network is only available to
1018 private ArraySet<UidRange> mUids = null;
1038 mUids = null;
1040 mUids = new ArraySet<>(uids);
1051 return null == mUids ? null : new ArraySet<>(mUids);
1059 if (null == mUids) return true;
1060 for (UidRange range : mUids) {
1084 Set<UidRange> comparedUids = nc.mUids;
1085 if (null == comparedUids) return null == mUids;
1086 if (null == mUids) return false;
1087 // Make a copy so it can be mutated to check that all ranges in mUids
1089 final Set<UidRange> uids = new ArraySet<>(mUids);
1117 if (null == nc.mUids || null == mUids) return true; // The network satisfies everything.
1118 for (UidRange requiredRange : mUids) {
1137 if (null == mUids) return true;
1138 for (UidRange uidRange : mUids) {
1152 if (null == nc.mUids || null == mUids) {
1153 mUids = null;
1156 mUids.addAll(nc.mUids);
1349 + Objects.hashCode(mUids) * 31
1366 dest.writeArraySet(mUids);
1383 netCap.mUids = (ArraySet<UidRange>) in.readArraySet(
1425 if (null != mUids) {
1426 if ((1 == mUids.size()) && (mUids.valueAt(0).count() == 1)) {
1427 sb.append(" Uid: ").append(mUids.valueAt(0).start);
1429 sb.append(" Uids: <").append(mUids).append(">");