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.java315 UiccSlot uiccSlot = getUiccSlot(slotId); in getUiccCardForSlot() local
316 if (uiccSlot != null) { in getUiccCardForSlot()
317 return uiccSlot.getUiccCard(); in getUiccCardForSlot()
331 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in getUiccCardForPhone() local
332 if (uiccSlot != null) { in getUiccCardForPhone()
333 return uiccSlot.getUiccCard(); in getUiccCardForPhone()
521 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in handleMessage() local
522 if (uiccSlot != null) { in handleMessage()
523 uiccSlot.onRadioStateUnavailable(); in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java786 for (UiccSlot uiccSlot : uiccSlots) { in updateSubscriptionInfoByIccId()
787 if (uiccSlot != null && uiccSlot.getUiccCard() != null) { in updateSubscriptionInfoByIccId()
789 uiccSlot.getUiccCard().getCardId()); in updateSubscriptionInfoByIccId()
DSubscriptionController.java938 for (UiccSlot uiccSlot : uiccSlots) { in getIccIdsOfInsertedPhysicalSims()
939 if (uiccSlot != null && uiccSlot.getCardState() != null in getIccIdsOfInsertedPhysicalSims()
940 && uiccSlot.getCardState().isCardPresent() in getIccIdsOfInsertedPhysicalSims()
941 && !uiccSlot.isEuicc() in getIccIdsOfInsertedPhysicalSims()
942 && !TextUtils.isEmpty(uiccSlot.getIccId())) { in getIccIdsOfInsertedPhysicalSims()
943 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()