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.java139 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnected()
168 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
169 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
181 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(anyInt()); in testNoFeaturesEnabledCarrierConfigChanged()
248 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateAssociatedSub()
249 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testCarrierConfigUpdateAssociatedSub()
251 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(2); in testCarrierConfigUpdateAssociatedSub()
252 verify(mFeatureControllerSlot1, times(1)).updateAssociatedSubscription(2); in testCarrierConfigUpdateAssociatedSub()
267 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigNotifyFeatures()
270 verify(mFeatureControllerSlot0, times(1)).updateAssociatedSubscription(1); in testCarrierConfigNotifyFeatures()
[all …]
DRcsFeatureControllerTest.java279 controller.updateAssociatedSubscription(2 /*new subId*/); in testChangeSubId()
/packages/services/Telephony/src/com/android/services/telephony/rcs/
DTelephonyRcsService.java276 f.updateAssociatedSubscription(subId); in onCarrierConfigChangedForSlot()
DRcsFeatureController.java264 public void updateAssociatedSubscription(int newSubId) { in updateAssociatedSubscription() method in RcsFeatureController