Searched defs:mSubscriberId (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkIdentity.java48 final String mSubscriberId; field in class:NetworkIdentity
56 mSubscriberId = subscriberId;
63 return Objects.hashCode(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
71 && Objects.equal(mSubscriberId, ident.mSubscriberId)
89 if (mSubscriberId != null) {
90 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
110 return mSubscriberId;
H A DNetworkTemplate.java137 private final String mSubscriberId; field in class:NetworkTemplate
142 mSubscriberId = subscriberId;
148 mSubscriberId = in.readString();
155 dest.writeString(mSubscriberId);
168 if (mSubscriberId != null) {
169 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
179 return Objects.hashCode(mMatchRule, mSubscriberId, mNetworkId);
187 && Objects.equal(mSubscriberId, other.mSubscriberId)
198 return mSubscriberId;
[all...]

Completed in 215 milliseconds