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

/frameworks/base/telephony/java/android/telephony/ims/compat/
H A DImsService.java108 public void removeImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c)
110 ImsService.this.removeImsFeature(slotId, featureType, c);
167 private void setupFeature(ImsFeature f, int slotId, int featureType, argument
172 addImsFeature(slotId, featureType, f);
177 private void addImsFeature(int slotId, int featureType, ImsFeature f) { argument
186 features.put(featureType, f);
190 private void removeImsFeature(int slotId, int featureType, argument
200 ImsFeature f = features.get(featureType);
203 + featureType + " exists on slot " + slotId);
208 features.remove(featureType);
[all...]
/frameworks/base/telephony/java/android/telephony/ims/stub/
H A DImsFeatureConfiguration.java49 public final @ImsFeature.FeatureType int featureType; field in class:ImsFeatureConfiguration.FeatureSlotPair
54 * @param featureType The feature that this slotId supports. Supported values are
58 public FeatureSlotPair(int slotId, @ImsFeature.FeatureType int featureType) { argument
60 this.featureType = featureType;
71 return featureType == that.featureType;
77 result = 31 * result + featureType;
83 return "{s=" + slotId + ", f=" + featureType + "}";
104 * @param featureType Th
109 addFeature(int slotId, @ImsFeature.FeatureType int featureType) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
H A DTestImsServiceControllerAdapter.java59 public void removeImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) argument
61 TestImsServiceControllerAdapter.this.removeImsFeature(slotId, featureType);
/frameworks/base/telephony/java/android/telephony/ims/
H A DImsService.java149 public void removeImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) {
150 ImsService.this.removeImsFeature(slotId, featureType, c);
230 private void setupFeature(ImsFeature f, int slotId, int featureType, argument
234 addImsFeature(slotId, featureType, f);
237 private void addImsFeature(int slotId, int featureType, ImsFeature f) { argument
246 features.put(featureType, f);
250 private void removeImsFeature(int slotId, int featureType, argument
260 ImsFeature f = features.get(featureType);
263 + featureType + " exists on slot " + slotId);
268 features.remove(featureType);
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
H A DImsServiceControllerCompat.java136 protected IInterface createImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) argument
138 switch (featureType) {
151 protected void removeImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) argument
153 if (featureType == ImsFeature.MMTEL) {
158 mServiceController.removeImsFeature(slotId, featureType, c);
H A DImsServiceController.java230 public int featureType; field in class:ImsServiceController.ImsFeatureContainer
233 ImsFeatureContainer(int slotId, int featureType, IInterface binder) { argument
235 this.featureType = featureType;
252 if (featureType != that.featureType) return false;
259 result = 31 * result + featureType;
284 ImsFeatureStatusCallback(int slotId, int featureType) { argument
286 mFeatureType = featureType;
485 callback.imsFeatureCreated(i.slotId, i.featureType);
735 createImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) argument
750 removeImsFeature(int slotId, int featureType, IImsFeatureStatusCallback c) argument
756 addImsFeatureBinder(int slotId, int featureType, IInterface b) argument
761 removeImsFeatureBinder(int slotId, int featureType) argument
770 getImsFeatureContainer(int slotId, int featureType) argument
[all...]

Completed in 120 milliseconds