Searched refs:slotInfos (Results 1 – 2 of 2) sorted by relevance
3650 UiccSlotInfo[] slotInfos = mTelephonyManager.getUiccSlotsInfo(); in getPhysicalSlotIndex() local3655 for (int i = 0; i < slotInfos.length; i++) { in getPhysicalSlotIndex()3660 if ((isLogicalSlotIndexValid && slotInfos[i].getLogicalSlotIdx() == logicalSlotIndex) in getPhysicalSlotIndex()3661 || (!isLogicalSlotIndexValid && slotInfos[i].getIsEuicc() && isEmbedded)) { in getPhysicalSlotIndex()3672 UiccSlotInfo[] slotInfos = mTelephonyManager.getUiccSlotsInfo(); in getPhysicalSlotIndexFromLogicalSlotIndex() local3673 for (int i = 0; i < slotInfos.length; i++) { in getPhysicalSlotIndexFromLogicalSlotIndex()3674 if (slotInfos[i].getLogicalSlotIdx() == logicalSlotIndex) { in getPhysicalSlotIndexFromLogicalSlotIndex()
3284 UiccSlotInfo[] slotInfos = getUiccSlotsInfo(); in getLogicalSlotIndex() local3285 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length) { in getLogicalSlotIndex()3286 return slotInfos[physicalSlotIndex].getLogicalSlotIdx(); in getLogicalSlotIndex()