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 48 final String mSubscriberId;
56 mSubscriberId = subscriberId;
63 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
71 && Objects.equals(mSubscriberId, ident.mSubscriberId)
89 if (mSubscriberId != null) {
90 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
110 return mSubscriberId;
NetworkTemplate.java 138 private final String mSubscriberId;
143 mSubscriberId = subscriberId;
149 mSubscriberId = in.readString();
156 dest.writeString(mSubscriberId);
169 if (mSubscriberId != null) {
170 builder.append(", subscriberId=").append(scrubSubscriberId(mSubscriberId));
180 return Objects.hash(mMatchRule, mSubscriberId, mNetworkId);
188 && Objects.equals(mSubscriberId, other.mSubscriberId)
199 return mSubscriberId;
    [all...]

Completed in 63 milliseconds