HomeSort by relevance Sort by last modified time
    Searched refs:mSubscriberId (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/net/
NetworkIdentity.java 55 final String mSubscriberId;
63 mSubscriberId = subscriberId;
70 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
78 && Objects.equals(mSubscriberId, ident.mSubscriberId)
96 if (mSubscriberId != null) {
97 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
117 return mSubscriberId;
194 if (res == 0 && mSubscriberId != null && another.mSubscriberId != null)
    [all...]
NetworkTemplate.java 151 private final String mSubscriberId;
172 mSubscriberId = subscriberId;
179 mSubscriberId = in.readString();
187 dest.writeString(mSubscriberId);
201 if (mSubscriberId != null) {
203 NetworkIdentity.scrubSubscriberId(mSubscriberId));
217 return Objects.hash(mMatchRule, mSubscriberId, mNetworkId);
225 && Objects.equals(mSubscriberId, other.mSubscriberId)
248 return mSubscriberId;
    [all...]

Completed in 2603 milliseconds