Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java3650 UiccSlotInfo[] slotInfos = mTelephonyManager.getUiccSlotsInfo(); in getPhysicalSlotIndex() local
3655 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() local
3673 for (int i = 0; i < slotInfos.length; i++) { in getPhysicalSlotIndexFromLogicalSlotIndex()
3674 if (slotInfos[i].getLogicalSlotIdx() == logicalSlotIndex) { in getPhysicalSlotIndexFromLogicalSlotIndex()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java3284 UiccSlotInfo[] slotInfos = getUiccSlotsInfo(); in getLogicalSlotIndex() local
3285 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length) { in getLogicalSlotIndex()
3286 return slotInfos[physicalSlotIndex].getLogicalSlotIdx(); in getLogicalSlotIndex()