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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeMultipart.java 36 protected String mSubType;
46 mSubType = MimeUtility.getHeaderParameter(contentType, null).split("/")[1];
81 this.mSubType = subType;
109 return mSubType;
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 39 * When enabled, combine all {@link #mSubType} together under
47 final int mSubType;
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 362 milliseconds