Home
last modified time | relevance | path

Searched refs:physicalSlotIndex (Results 1 – 6 of 6) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DIccCardStatus.java80 public int physicalSlotIndex = UiccController.INVALID_SLOT_ID; field in IccCardStatus
169 sb.append(",physical_slot_id=").append(physicalSlotIndex).append(",atr=").append(atr); in toString()
DUiccController.java694 int slotId = status.physicalSlotIndex; in onGetIccCardStatusDone()
768 return status.physicalSlotIndex == INVALID_SLOT_ID; in eidIsNotSupported()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionController.java3576 int physicalSlotIndex = SubscriptionManager.INVALID_SIM_SLOT_INDEX; in enablePhysicalSubscription() local
3585 physicalSlotIndex = i; in enablePhysicalSubscription()
3601 enableSubscriptionOverEuiccManager(subId, enable, physicalSlotIndex); in enablePhysicalSubscription()
3611 UiccController.getInstance().switchSlots(new int[]{physicalSlotIndex}, null); in enablePhysicalSubscription()
3623 int physicalSlotIndex) { in enableSubscriptionOverEuiccManager() argument
3625 + "subId " + subId + " on slotIndex " + physicalSlotIndex); in enableSubscriptionOverEuiccManager()
3630 if (physicalSlotIndex != SubscriptionManager.INVALID_SIM_SLOT_INDEX) { in enableSubscriptionOverEuiccManager()
3631 intent.putExtra(EuiccManager.EXTRA_PHYSICAL_SLOT_ID, physicalSlotIndex); in enableSubscriptionOverEuiccManager()
3636 private void updateEnabledSubscriptionGlobalSetting(int subId, int physicalSlotIndex) { in updateEnabledSubscriptionGlobalSetting() argument
3639 Settings.Global.ENABLED_SUBSCRIPTION_FOR_SLOT + physicalSlotIndex, subId); in updateEnabledSubscriptionGlobalSetting() local
[all …]
DRadioResponse.java1768 iccCardStatus.physicalSlotIndex = cardStatus.base.base.physicalSlotId; in convertHalCardStatus_1_5()
1818 iccCardStatus.physicalSlotIndex = cardStatus.physicalSlotId; in responseIccCardStatus_1_2()
1835 iccCardStatus.physicalSlotIndex = cardStatus.base.physicalSlotId; in responseIccCardStatus_1_4()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccControllerTest.java111 mIccCardStatus.physicalSlotIndex = 0; in setUp()
251 ics.physicalSlotIndex = 0; in testCardIdFromIccStatus()
342 ics.physicalSlotIndex = 0; in testGetAllUiccCardInfos()
379 ics.physicalSlotIndex = 0; in testIccidWithTrailingF()
447 ics.physicalSlotIndex = UiccController.INVALID_SLOT_ID; in testEidNotSupported()
/frameworks/base/telephony/java/android/telephony/
DTelephonyManager.java3256 public @SimState int getSimCardState(int physicalSlotIndex) { in getSimCardState() argument
3257 int simState = getSimState(getLogicalSlotIndex(physicalSlotIndex)); in getSimCardState()
3283 private int getLogicalSlotIndex(int physicalSlotIndex) { in getLogicalSlotIndex() argument
3285 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length) { in getLogicalSlotIndex()
3286 return slotInfos[physicalSlotIndex].getLogicalSlotIdx(); in getLogicalSlotIndex()
3329 public @SimState int getSimApplicationState(int physicalSlotIndex) { in getSimApplicationState() argument
3331 SubscriptionManager.getSimStateForSlotIndex(getLogicalSlotIndex(physicalSlotIndex)); in getSimApplicationState()