Home
last modified time | relevance | path

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

/aosp12/packages/services/Telephony/tests/src/com/android/services/telephony/rcs/
H A DTelephonyRcsServiceTest.java139 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnected()
168 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
169 verify(mFeatureControllerSlot1, never()).updateAssociatedSubscription(1); in testSipTransportConnectedOneSlot()
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()
291 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateUceToNoUce()
311 verify(mFeatureControllerSlot0).updateAssociatedSubscription(1); in testCarrierConfigUpdateTransportToNoTransport()
[all …]
H A DRcsFeatureControllerTest.java279 controller.updateAssociatedSubscription(2 /*new subId*/); in testChangeSubId()
/aosp12/packages/services/Telephony/src/com/android/services/telephony/rcs/
H A DRcsFeatureController.java264 public void updateAssociatedSubscription(int newSubId) { in updateAssociatedSubscription() method in RcsFeatureController
H A DTelephonyRcsService.java279 f.updateAssociatedSubscription(subId); in onCarrierConfigChangedForSlot()