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.java159 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnected()
188 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
189 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
201 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(anyInt()); in testNoFeaturesEnabledCarrierConfigChanged()
268 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateAssociatedSub()
269 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testCarrierConfigUpdateAssociatedSub()
271 verify(mFeatureControllerSlot0, never()).updateAssociatedSubscription(2); in testCarrierConfigUpdateAssociatedSub()
272 verify(mFeatureControllerSlot1, times(1)).updateAssociatedSubscription(2); in testCarrierConfigUpdateAssociatedSub()
287 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigNotifyFeatures()
290 verify(mFeatureControllerSlot0, times(1)).updateAssociatedSubscription(1); in testCarrierConfigNotifyFeatures()
[all …]
DRcsFeatureControllerTest.java280 controller.updateAssociatedSubscription(2 /*new subId*/); in testChangeSubId()
/packages/services/Telephony/src/com/android/services/telephony/rcs/
DTelephonyRcsService.java303 f.updateAssociatedSubscription(subId); in onCarrierConfigChangedForSlot()
DRcsFeatureController.java271 public void updateAssociatedSubscription(int newSubId) { in updateAssociatedSubscription() method in RcsFeatureController