Home
last modified time | relevance | path

Searched refs:logicalSlotIndex (Results 1 – 7 of 7) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DIccSlotStatus.java34 public int logicalSlotIndex; field in IccSlotStatus
82 .append("logicalSlotIndex=").append(logicalSlotIndex).append(",") in toString()
103 && (logicalSlotIndex == that.logicalSlotIndex) in equals()
DUiccController.java947 if (!isValidPhoneIndex(iss.logicalSlotIndex)) { in onGetSlotStatusDone()
948 Rlog.e(LOG_TAG, "Skipping slot " + i + " as phone " + iss.logicalSlotIndex in onGetSlotStatusDone()
951 mPhoneIdToSlotId[iss.logicalSlotIndex] = i; in onGetSlotStatusDone()
962 if (!isValidPhoneIndex(iss.logicalSlotIndex)) { in onGetSlotStatusDone()
965 mUiccSlots[i].update(isActive ? mCis[iss.logicalSlotIndex] : null, iss, in onGetSlotStatusDone()
DUiccSlot.java166 mPhoneId = iss.logicalSlotIndex; in update()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccSlotTest.java110 iss.logicalSlotIndex = 0; in testUpdateInactiveSlotStatus()
143 iss.logicalSlotIndex = phoneId; in testUpdateActiveSlotStatus()
170 iss.logicalSlotIndex = 0; in testUpdateSlotStatusEuiccIsSupported()
205 iss.logicalSlotIndex = 0; in testUpdateSlotStatusEuiccIsNotSupported()
254 activeIss.logicalSlotIndex = 0; in testUpdateAbsentStateInactiveSlotStatus()
259 inactiveIss.logicalSlotIndex = 0; in testUpdateAbsentStateInactiveSlotStatus()
275 activeIss.logicalSlotIndex, inactiveIss.iccid); in testUpdateAbsentStateInactiveSlotStatus()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DRadioConfig.java466 iccSlotStatus.logicalSlotIndex = slotStatus.logicalSlotId; in convertHalSlotStatus()
481 iccSlotStatus.logicalSlotIndex = slotStatus.base.logicalSlotId; in convertHalSlotStatus_1_2()
DSubscriptionController.java3651 int logicalSlotIndex = getSlotIndex(subId); in getPhysicalSlotIndex() local
3653 boolean isLogicalSlotIndexValid = SubscriptionManager.isValidSlotIndex(logicalSlotIndex); in getPhysicalSlotIndex()
3660 if ((isLogicalSlotIndexValid && slotInfos[i].getLogicalSlotIdx() == logicalSlotIndex) in getPhysicalSlotIndex()
3670 private int getPhysicalSlotIndexFromLogicalSlotIndex(int logicalSlotIndex) { in getPhysicalSlotIndexFromLogicalSlotIndex() argument
3674 if (slotInfos[i].getLogicalSlotIdx() == logicalSlotIndex) { in getPhysicalSlotIndexFromLogicalSlotIndex()
3719 public int getEnabledSubscriptionId(int logicalSlotIndex) { in getEnabledSubscriptionId() argument
3725 if (!SubscriptionManager.isValidPhoneId(logicalSlotIndex)) { in getEnabledSubscriptionId()
3728 + logicalSlotIndex); in getEnabledSubscriptionId()
3732 int physicalSlotIndex = getPhysicalSlotIndexFromLogicalSlotIndex(logicalSlotIndex); in getEnabledSubscriptionId()
3751 subId = getSubIdUsingPhoneId(logicalSlotIndex); in getEnabledSubscriptionId()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DSubscriptionControllerTest.java1077 private UiccSlotInfo getFakeUiccSlotInfo(boolean active, int logicalSlotIndex) { in getFakeUiccSlotInfo() argument
1078 return getFakeUiccSlotInfo(active, logicalSlotIndex, "fake card Id"); in getFakeUiccSlotInfo()
1081 private UiccSlotInfo getFakeUiccSlotInfo(boolean active, int logicalSlotIndex, String cardId) { in getFakeUiccSlotInfo() argument
1083 UiccSlotInfo.CARD_STATE_INFO_PRESENT, logicalSlotIndex, true, true); in getFakeUiccSlotInfo()