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

/frameworks/base/core/java/android/net/
H A DNetworkIdentity.java39 * When enabled, combine all {@link #mSubType} together under
47 final int mSubType; field in class:NetworkIdentity
55 mSubType = COMBINE_SUBTYPE_ENABLED ? SUBTYPE_COMBINED : subType;
63 return Objects.hashCode(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
70 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
85 builder.append(TelephonyManager.getNetworkTypeName(mSubType));
87 builder.append(mSubType);
106 return mSubType;

Completed in 54 milliseconds