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.java1117 IccCard iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent() local
1118 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1123 iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent()
1124 assertEquals(IccCardConstants.State.ABSENT, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1132 IccCard iccCard = mPhoneUT.getIccCard(); in testGetEmptyIccCard() local
1135 assertTrue(!(iccCard instanceof UiccProfile)); in testGetEmptyIccCard()
1137 assertTrue(iccCard != null); in testGetEmptyIccCard()
1138 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetEmptyIccCard()
1139 assertEquals(null, iccCard.getIccRecords()); in testGetEmptyIccCard()
1140 assertEquals(false, iccCard.getIccLockEnabled()); in testGetEmptyIccCard()
[all …]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java391 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLocked() local
392 if (iccCard == null) { in handleSimLocked()
396 IccRecords records = iccCard.getIccRecords(); in handleSimLocked()
451 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimNotReady() local
453 if (iccCard.isEmptyProfile() || uiccAppsDisabled) { in handleSimNotReady()
494 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLoaded() local
495 if (iccCard == null) { // Possibly a race condition. in handleSimLoaded()
499 IccRecords records = iccCard.getIccRecords(); in handleSimLoaded()
1217 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in broadcastSimApplicationStateChanged() local
1218 boolean emptyProfile = iccCard != null && iccCard.isEmptyProfile(); in broadcastSimApplicationStateChanged()