Searched refs:iccCard (Results 1 – 4 of 4) sorted by relevance
367 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLocked() local368 if (iccCard == null) { in handleSimLocked()372 IccRecords records = iccCard.getIccRecords(); in handleSimLocked()441 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimNotReady() local443 if (iccCard.isEmptyProfile() || uiccAppsDisabled) { in handleSimNotReady()487 IccCard iccCard = PhoneFactory.getPhone(phoneId).getIccCard(); in handleSimLoaded() local488 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() local1169 boolean emptyProfile = iccCard != null && iccCard.isEmptyProfile(); in broadcastSimApplicationStateChanged()
816 IccCard iccCard = mPhone.getIccCard(); in updateCarrierConfig() local818 if (iccCard != null) { in updateCarrierConfig()819 simState = iccCard.getState(); in updateCarrierConfig()
577 IccCard iccCard = PhoneFactory.getPhone(slotIndex).getIccCard(); in isSimApplicationReady() local578 if (!iccCard.isEmptyProfile() && uiccAppsEnabled) { in isSimApplicationReady()
1246 IccCard iccCard = mPhoneUT.getIccCard(); in testGetIccCardUnknownAndAbsent() local1247 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() local1264 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 …]