Home
last modified time | relevance | path

Searched refs:updateAssociatedSubscription (Results 1 – 4 of 4) sorted by relevance

/packages/services/Telephony/tests/src/com/android/services/telephony/rcs/
DTelephonyRcsServiceTest.java119 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(anyInt()); in testNoFeaturesEnabledCarrierConfigChanged()
176 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdate()
177 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testCarrierConfigUpdate()
179 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(2); in testCarrierConfigUpdate()
180 verify(mFeatureControllerSlot1, times(1)).updateAssociatedSubscription(2); in testCarrierConfigUpdate()
195 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateUceToNoUce()
211 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateNoUceToUce()
DRcsFeatureControllerTest.java253 controller.updateAssociatedSubscription(1 /*new sub id*/); in testChangeSubId()
/packages/services/Telephony/src/com/android/services/telephony/rcs/
DTelephonyRcsService.java215 if (f != null) f.updateAssociatedSubscription(newSubId); in updateFeatureControllerSubscription()
DRcsFeatureController.java249 public void updateAssociatedSubscription(int newSubId) { in updateAssociatedSubscription() method in RcsFeatureController