/frameworks/base/core/java/android/app/slice/ |
D | Slice.java | 429 public Builder addSubSlice(@NonNull Slice slice, @Nullable @SliceSubtype String subType) { in addSubSlice() argument 431 mItems.add(new SliceItem(slice, SliceItem.FORMAT_SLICE, subType, in addSubSlice() 442 @Nullable @SliceSubtype String subType) { in addAction() argument 447 mItems.add(new SliceItem(action, s, SliceItem.FORMAT_ACTION, subType, hints.toArray( in addAction() 457 public Builder addText(CharSequence text, @Nullable @SliceSubtype String subType, in addText() argument 459 mItems.add(new SliceItem(text, SliceItem.FORMAT_TEXT, subType, hints)); in addText() 468 public Builder addIcon(Icon icon, @Nullable @SliceSubtype String subType, in addIcon() argument 471 mItems.add(new SliceItem(icon, SliceItem.FORMAT_IMAGE, subType, hints)); in addIcon() 481 @Nullable @SliceSubtype String subType, in addRemoteInput() argument 485 subType, hints)); in addRemoteInput() [all …]
|
D | SliceItem.java | 131 public SliceItem(Object obj, @SliceType String format, String subType, in SliceItem() argument 133 this(obj, format, subType, hints.toArray(new String[hints.size()])); in SliceItem() 139 public SliceItem(Object obj, @SliceType String format, String subType, in SliceItem() argument 143 mSubType = subType; in SliceItem() 150 public SliceItem(PendingIntent intent, Slice slice, String format, String subType, in SliceItem() argument 152 this(new Pair<>(intent, slice), format, subType, hints); in SliceItem()
|
/frameworks/av/media/libmedia/ |
D | MediaResource.cpp | 28 this->subType = SubType::kUnspecifiedSubType; in MediaResource() 32 MediaResource::MediaResource(Type type, SubType subType, int64_t value) { in MediaResource() argument 34 this->subType = subType; in MediaResource() 40 this->subType = SubType::kUnspecifiedSubType; in MediaResource() 85 asString(resource.type), asString(resource.subType), in toString()
|
/frameworks/base/media/java/android/media/tv/tuner/filter/ |
D | Filter.java | 197 int type, int subType, FilterConfiguration settings); in nativeConfigureFilter() argument 251 int subType = (s == null) ? mSubtype : s.getType(); in configure() local 252 if (mMainType != config.getType() || mSubtype != subType) { in configure() 255 + config.getType() + ", config subtype=" + subType); in configure() 257 return nativeConfigureFilter(config.getType(), subType, config); in configure()
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/ |
D | ANQPParser.java | 127 int subType = payload.get() & 0xFF; in parseVendorSpecificElement() local 128 Constants.ANQPElementType hs20ID = Constants.mapHS20Element(subType); in parseVendorSpecificElement() 130 throw new ProtocolException("Unsupported subtype: " + subType); in parseVendorSpecificElement()
|
/frameworks/base/core/java/android/net/ |
D | NetworkIdentity.java | 54 int type, int subType, String subscriberId, String networkId, boolean roaming, in NetworkIdentity() argument 57 mSubType = subType; in NetworkIdentity() 187 boolean defaultNetwork, @NetworkType int subType) { in buildNetworkIdentity() argument 219 return new NetworkIdentity(type, subType, subscriberId, networkId, roaming, metered, in buildNetworkIdentity()
|
D | NetworkTemplate.java | 248 String networkId, int metered, int roaming, int defaultNetwork, int subType) { in NetworkTemplate() argument 256 mSubType = subType; in NetworkTemplate()
|
/frameworks/base/services/core/java/com/android/server/net/ |
D | NetworkIdentitySet.java | 55 final int subType = in.readInt(); in NetworkIdentitySet() local 87 add(new NetworkIdentity(type, subType, subscriberId, networkId, roaming, metered, in NetworkIdentitySet()
|
D | NetworkStatsService.java | 1279 final int subType = combineSubtypeEnabled ? SUBTYPE_COMBINED in updateIfacesLocked() local 1282 isDefault, subType); in updateIfacesLocked()
|
/frameworks/av/services/mediaresourcemanager/ |
D | ResourceManagerService.cpp | 133 if (resources[i].subType == MediaResource::SubType::kAudioCodec) { in notifyResourceGranted() 135 } else if (resources[i].subType == MediaResource::SubType::kVideoCodec) { in notifyResourceGranted() 299 && resource.subType == MediaResource::SubType::kUnspecifiedSubType) { in onFirstAdded() 308 && resource.subType == MediaResource::SubType::kVideoCodec) { in onFirstAdded() 316 && resource.subType == MediaResource::SubType::kUnspecifiedSubType in onLastRemoved() 322 && resource.subType == MediaResource::SubType::kVideoCodec) { in onLastRemoved() 364 const auto resType = std::tuple(res.type, res.subType, res.id); in addResource() 421 const auto resType = std::tuple(res.type, res.subType, res.id); in removeResource()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcNetworkAgent.java | 302 int subType = networkInfo.getSubtype(); in sendNetworkInfo() local 303 if (mNetworkInfo.getSubtype() != subType) { in sendNetworkInfo() 304 setLegacySubtype(subType, TelephonyManager.getNetworkTypeName(subType)); in sendNetworkInfo()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ |
D | AssistManager.java | 526 int subType = mHandleController.areHandlesShowing() ? 0 : 1; in toLoggingSubType() local 527 subType |= invocationType << 1; in toLoggingSubType() 528 subType |= phoneState << 4; in toLoggingSubType() 529 return subType; in toLoggingSubType()
|
/frameworks/av/media/libmedia/include/media/ |
D | MediaResource.h | 37 MediaResource(Type type, SubType subType, int64_t value);
|
/frameworks/base/telephony/java/android/telephony/ |
D | SubscriptionInfo.java | 269 int carrierId, int profileClass, int subType, @Nullable String groupOwner, in SubscriptionInfo() argument 294 this.mSubscriptionType = subType; in SubscriptionInfo() 777 int subType = source.readInt(); 788 groupUUID, isGroupDisabled, carrierid, profileClass, subType, groupOwner,
|
/frameworks/base/media/java/android/media/tv/tuner/ |
D | Tuner.java | 437 private native Filter nativeOpenFilter(int type, int subType, long bufferSize); in nativeOpenFilter() argument 933 public Filter openFilter(@Type int mainType, @Subtype int subType, in openFilter() argument 940 mainType, TunerUtils.getFilterSubtype(mainType, subType), bufferSize); in openFilter() 942 filter.setType(mainType, subType); in openFilter()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeSensors.java | 436 int subType = (int) event.values[0]; in onTrigger() local 439 subType); in onTrigger()
|
/frameworks/av/services/mediaresourcemanager/test/ |
D | ResourceManagerService_test.cpp | 34 return lhs.type == rhs.type && lhs.subType == rhs.subType && in operator ==() 196 const auto resType = std::tuple(res.type, res.subType, res.id); in isEqualResources()
|
/frameworks/base/media/jni/ |
D | android_media_tv_Tuner.cpp | 2585 JNIEnv *env, jobject thiz, jint type, jint subType, jlong bufferSize) { in android_media_tv_Tuner_open_filter() argument 2594 filterType.subType.tsFilterType(static_cast<DemuxTsFilterType>(subType)); in android_media_tv_Tuner_open_filter() 2597 filterType.subType.mmtpFilterType(static_cast<DemuxMmtpFilterType>(subType)); in android_media_tv_Tuner_open_filter() 2600 filterType.subType.ipFilterType(static_cast<DemuxIpFilterType>(subType)); in android_media_tv_Tuner_open_filter() 2603 filterType.subType.tlvFilterType(static_cast<DemuxTlvFilterType>(subType)); in android_media_tv_Tuner_open_filter() 2606 filterType.subType.alpFilterType(static_cast<DemuxAlpFilterType>(subType)); in android_media_tv_Tuner_open_filter()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | SubscriptionController.java | 561 int subType = cursor.getInt(cursor.getColumnIndexOrThrow( in getSubInfoRecord() local 580 + " profileClass:" + profileClass + " subscriptionType: " + subType in getSubInfoRecord() 593 groupUUID, false /* isGroupDisabled */, carrierId, profileClass, subType, in getSubInfoRecord()
|
D | RIL.java | 4347 info.subType = subId; in setUiccSubscription()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |