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

/frameworks/base/core/java/android/net/
H A DNetworkIdentity.java42 * When enabled, combine all {@link #mSubType} together under
54 final int mSubType; field in class:NetworkIdentity
62 mSubType = COMBINE_SUBTYPE_ENABLED ? SUBTYPE_COMBINED : subType;
70 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming);
77 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
92 builder.append(TelephonyManager.getNetworkTypeName(mSubType));
94 builder.append(mSubType);
113 return mSubType;
192 res = Integer.compare(mSubType, anothe
[all...]

Completed in 485 milliseconds