/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/ |
D | IccRecordsTest.java | 45 private IccRecords mIccRecords; field in IccRecordsTest 54 mIccRecords = new SIMRecords(mUiccCardApplication3gpp, mContext, mSimulatedCommands); in onLooperPrepared() 74 verify(mSimulatedCommandsVerifier).registerForIccRefresh(eq(mIccRecords), in testDisposeCallsUnregisterForIccRefresh() 76 mIccRecords.dispose(); in testDisposeCallsUnregisterForIccRefresh() 78 verify(mSimulatedCommandsVerifier).unregisterForIccRefresh(eq(mIccRecords)); in testDisposeCallsUnregisterForIccRefresh()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GsmSMSDispatcher.java | 46 private AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in GsmSMSDispatcher 242 if (mIccRecords.get() != null) { in onUpdateIccAvailability() 243 mIccRecords.get().unregisterForNewSms(this); in onUpdateIccAvailability() 245 mIccRecords.set(null); in onUpdateIccAvailability() 251 mIccRecords.set(newUiccApplication.getIccRecords()); in onUpdateIccAvailability() 252 if (mIccRecords.get() != null) { in onUpdateIccAvailability() 253 mIccRecords.get().registerForNewSms(this, EVENT_NEW_ICC_SMS, null); in onUpdateIccAvailability()
|
D | GsmMmiCode.java | 142 IccRecords mIccRecords; field in GsmMmiCode 370 if (mIccRecords != null) { in parseSsData() 611 mIccRecords = app.getIccRecords(); in GsmMmiCode() 1186 if (mIccRecords != null) { in handleMessage() 1561 if (mIccRecords != null) { in makeCFQueryResultMessage() 1595 if (mIccRecords != null) { in onQueryCfComplete()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
D | UiccProfile.java | 135 private IccRecords mIccRecords = null; field in UiccProfile 189 if ((mCurrentAppType == UiccController.APP_FAM_3GPP) && (mIccRecords != null)) { 194 mPhoneId, mIccRecords.getServiceProviderName()); 346 if (mIccRecords != null) { in handleCarrierNameOverride() 347 mIccRecords.setServiceProviderName(ccName); in handleCarrierNameOverride() 390 if (mIccRecords != newRecords || mUiccApplication != newApp) { in updateIccAvailability() 394 mIccRecords = newRecords; in updateIccAvailability() 471 if (mIccRecords != null && (mIccRecords.getLockedRecordsLoaded() in updateExternalState() 472 || mIccRecords.getNetworkLockedRecordsLoaded())) { // locked records loaded in updateExternalState() 562 if (mIccRecords != null) { in registerCurrAppEvents() [all …]
|
D | UiccCardApplication.java | 83 private IccRecords mIccRecords; field in UiccCardApplication 113 mIccRecords = createIccRecords(as.app_type, mContext, mCi); in UiccCardApplication() 146 if (mIccRecords != null) { mIccRecords.dispose();} in update() 148 mIccRecords = createIccRecords(as.app_type, c, ci); in update() 174 if (mIccRecords != null) { mIccRecords.dispose();} in dispose() 176 mIccRecords = null; in dispose() 624 return mIccRecords; in getIccRecords() 917 pw.println(" mIccRecords=" + mIccRecords); in dump()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
D | CatService.java | 88 private static IccRecords mIccRecords; field in CatService 169 mIccRecords = ir; in CatService() 173 mIccRecords.registerForRecordsLoaded(this, MSG_ID_ICC_RECORDS_LOADED, null); in CatService() 227 } else if ((ir != null) && (mIccRecords != ir)) { in getInstance() 228 if (mIccRecords != null) { in getInstance() 229 mIccRecords.unregisterForRecordsLoaded(sInstance[slotId]); in getInstance() 232 mIccRecords = ir; in getInstance() 235 mIccRecords.registerForRecordsLoaded(sInstance[slotId], in getInstance() 247 mIccRecords.unregisterForRecordsLoaded(this); in dispose() 1125 if ((ir != null) && (mIccRecords != ir)) { in update() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | CarrierIdentifier.java | 86 private IccRecords mIccRecords; field in CarrierIdentifier 210 if (mIccRecords != newIccRecords) { in handleMessage() 211 if (mIccRecords != null) { in handleMessage() 213 mIccRecords.unregisterForRecordsLoaded(this); in handleMessage() 214 mIccRecords.unregisterForRecordsOverride(this); in handleMessage() 215 mIccRecords = null; in handleMessage() 221 mIccRecords = newIccRecords; in handleMessage()
|
D | GsmCdmaPhone.java | 494 IccRecords r = mIccRecords.get(); in updateVoiceMail() 725 IccRecords r = mIccRecords.get(); in getIccSerialNumber() 735 IccRecords r = mIccRecords.get(); in getFullIccSerialNumber() 1375 IccRecords r = mIccRecords.get(); in getVoiceMailNumber() 1436 IccRecords r = mIccRecords.get(); in getVoiceMailAlphaTag() 1565 r = mIccRecords.get(); in setCarrierTestOverride() 1579 IccRecords r = mIccRecords.get(); in getGroupIdLevel1() 1592 IccRecords r = mIccRecords.get(); in getGroupIdLevel2() 1605 IccRecords r = mIccRecords.get(); in getLine1Number() 1615 IccRecords r = mIccRecords.get(); in getPlmn() [all …]
|
D | ServiceStateTracker.java | 124 private IccRecords mIccRecords = null; field in ServiceStateTracker 1369 if (!mIsSubscriptionFromRuim && mIccRecords != null) { in handleMessage() 1373 mIccRecords.setImsi(getImsi()); in handleMessage() 1397 RuimRecords ruim = (RuimRecords) mIccRecords; in handleMessage() 2291 IccRecords iccRecords = mIccRecords; in updateSpnDisplay() 2531 if (mIccRecords != null) { in onUpdateIccAvailability() 2532 mIccRecords.unregisterForRecordsLoaded(this); in onUpdateIccAvailability() 2534 mIccRecords = null; in onUpdateIccAvailability() 2540 mIccRecords = mUiccApplcation.getIccRecords(); in onUpdateIccAvailability() 2543 if (mIccRecords != null) { in onUpdateIccAvailability() [all …]
|
D | Phone.java | 272 protected final AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in Phone 368 return mIccRecords.get(); in getIccRecords() 1666 IccRecords r = mIccRecords.get(); in getIccSerialNumber() 1674 IccRecords r = mIccRecords.get(); in getFullIccSerialNumber() 1687 IccRecords r = mIccRecords.get(); in getIccRecordsLoaded() 1816 IccRecords r = mIccRecords.get(); in setVoiceCallForwardingFlag() 1839 IccRecords r = mIccRecords.get(); in getCallForwardingIndicator() 3006 IccRecords r = mIccRecords.get(); in getUsimServiceTable() 3509 final IccRecords records = mIccRecords.get(); in getLocaleFromSimAndCarrierPrefs() 3667 pw.println(" mIccRecords=" + mIccRecords.get()); in dump()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
D | DcTracker.java | 251 if (mIccRecords.get() != null && mIccRecords.get().getRecordsLoaded()) { 446 private final AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in DcTracker 752 IccRecords r = mIccRecords.get(); in unregisterForAllEvents() 755 mIccRecords.set(null); in unregisterForAllEvents() 1257 boolean recordsLoaded = mIccRecords.get() != null && mIccRecords.get().getRecordsLoaded(); in isDataAllowed() 1722 IccRecords r = mIccRecords.get(); in fetchDunApns() 1903 IccRecords r = mIccRecords.get(); in createApnList() 2813 IccRecords r = mIccRecords.get(); in onRadioAvailable() 3331 IccRecords r = mIccRecords.get(); in createAllApnList() 3484 IccRecords r = mIccRecords.get(); in buildWaitingApns() [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/ |
D | ImsPhoneMmiCode.java | 172 private IccRecords mIccRecords; field in ImsPhoneMmiCode 507 mIccRecords = mPhone.mDefaultPhone.getIccRecords(); in ImsPhoneMmiCode() 1098 if (mIccRecords != null) { in handleMessage() 1392 if (mIccRecords != null) { in makeCFQueryResultMessage() 1425 if (mIccRecords != null) { in onQueryCfComplete() 1751 if (mIccRecords != null) { in parseSsData()
|