Home
last modified time | relevance | path

Searched refs:uiccSlot (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/vendor/
DVendorSubscriptionInfoUpdater.java90 UiccSlot uiccSlot = UiccController.getInstance().getUiccSlotForPhone(phoneId); in handleSimReady() local
91 if (uiccSlot == null) { in handleSimReady()
96 String iccId = uiccSlot.getIccId(); in handleSimReady()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccController.java311 UiccSlot uiccSlot = getUiccSlot(slotId); in getUiccCardForSlot() local
312 if (uiccSlot != null) { in getUiccCardForSlot()
313 return uiccSlot.getUiccCard(); in getUiccCardForSlot()
327 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in getUiccCardForPhone() local
328 if (uiccSlot != null) { in getUiccCardForPhone()
329 return uiccSlot.getUiccCard(); in getUiccCardForPhone()
517 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in handleMessage() local
518 if (uiccSlot != null) { in handleMessage()
519 uiccSlot.onRadioStateUnavailable(); in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java744 for (UiccSlot uiccSlot : uiccSlots) { in updateSubscriptionInfoByIccId()
745 if (uiccSlot != null && uiccSlot.getUiccCard() != null) { in updateSubscriptionInfoByIccId()
747 uiccSlot.getUiccCard().getCardId()); in updateSubscriptionInfoByIccId()
DSubscriptionController.java1102 for (UiccSlot uiccSlot : uiccSlots) { in getIccIdsOfInsertedPhysicalSims()
1103 if (uiccSlot != null && uiccSlot.getCardState() != null in getIccIdsOfInsertedPhysicalSims()
1104 && uiccSlot.getCardState().isCardPresent() in getIccIdsOfInsertedPhysicalSims()
1105 && !uiccSlot.isEuicc() in getIccIdsOfInsertedPhysicalSims()
1106 && !TextUtils.isEmpty(uiccSlot.getIccId())) { in getIccIdsOfInsertedPhysicalSims()
1107 ret.add(IccUtils.stripTrailingFs(uiccSlot.getIccId())); in getIccIdsOfInsertedPhysicalSims()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccControllerTest.java146 UiccSlot uiccSlot = mUiccControllerUT.getUiccSlot(0); in testSanity() local
148 assertNotNull(uiccSlot); in testSanity()