Searched refs:slotInfos (Results 1 – 3 of 3) sorted by relevance
1117 UiccSlotInfo[] slotInfos = tm.getUiccSlotsInfo(); in getSlotIdFromCardId() local1118 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()
1436 UiccSlotInfo[] slotInfos = mTelephonyManager.getUiccSlotsInfo(); in getSlotIndexFromCardId() local1437 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()
3848 UiccSlotInfo[] slotInfos = getUiccSlotsInfo(); in getLogicalSlotIndex() local3849 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() local7317 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()