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

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardProxy.java 99 private IccRecords mIccRecords = null;
261 if (mIccRecords != newRecords || mUiccApplication != newApp || mUiccCard != newCard) {
266 mIccRecords = newRecords;
321 if (mIccRecords != null) {
322 mIccRecords.registerForImsiReady(this, EVENT_IMSI_READY, null);
323 mIccRecords.registerForRecordsLoaded(this, EVENT_RECORDS_LOADED, null);
332 if (mIccRecords != null) mIccRecords.unregisterForImsiReady(this);
333 if (mIccRecords != null) mIccRecords.unregisterForRecordsLoaded(this)
    [all...]
UiccCardApplication.java 70 private IccRecords mIccRecords;
98 mIccRecords = createIccRecords(as.app_type, mContext, mCi);
129 if (mIccRecords != null) { mIccRecords.dispose();}
131 mIccRecords = createIccRecords(as.app_type, c, ci);
157 if (mIccRecords != null) { mIccRecords.dispose();}
159 mIccRecords = null;
568 return mIccRecords;
827 pw.println(" mIccRecords=" + mIccRecords)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmSMSDispatcher.java 54 private AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
281 if (mIccRecords.get() != null) {
282 mIccRecords.get().unregisterForNewSms(this);
284 mIccRecords.set(null);
290 mIccRecords.set(newUiccApplication.getIccRecords());
291 if (mIccRecords.get() != null) {
292 mIccRecords.get().registerForNewSms(this, EVENT_NEW_ICC_SMS, null);
GSMPhone.java 828 IccRecords r = mIccRecords.get();
852 IccRecords r = mIccRecords.get();
893 IccRecords r = mIccRecords.get();
899 IccRecords r = mIccRecords.get();
905 IccRecords r = mIccRecords.get();
911 IccRecords r = mIccRecords.get();
917 IccRecords r = mIccRecords.get();
923 IccRecords r = mIccRecords.get();
937 IccRecords r = mIccRecords.get();
    [all...]
GsmMmiCode.java 118 IccRecords mIccRecords;
415 mIccRecords = app.getIccRecords();
    [all...]
GsmServiceStateTracker.java 253 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);}
518 IccRecords iccRecords = mIccRecords;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
CatService.java 69 private static IccRecords mIccRecords;
126 mIccRecords = ir;
131 mIccRecords.registerForRecordsLoaded(this, MSG_ID_ICC_RECORDS_LOADED, null);
140 mIccRecords.unregisterForRecordsLoaded(this);
559 } else if ((ir != null) && (mIccRecords != ir)) {
560 if (mIccRecords != null) {
561 mIccRecords.unregisterForRecordsLoaded(sInstance);
569 mIccRecords = ir;
573 mIccRecords.registerForRecordsLoaded(sInstance, MSG_ID_ICC_RECORDS_LOADED, null);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaLteServiceStateTracker.java 84 RuimRecords ruim = (RuimRecords)mIccRecords;
370 eriText = (mIccRecords != null) ? mIccRecords.getServiceProviderName() : null;
386 mIccRecords != null) {
390 ((RuimRecords)mIccRecords).getCsimSpnDisplayCondition();
395 mIccRecords != null) {
396 mSS.setOperatorAlphaLong(mIccRecords.getServiceProviderName());
CdmaServiceStateTracker.java 214 if (mIccRecords != null) {mIccRecords.unregisterForRecordsLoaded(this);}
407 if (!mIsSubscriptionFromRuim && mIccRecords != null) {
409 log("GET_CDMA_SUBSCRIPTION set imsi in mIccRecords");
411 mIccRecords.setImsi(getImsi());
414 log("GET_CDMA_SUBSCRIPTION either mIccRecords is null or NV type device" +
415 " - not setting Imsi in mIccRecords");
    [all...]
CDMAPhone.java 453 IccRecords r = mIccRecords.get();
819 IccRecords r = mIccRecords.get();
846 IccRecords r = mIccRecords.get();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 137 public AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
328 mIccRecords.set(null);
788 IccRecords r = mIccRecords.get();
794 IccRecords r = mIccRecords.get();
849 IccRecords r = mIccRecords.get();
855 IccRecords r = mIccRecords.get();
    [all...]
IccPhoneBookInterfaceManager.java 112 IccRecords r = phone.mIccRecords.get();
ServiceStateTracker.java 56 protected IccRecords mIccRecords = null;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 180 IccRecords r = mIccRecords.get();
566 IccRecords r = mIccRecords.get();
    [all...]
DcTrackerBase.java 194 protected AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>();
619 IccRecords r = mIccRecords.get();
    [all...]

Completed in 78 milliseconds