Home
last modified time | relevance | path

Searched refs:slotIdToSubIdMap (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ims/
DImsServiceControllerTest.java199 SparseIntArray slotIdToSubIdMap = new SparseIntArray(); in testBindService() local
200 slotIdToSubIdMap.put(SLOT_0, SUB_2); in testBindService()
201 assertTrue(mTestImsServiceController.bind(testFeatures, slotIdToSubIdMap.clone())); in testBindService()
220 SparseIntArray slotIdToSubIdMap = new SparseIntArray(); in testBindFailureWhenBound() local
221 slotIdToSubIdMap.put(SLOT_0, SUB_2); in testBindFailureWhenBound()
222 bindAndConnectService(testFeatures, slotIdToSubIdMap.clone()); in testBindFailureWhenBound()
225 assertFalse(mTestImsServiceController.bind(testFeatures, slotIdToSubIdMap.clone())); in testBindFailureWhenBound()
243 SparseIntArray slotIdToSubIdMap = new SparseIntArray(); in testBindServiceAndConnected() local
244 slotIdToSubIdMap.put(SLOT_0, SUB_2); in testBindServiceAndConnected()
245 bindAndConnectService(testFeatures, slotIdToSubIdMap.clone()); in testBindServiceAndConnected()
[all …]
DImsServiceControllerCompatTest.java140 SparseIntArray slotIdToSubIdMap = new SparseIntArray(); in testBindServiceAndCrashCleanUp() local
141 slotIdToSubIdMap.put(SLOT_0, SUB_1); in testBindServiceAndCrashCleanUp()
142 ServiceConnection conn = bindAndConnectService(slotIdToSubIdMap); in testBindServiceAndCrashCleanUp()
178 private ServiceConnection bindAndConnectService(SparseIntArray slotIdToSubIdMap) { in bindAndConnectService() argument
182 ServiceConnection connection = bindService(testFeatures, slotIdToSubIdMap); in bindAndConnectService()
191 SparseIntArray slotIdToSubIdMap) { in bindService() argument
194 assertTrue(mTestImsServiceController.bind(testFeatures, slotIdToSubIdMap)); in bindService()
DImsResolverTest.java415 SparseIntArray slotIdToSubIdMap = arrayCaptor.getValue(); in testCarrierPackageBind() local
419 for (int i = 0; i < slotIdToSubIdMap.size(); i++) { in testCarrierPackageBind()
420 assertEquals(slotIdToSubIdMap.get(i), compareMap.get(i)); in testCarrierPackageBind()
723 SparseIntArray slotIdToSubIdMap = arrayCaptor.getValue(); in testDevicePackageBind() local
727 for (int i = 0; i < slotIdToSubIdMap.size(); i++) { in testDevicePackageBind()
728 assertEquals(slotIdToSubIdMap.get(i), compareMap.get(i)); in testDevicePackageBind()
767 SparseIntArray slotIdToSubIdMap = arrayCaptor.getValue(); in testDevicePackageBind_MsimToOneSim() local
768 assertEquals(slotIdToSubIdMap.size(), 2); in testDevicePackageBind_MsimToOneSim()
773 for (int i = 0; i < slotIdToSubIdMap.size(); i++) { in testDevicePackageBind_MsimToOneSim()
774 assertEquals(slotIdToSubIdMap.get(i), compareMap.get(i)); in testDevicePackageBind_MsimToOneSim()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ims/
DImsServiceController.java417 SparseIntArray slotIdToSubIdMap) { in bind() argument
423 mSlotIdToSubIdMap = slotIdToSubIdMap; in bind()
496 SparseIntArray slotIdToSubIdMap) throws RemoteException { in changeImsServiceFeatures() argument
511 int newSubId = slotIdToSubIdMap.get(slotID); in changeImsServiceFeatures()
528 mSlotIdToSubIdMap = slotIdToSubIdMap; in changeImsServiceFeatures()
DImsResolver.java1231 SparseIntArray slotIdToSubIdMap = mSlotIdToSubIdMap.clone(); in bindImsServiceWithFeatures() local
1236 controller.changeImsServiceFeatures(features, slotIdToSubIdMap); in bindImsServiceWithFeatures()
1247 controller.bind(features, slotIdToSubIdMap); in bindImsServiceWithFeatures()