Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/src/com/android/settings/sim/receivers/
H A DSimSlotChangeReceiver.java136 private UiccCardInfo findUiccCardInfoBySlot(TelephonyManager telMgr, int physicalSlotIndex) { in findUiccCardInfoBySlot() argument
142 .filter(info -> info.getSlotIndex() == physicalSlotIndex) in findUiccCardInfoBySlot()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardStatus.java81 public int physicalSlotIndex = UiccController.INVALID_SLOT_ID; field in IccCardStatus
170 sb.append(",physical_slot_id=").append(physicalSlotIndex).append(",atr=").append(atr); in toString()
H A DUiccController.java709 int slotId = status.physicalSlotIndex; in onGetIccCardStatusDone()
/aosp12/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
H A DUiccControllerTest.java115 mIccCardStatus.physicalSlotIndex = 0; in setUp()
255 ics.physicalSlotIndex = 0; in testCardIdFromIccStatus()
346 ics.physicalSlotIndex = 0; in testGetAllUiccCardInfos()
383 ics.physicalSlotIndex = 0; in testIccidWithTrailingF()
454 ics.physicalSlotIndex = UiccController.INVALID_SLOT_ID; in testEidNotSupported()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSubscriptionController.java4056 int physicalSlotIndex = SubscriptionManager.INVALID_SIM_SLOT_INDEX; in enablePhysicalSubscription() local
4065 physicalSlotIndex = i; in enablePhysicalSubscription()
4103 int physicalSlotIndex) { in enableSubscriptionOverEuiccManager() argument
4105 + "subId " + subId + " on slotIndex " + physicalSlotIndex); in enableSubscriptionOverEuiccManager()
4126 + physicalSlotIndex, enabled ? 1 : 0); in updateModemStackEnabledGlobalSetting() local
4132 int physicalSlotIndex = SubscriptionManager.INVALID_SIM_SLOT_INDEX; in getPhysicalSlotIndex() local
4142 physicalSlotIndex = i; in getPhysicalSlotIndex()
4147 return physicalSlotIndex; in getPhysicalSlotIndex()
4151 int physicalSlotIndex = SubscriptionManager.INVALID_SIM_SLOT_INDEX; in getPhysicalSlotIndexFromLogicalSlotIndex() local
4155 physicalSlotIndex = i; in getPhysicalSlotIndexFromLogicalSlotIndex()
[all …]
H A DRadioResponse.java1972 iccCardStatus.physicalSlotIndex = cardStatus.base.base.physicalSlotId; in convertHalCardStatus_1_5()
2063 iccCardStatus.physicalSlotIndex = cardStatus.physicalSlotId; in responseIccCardStatus_1_2()
2080 iccCardStatus.physicalSlotIndex = cardStatus.base.physicalSlotId; in responseIccCardStatus_1_4()
/aosp12/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java3457 public @SimState int getSimCardState(int physicalSlotIndex) { in getSimCardState() argument
3458 int simState = getSimState(getLogicalSlotIndex(physicalSlotIndex)); in getSimCardState()
3484 private int getLogicalSlotIndex(int physicalSlotIndex) { in getLogicalSlotIndex() argument
3486 if (slotInfos != null && physicalSlotIndex >= 0 && physicalSlotIndex < slotInfos.length in getLogicalSlotIndex()
3487 && slotInfos[physicalSlotIndex] != null) { in getLogicalSlotIndex()
3488 return slotInfos[physicalSlotIndex].getLogicalSlotIdx(); in getLogicalSlotIndex()
3531 public @SimState int getSimApplicationState(int physicalSlotIndex) { in getSimApplicationState() argument
3533 SubscriptionManager.getSimStateForSlotIndex(getLogicalSlotIndex(physicalSlotIndex)); in getSimApplicationState()