/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccCardProxy.java | 117 private IccRecords mIccRecords = null; 259 if (mIccRecords != null) { 260 String operator = mIccRecords.getOperatorNumeric(); 315 if ((mCurrentAppType == UiccController.APP_FAM_3GPP) && (mIccRecords != null)) { 321 mIccRecords.getServiceProviderName()); 372 if (mIccRecords != newRecords || mUiccApplication != newApp || mUiccCard != newCard) { 377 mIccRecords = newRecords; 455 if (mIccRecords != null) { 456 mIccRecords.registerForImsiReady(this, EVENT_IMSI_READY, null); 457 mIccRecords.registerForRecordsLoaded(this, EVENT_RECORDS_LOADED, null) [all...] |
UiccCardApplication.java | 79 private IccRecords mIccRecords; 108 mIccRecords = createIccRecords(as.app_type, mContext, mCi); 140 if (mIccRecords != null) { mIccRecords.dispose();} 142 mIccRecords = createIccRecords(as.app_type, c, ci); 168 if (mIccRecords != null) { mIccRecords.dispose();} 170 mIccRecords = null; 616 return mIccRecords; 879 pw.println(" mIccRecords=" + mIccRecords) [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
GsmSMSDispatcher.java | 56 private AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); 357 if (mIccRecords.get() != null) { 358 mIccRecords.get().unregisterForNewSms(this); 360 mIccRecords.set(null); 366 mIccRecords.set(newUiccApplication.getIccRecords()); 367 if (mIccRecords.get() != null) { 368 mIccRecords.get().registerForNewSms(this, EVENT_NEW_ICC_SMS, null);
|
GSMPhone.java | 949 IccRecords r = mIccRecords.get(); [all...] |
GsmMmiCode.java | 120 IccRecords mIccRecords; 417 mIccRecords = app.getIccRecords(); [all...] |
GsmServiceStateTracker.java | 265 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);} 591 IccRecords iccRecords = mIccRecords; [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/ |
CatService.java | 73 private static IccRecords mIccRecords; 151 mIccRecords = ir; 156 mIccRecords.registerForRecordsLoaded(this, MSG_ID_ICC_RECORDS_LOADED, null); 202 } else if ((ir != null) && (mIccRecords != ir)) { 203 if (mIccRecords != null) { 204 mIccRecords.unregisterForRecordsLoaded(sInstance); 207 mIccRecords = ir; 210 mIccRecords.registerForRecordsLoaded(sInstance, MSG_ID_ICC_RECORDS_LOADED, null); 219 mIccRecords.unregisterForRecordsLoaded(this); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
CdmaLteServiceStateTracker.java | 98 RuimRecords ruim = (RuimRecords)mIccRecords; 404 eriText = (mIccRecords != null) ? mIccRecords.getServiceProviderName() : null; 420 mIccRecords != null) { 424 ((RuimRecords)mIccRecords).getCsimSpnDisplayCondition(); 429 mIccRecords != null) { 430 mSS.setOperatorAlphaLong(mIccRecords.getServiceProviderName());
|
CdmaServiceStateTracker.java | 230 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);} 430 if (!mIsSubscriptionFromRuim && mIccRecords != null) { 432 log("GET_CDMA_SUBSCRIPTION set imsi in mIccRecords"); 434 mIccRecords.setImsi(getImsi()); 437 log("GET_CDMA_SUBSCRIPTION either mIccRecords is null or NV type device" + 438 " - not setting Imsi in mIccRecords"); [all...] |
CDMAPhone.java | 527 IccRecords r = mIccRecords.get(); 899 IccRecords r = mIccRecords.get(); 948 IccRecords r = mIccRecords.get(); [all...] |
CDMALTEPhone.java | 420 curIccRecords = mIccRecords.get(); 429 + " mCdmaSubscriptionSource = " + mCdmaSubscriptionSource + " mIccRecords = "
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
PhoneBase.java | 185 public AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); 439 mIccRecords.set(null); [all...] |
IccPhoneBookInterfaceManager.java | 116 IccRecords r = phone.mIccRecords.get();
|
ServiceStateTracker.java | 59 protected IccRecords mIccRecords = null; [all...] |
/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 | 970 return mDefaultPhone.mIccRecords.get(); [all...] |
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/ |
DcTracker.java | 274 IccRecords r = mIccRecords.get(); 277 mIccRecords.set(null); [all...] |
DcTrackerBase.java | 199 protected AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); 647 IccRecords r = mIccRecords.get(); [all...] |