Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccController.java1330 for (int portIndex : slot.getPortList()) { in getResolvedPortIndexForSubscriptionSwitch()
1337 for (int portIndex : slot.getPortList()) { in getResolvedPortIndexForSubscriptionSwitch()
1381 if (slot == null || slot.getPortList().length == 0 in isTargetPortIndexValid()
1382 || targetPortIndex >= slot.getPortList().length) { in isTargetPortIndexValid()
1389 for (int portIndex : slot.getPortList()) { in isTargetPortIndexValid()
1404 for (int portIndex : slot.getPortList()) { in isTargetPortIndexValid()
1423 for (int portIndex : slot.getPortList()) { in getNextAvailableInActivePortIndex()
1461 for (int portIndex : uiccSlot.getPortList()) { in isRemovalNonEuiccSlotHasActiveSubscription()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccControllerTest.java364 doReturn(new int[]{0}).when(mMockSlot).getPortList(); in testGetAllUiccCardInfos()
417 doReturn(new int[]{0}).when(mMockSlot).getPortList(); in testIccidWithTrailingF()
463 doReturn(new int[]{0}).when(mMockSlot).getPortList(); in testGetAllUiccCardInfosNullCard()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/euicc/
DEuiccControllerTest.java1188 when(mUiccSlot.getPortList()).thenReturn(new int[]{0, 1}); in testGetResolvedPortIndexForSubscriptionSwitchWithMEP()
1217 when(mUiccSlot.getPortList()).thenReturn(new int[]{0}); in testGetResolvedPortIndexForSubscriptionSwitchWithPsimInActiveAndSS()
1789 when(mUiccSlot.getPortList()).thenReturn(new int[] {0}); in testIsSimPortAvailable_port_inActive()
1817 when(mUiccSlot.getPortList()).thenReturn(new int[] {0}); in testIsSimPortAvailable_port_inActive_disable_compactChange()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccSlot.java292 public int[] getPortList() { in getPortList() method in UiccSlot
DUiccController.java521 if (IntStream.of(slot.getPortList()).anyMatch(porIdx -> cardId.equals( in getUiccSlotForCardId()
1215 int[] portIndexes = slot.getPortList(); in getAllUiccCardInfos()