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

  /frameworks/av/media/libmedia/
MediaResource.cpp 26 mSubType(kUnspecifiedSubType),
31 mSubType(kUnspecifiedSubType),
36 mSubType(subType),
41 mSubType = static_cast<SubType>(parcel.readInt32());
47 parcel->writeInt32(static_cast<int32_t>(mSubType));
53 str.appendFormat("%s/%s:%llu", asString(mType), asString(mSubType), (unsigned long long)mValue);
58 return (other.mType == mType) && (other.mSubType == mSubType) && (other.mValue == mValue);
  /frameworks/base/core/java/android/net/
NetworkIdentity.java 44 * When enabled, combine all {@link #mSubType} together under
56 final int mSubType;
66 mSubType = COMBINE_SUBTYPE_ENABLED ? SUBTYPE_COMBINED : subType;
75 return Objects.hash(mType, mSubType, mSubscriberId, mNetworkId, mRoaming, mMetered);
82 return mType == ident.mType && mSubType == ident.mSubType && mRoaming == ident.mRoaming
98 builder.append(TelephonyManager.getNetworkTypeName(mSubType));
100 builder.append(mSubType);
120 // Not dumping mSubType, subtypes are no longer supported.
137 return mSubType;
    [all...]
NetworkTemplate.java 324 switch (getNetworkClass(ident.mSubType)) {
344 switch (getNetworkClass(ident.mSubType)) {
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
MimeMultipart.java 34 protected String mSubType;
44 mSubType = MimeUtility.getHeaderParameter(contentType, null).split("/")[1];
81 this.mSubType = subType;
111 return mSubType;
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMultipart.java 36 protected String mSubType;
46 mSubType = MimeUtility.getHeaderParameter(contentType, null).split("/")[1];
81 this.mSubType = subType;
111 return mSubType;
  /frameworks/av/media/libmedia/include/media/
MediaResource.h 54 SubType mSubType;
  /frameworks/av/services/mediaresourcemanager/
ResourceManagerService.cpp 124 if (resources[i].mSubType == MediaResource::kAudioCodec) {
126 } else if (resources[i].mSubType == MediaResource::kVideoCodec) {

Completed in 351 milliseconds