Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccController.java317 UiccSlot uiccSlot = getUiccSlot(slotId); in getUiccCardForSlot() local
318 if (uiccSlot != null) { in getUiccCardForSlot()
319 return uiccSlot.getUiccCard(); in getUiccCardForSlot()
333 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in getUiccCardForPhone() local
334 if (uiccSlot != null) { in getUiccCardForPhone()
335 return uiccSlot.getUiccCard(); in getUiccCardForPhone()
523 UiccSlot uiccSlot = getUiccSlotForPhone(phoneId); in handleMessage() local
524 if (uiccSlot != null) { in handleMessage()
525 uiccSlot.onRadioStateUnavailable(); in handleMessage()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java419 UiccSlot uiccSlot = UiccController.getInstance().getUiccSlotForPhone(phoneId); in handleSimReady() local
420 String iccId = (uiccSlot != null) ? IccUtils.stripTrailingFs(uiccSlot.getIccId()) : null; in handleSimReady()
765 for (UiccSlot uiccSlot : uiccSlots) { in updateSubscriptionInfoByIccId()
766 if (uiccSlot != null && uiccSlot.getUiccCard() != null) { in updateSubscriptionInfoByIccId()
768 uiccSlot.getUiccCard().getCardId()); in updateSubscriptionInfoByIccId()
DSubscriptionController.java1149 for (UiccSlot uiccSlot : uiccSlots) { in getIccIdsOfInsertedPhysicalSims()
1150 if (uiccSlot != null && uiccSlot.getCardState() != null in getIccIdsOfInsertedPhysicalSims()
1151 && uiccSlot.getCardState().isCardPresent() in getIccIdsOfInsertedPhysicalSims()
1152 && !uiccSlot.isEuicc() in getIccIdsOfInsertedPhysicalSims()
1153 && !TextUtils.isEmpty(uiccSlot.getIccId())) { in getIccIdsOfInsertedPhysicalSims()
1154 ret.add(IccUtils.stripTrailingFs(uiccSlot.getIccId())); in getIccIdsOfInsertedPhysicalSims()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
DUiccControllerTest.java149 UiccSlot uiccSlot = mUiccControllerUT.getUiccSlot(0); in testSanity() local
151 assertNotNull(uiccSlot); in testSanity()