Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSubscriptionInfoUpdater.java367 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLocked() local
368 if (iccCard == null) { in handleSimLocked()
372 IccRecords records = iccCard.getIccRecords(); in handleSimLocked()
441 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimNotReady() local
443 if (iccCard.isEmptyProfile() || uiccAppsDisabled) { in handleSimNotReady()
487 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLoaded() local
488 if (iccCard == null) { // Possibly a race condition. in handleSimLoaded()
492 IccRecords records = iccCard.getIccRecords(); in handleSimLoaded()
1168 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in broadcastSimApplicationStateChanged() local
1169 boolean emptyProfile = iccCard != null && iccCard.isEmptyProfile(); in broadcastSimApplicationStateChanged()
DCarrierResolver.java816 IccCard iccCard = mPhone.getIccCard(); in updateCarrierConfig() local
818 if (iccCard != null) { in updateCarrierConfig()
819 simState = iccCard.getState(); in updateCarrierConfig()
DPhoneSwitcher.java577 IccCard iccCard = PhoneFactory.getPhone(slotIndex).getIccCard(); in isSimApplicationReady() local
578 if (!iccCard.isEmptyProfile() && uiccAppsEnabled) { in isSimApplicationReady()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DGsmCdmaPhoneTest.java1246 IccCard iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent() local
1247 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1252 iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent()
1253 assertEquals(IccCardConstants.State.ABSENT, iccCard.getState()); in testGetIccCardUnknownAndAbsent()
1261 IccCard iccCard = mPhoneUT.getIccCard(); in testGetEmptyIccCard() local
1264 assertTrue(!(iccCard instanceof UiccProfile)); in testGetEmptyIccCard()
1266 assertTrue(iccCard != null); in testGetEmptyIccCard()
1267 assertEquals(IccCardConstants.State.UNKNOWN, iccCard.getState()); in testGetEmptyIccCard()
1268 assertEquals(null, iccCard.getIccRecords()); in testGetEmptyIccCard()
1269 assertEquals(false, iccCard.getIccLockEnabled()); in testGetEmptyIccCard()
[all …]