/aosp14/frameworks/base/telephony/java/android/telephony/ims/compat/ |
H A D | ImsService.java | 109 public void removeImsFeature(int slotId, int featureType) { 110 ImsService.this.removeImsFeature(slotId, featureType); 116 addImsFeatureStatusCallback(slotId, featureType, c); 122 removeImsFeatureStatusCallback(slotId, featureType, c); 183 addImsFeature(slotId, featureType, f); in setupFeature() 196 features.put(featureType, f); in addImsFeature() 210 ImsFeature f = features.get(featureType); in addImsFeatureStatusCallback() 227 ImsFeature f = features.get(featureType); in removeImsFeatureStatusCallback() 234 private void removeImsFeature(int slotId, int featureType) { in removeImsFeature() argument 243 ImsFeature f = features.get(featureType); in removeImsFeature() [all …]
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/stub/ |
H A D | ImsFeatureConfiguration.java | 50 public final @ImsFeature.FeatureType int featureType; field in ImsFeatureConfiguration.FeatureSlotPair 59 public FeatureSlotPair(int slotId, @ImsFeature.FeatureType int featureType) { in FeatureSlotPair() argument 61 this.featureType = featureType; in FeatureSlotPair() 72 return featureType == that.featureType; in equals() 78 result = 31 * result + featureType; in hashCode() 85 return "{s=" + slotId + ", f=" + ImsFeature.FEATURE_LOG_MAP.get(featureType) + "}"; in toString() 111 public Builder addFeature(int slotId, @ImsFeature.FeatureType int featureType) { in addFeature() argument 112 mConfig.addFeature(slotId, featureType); in addFeature() 197 dest.writeInt(featureSlotPair.featureType); in writeToParcel()
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/ |
H A D | ImsService.java | 320 setImsFeatureCreatedForSlot(slotId, featureType, false); 477 addImsFeature(slotId, featureType, f); in setupFeature() 490 ImsFeature f = features.get(featureType); in addImsFeatureStatusCallback() 507 ImsFeature f = features.get(featureType); in removeImsFeatureStatusCallback() 523 features.put(featureType, f); in addImsFeature() 527 private void removeImsFeature(int slotId, int featureType) { in removeImsFeature() argument 539 ImsFeature f = features.get(featureType); in removeImsFeature() 546 features.remove(featureType); in removeImsFeature() 554 public ImsFeature getImsFeature(int slotId, int featureType) { in getImsFeature() argument 561 return features.get(featureType); in getImsFeature() [all …]
|
/aosp14/frameworks/base/telephony/java/com/android/ims/internal/ |
H A D | IImsServiceController.aidl | 31 void removeImsFeature(int slotId, int featureType); in removeImsFeature() argument 32 void addFeatureStatusCallback(int slotId, int featureType, in IImsFeatureStatusCallback c); in addFeatureStatusCallback() argument 33 void removeFeatureStatusCallback(int slotId, int featureType, in IImsFeatureStatusCallback c); in removeFeatureStatusCallback() argument
|
/aosp14/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/common/ |
H A D | CommonFoldingFeature.java | 166 String featureType = featureMatcher.group(1); in parseFromString() local 167 featureType = featureType == null ? "" : featureType; in parseFromString() 169 switch (featureType) { in parseFromString() 177 throw new IllegalArgumentException("Malformed feature type: " + featureType); in parseFromString()
|
/aosp14/frameworks/base/telephony/java/android/telephony/ims/aidl/ |
H A D | IImsServiceController.aidl | 40 void addFeatureStatusCallback(int slotId, int featureType, in IImsFeatureStatusCallback c); in addFeatureStatusCallback() argument 41 void removeFeatureStatusCallback(int slotId, int featureType, in IImsFeatureStatusCallback c); in removeFeatureStatusCallback() argument 44 void removeImsFeature(int slotId, int featureType, boolean changeSubId); in removeImsFeature() argument
|
/aosp14/frameworks/base/core/java/android/app/smartspace/uitemplatedata/ |
H A D | BaseTemplateData.java | 594 private SubItemLoggingInfo(int instanceId, @FeatureType int featureType, in SubItemLoggingInfo() argument 597 mFeatureType = featureType; in SubItemLoggingInfo() 685 public Builder(int instanceId, @FeatureType int featureType) { in Builder() argument 687 mFeatureType = featureType; in Builder()
|
/aosp14/frameworks/base/core/java/android/app/smartspace/ |
H A D | SmartspaceTarget.java | 297 List<SmartspaceAction> iconGrid, int featureType, boolean sensitive, in SmartspaceTarget() argument 310 mFeatureType = featureType; in SmartspaceTarget() 672 public Builder setFeatureType(int featureType) { in setFeatureType() argument 673 this.mFeatureType = featureType; in setFeatureType()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/lockscreen/ |
H A D | LockscreenSmartspaceController.kt | 176 t.featureType == SmartspaceTarget.FEATURE_WEATHER && 502 return t.featureType != SmartspaceTarget.FEATURE_WEATHER 505 return t.featureType == SmartspaceTarget.FEATURE_WEATHER
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/lockscreen/ |
H A D | LockscreenSmartspaceControllerTest.kt | 485 makeTarget(4, userHandlePrimary, featureType = SmartspaceTarget.FEATURE_WEATHER) 531 makeTarget(4, userHandlePrimary, featureType = SmartspaceTarget.FEATURE_WEATHER) 551 makeTarget(2, userHandlePrimary, featureType = SmartspaceTarget.FEATURE_WEATHER) 944 featureType: Int = 0 951 .setFeatureType(featureType)
|
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/ |
H A D | ITelephony.aidl | 893 String getBoundImsServicePackage(int slotIndex, boolean isCarrierImsService, int featureType); in getBoundImsServicePackage() argument
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/pipeline/ |
H A D | MediaDataManagerTest.kt | 277 whenever(mediaSmartspaceTarget.featureType).thenReturn(SmartspaceTarget.FEATURE_MEDIA)
|
/aosp14/frameworks/base/core/api/ |
H A D | system-current.txt | 16939 field public final int featureType;
|