HomeSort by relevance Sort by last modified time
    Searched refs:mIccRecords (Results 1 - 18 of 18) sorted by null

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardProxy.java 109 private IccRecords mIccRecords = null;
258 if (mIccRecords != null) {
259 String operator = mIccRecords.getOperatorNumeric();
304 if ((mCurrentAppType == UiccController.APP_FAM_3GPP) && (mIccRecords != null)) {
309 mPhoneId, mIccRecords.getServiceProviderName());
357 if (mIccRecords != newRecords || mUiccApplication != newApp || mUiccCard != newCard) {
362 mIccRecords = newRecords;
447 if (mIccRecords != null) {
448 mIccRecords.registerForImsiReady(this, EVENT_IMSI_READY, null);
449 mIccRecords.registerForRecordsLoaded(this, EVENT_RECORDS_LOADED, null)
    [all...]
UiccCardApplication.java 81 private IccRecords mIccRecords;
110 mIccRecords = createIccRecords(as.app_type, mContext, mCi);
143 if (mIccRecords != null) { mIccRecords.dispose();}
145 mIccRecords = createIccRecords(as.app_type, c, ci);
171 if (mIccRecords != null) { mIccRecords.dispose();}
173 mIccRecords = null;
624 return mIccRecords;
891 pw.println(" mIccRecords=" + mIccRecords)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 53 private AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
340 if (mIccRecords.get() != null) {
341 mIccRecords.get().unregisterForNewSms(this);
343 mIccRecords.set(null);
349 mIccRecords.set(newUiccApplication.getIccRecords());
350 if (mIccRecords.get() != null) {
351 mIccRecords.get().registerForNewSms(this, EVENT_NEW_ICC_SMS, null);
GSMPhone.java 314 IccRecords r = mIccRecords.get();
    [all...]
GsmMmiCode.java 121 IccRecords mIccRecords;
309 if (mIccRecords != null) {
310 mIccRecords.setVoiceCallForwardingFlag(1, cffEnabled, null);
550 mIccRecords = app.getIccRecords();
    [all...]
GsmServiceStateTracker.java 262 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);}
585 IccRecords iccRecords = mIccRecords;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatService.java 80 private static IccRecords mIccRecords;
161 mIccRecords = ir;
165 mIccRecords.registerForRecordsLoaded(this, MSG_ID_ICC_RECORDS_LOADED, null);
219 } else if ((ir != null) && (mIccRecords != ir)) {
220 if (mIccRecords != null) {
221 mIccRecords.unregisterForRecordsLoaded(sInstance[slotId]);
224 mIccRecords = ir;
227 mIccRecords.registerForRecordsLoaded(sInstance[slotId],
239 mIccRecords.unregisterForRecordsLoaded(this);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 110 RuimRecords ruim = (RuimRecords)mIccRecords;
447 eriText = (mIccRecords != null) ? mIccRecords.getServiceProviderName() : null;
463 mIccRecords != null && (mSS.getVoiceRegState() == ServiceState.STATE_IN_SERVICE)
469 ((RuimRecords)mIccRecords).getCsimSpnDisplayCondition();
474 mIccRecords != null) {
475 mSS.setOperatorAlphaLong(mIccRecords.getServiceProviderName());
CdmaServiceStateTracker.java 230 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);}
429 if (!mIsSubscriptionFromRuim && mIccRecords != null) {
431 log("GET_CDMA_SUBSCRIPTION set imsi in mIccRecords");
433 mIccRecords.setImsi(getImsi());
436 log("GET_CDMA_SUBSCRIPTION either mIccRecords is null or NV type device" +
437 " - not setting Imsi in mIccRecords");
    [all...]
CDMAPhone.java 545 IccRecords r = mIccRecords.get();
596 IccRecords r = mIccRecords.get();
933 IccRecords r = mIccRecords.get();
    [all...]
CDMALTEPhone.java 414 curIccRecords = mIccRecords.get();
423 + " mCdmaSubscriptionSource = " + mCdmaSubscriptionSource + " mIccRecords = "
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneMmiCode.java 168 private IccRecords mIccRecords;
454 mIccRecords = mPhone.mDefaultPhone.mIccRecords.get();
    [all...]
ImsPhone.java     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 223 public final AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
537 mIccRecords.set(null);
    [all...]
IccPhoneBookInterfaceManager.java 116 IccRecords r = phone.mIccRecords.get();
ServiceStateTracker.java 75 protected IccRecords mIccRecords = null;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 238 IccRecords r = mIccRecords.get();
241 mIccRecords.set(null);
717 IccRecords r = mIccRecords.get();
    [all...]
DcTrackerBase.java 199 protected AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
699 IccRecords r = mIccRecords.get();
    [all...]

Completed in 1147 milliseconds