Home
last modified time | relevance | path

Searched refs:iccCard (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java1079 IccCard iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent() local
1080 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1085 iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent()
1086 assertEquals(IccCardConstants.State.ABSENT, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1094 IccCard iccCard = mPhoneUT.getIccCard(); in testGetEmptyIccCard() local
1097 assertTrue(!(iccCard instanceof UiccProfile)); in testGetEmptyIccCard()
1099 assertTrue(iccCard != null); in testGetEmptyIccCard()
1100 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetEmptyIccCard()
1101 assertEquals(null, iccCard.getIccRecords()); in testGetEmptyIccCard()
1102 assertEquals(false, iccCard.getIccLockEnabled()); in testGetEmptyIccCard()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java370 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLocked() local
371 if (iccCard == null) { in handleSimLocked()
375 IccRecords records = iccCard.getIccRecords(); in handleSimLocked()
430 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimNotReady() local
432 if (iccCard.isEmptyProfile() || uiccAppsDisabled) { in handleSimNotReady()
473 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLoaded() local
474 if (iccCard == null) { // Possibly a race condition. in handleSimLoaded()
478 IccRecords records = iccCard.getIccRecords(); in handleSimLoaded()
1175 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in broadcastSimApplicationStateChanged() local
1176 boolean emptyProfile = iccCard != null && iccCard.isEmptyProfile(); in broadcastSimApplicationStateChanged()