Home
last modified time | relevance | path

Searched refs:slotInfos (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/euicc/
DEuiccConnector.java1117 UiccSlotInfo[] slotInfos = tm.getUiccSlotsInfo(); in getSlotIdFromCardId() local
1118 if (slotInfos == null || slotInfos.length == 0) { in getSlotIdFromCardId()
1123 for (int slotIndex = 0; slotIndex < slotInfos.length; slotIndex++) { in getSlotIdFromCardId()
1125 if (slotInfos[slotIndex] == null) { in getSlotIdFromCardId()
1129 String retrievedCardId = slotInfos[slotIndex] != null in getSlotIdFromCardId()
1130 ? slotInfos[slotIndex].getCardId() : null; in getSlotIdFromCardId()
DEuiccController.java1436 UiccSlotInfo[] slotInfos = mTelephonyManager.getUiccSlotsInfo(); in getSlotIndexFromCardId() local
1437 if (slotInfos == null || slotInfos.length == 0) { in getSlotIndexFromCardId()
1442 for (int slotIndex = 0; slotIndex < slotInfos.length; slotIndex++) { in getSlotIndexFromCardId()
1443 if (slotInfos[slotIndex] == null) { in getSlotIndexFromCardId()
1448 String retrievedCardId = slotInfos[slotIndex] != null in getSlotIndexFromCardId()
1449 ? slotInfos[slotIndex].getCardId() : null; in getSlotIndexFromCardId()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java3848 UiccSlotInfo[] slotInfos = getUiccSlotsInfo(); in getLogicalSlotIndex() local
3849 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length in getLogicalSlotIndex()
3850 && slotInfos[physicalSlotIndex] != null) { in getLogicalSlotIndex()
3851 for (UiccPortInfo portInfo : slotInfos[physicalSlotIndex].getPorts()) { in getLogicalSlotIndex()
7316 UiccSlotInfo[] slotInfos = getUiccSlotsInfo(); in getFirstActivePortIndex() local
7317 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length in getFirstActivePortIndex()
7318 && slotInfos[physicalSlotIndex] != null) { in getFirstActivePortIndex()
7319 Optional<UiccPortInfo> result = slotInfos[physicalSlotIndex].getPorts().stream() in getFirstActivePortIndex()