Searched defs:mIccRecords (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/uicc/
H A DIccRecordsTest.java45 private IccRecords mIccRecords; field in class:IccRecordsTest
54 mIccRecords = new SIMRecords(mUiccCardApplication3gpp, mContext, mSimulatedCommands);
74 verify(mSimulatedCommandsVerifier).registerForIccRefresh(eq(mIccRecords),
76 mIccRecords.dispose();
78 verify(mSimulatedCommandsVerifier).unregisterForIccRefresh(eq(mIccRecords));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGsmSMSDispatcher.java46 private AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in class:GsmSMSDispatcher
242 if (mIccRecords.get() != null) {
243 mIccRecords.get().unregisterForNewSms(this);
245 mIccRecords.set(null);
251 mIccRecords.set(newUiccApplication.getIccRecords());
252 if (mIccRecords.get() != null) {
253 mIccRecords.get().registerForNewSms(this, EVENT_NEW_ICC_SMS, null);
H A DGsmMmiCode.java142 IccRecords mIccRecords; field in class:GsmMmiCode
370 if (mIccRecords != null) {
611 mIccRecords = app.getIccRecords();
1186 if (mIccRecords != null) {
1561 if (mIccRecords != null) {
1595 if (mIccRecords != null) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCarrierIdentifier.java86 private IccRecords mIccRecords; field in class:CarrierIdentifier
210 if (mIccRecords != newIccRecords) {
211 if (mIccRecords != null) {
213 mIccRecords.unregisterForRecordsLoaded(this);
214 mIccRecords.unregisterForRecordsOverride(this);
215 mIccRecords = null;
221 mIccRecords = newIccRecords;
H A DServiceStateTracker.java124 private IccRecords mIccRecords = null; field in class:ServiceStateTracker
1369 if (!mIsSubscriptionFromRuim && mIccRecords != null) {
1371 log("GET_CDMA_SUBSCRIPTION set imsi in mIccRecords");
1373 mIccRecords.setImsi(getImsi());
1376 log("GET_CDMA_SUBSCRIPTION either mIccRecords is null or NV " +
1377 "type device - not setting Imsi in mIccRecords");
1397 RuimRecords ruim = (RuimRecords) mIccRecords;
2291 IccRecords iccRecords = mIccRecords;
2531 if (mIccRecords != null) {
2532 mIccRecords
[all...]
H A DPhone.java272 protected final AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in class:Phone
368 return mIccRecords.get();
1666 IccRecords r = mIccRecords.get();
1674 IccRecords r = mIccRecords.get();
1687 IccRecords r = mIccRecords.get();
1816 IccRecords r = mIccRecords.get();
1839 IccRecords r = mIccRecords.get();
3006 IccRecords r = mIccRecords.get();
3509 final IccRecords records = mIccRecords.get();
3667 pw.println(" mIccRecords
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java88 private static IccRecords mIccRecords; field in class:CatService
169 mIccRecords = ir;
173 mIccRecords.registerForRecordsLoaded(this, MSG_ID_ICC_RECORDS_LOADED, null);
227 } else if ((ir != null) && (mIccRecords != ir)) {
228 if (mIccRecords != null) {
229 mIccRecords.unregisterForRecordsLoaded(sInstance[slotId]);
232 mIccRecords = ir;
235 mIccRecords.registerForRecordsLoaded(sInstance[slotId],
247 mIccRecords.unregisterForRecordsLoaded(this);
1125 if ((ir != null) && (mIccRecords !
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCardApplication.java83 private IccRecords mIccRecords; field in class:UiccCardApplication
113 mIccRecords = createIccRecords(as.app_type, mContext, mCi);
146 if (mIccRecords != null) { mIccRecords.dispose();}
148 mIccRecords = createIccRecords(as.app_type, c, ci);
174 if (mIccRecords != null) { mIccRecords.dispose();}
176 mIccRecords = null;
624 return mIccRecords;
917 pw.println(" mIccRecords
[all...]
H A DUiccProfile.java135 private IccRecords mIccRecords = null; field in class:UiccProfile
189 if ((mCurrentAppType == UiccController.APP_FAM_3GPP) && (mIccRecords != null)) {
194 mPhoneId, mIccRecords.getServiceProviderName());
346 if (mIccRecords != null) {
347 mIccRecords.setServiceProviderName(ccName);
390 if (mIccRecords != newRecords || mUiccApplication != newApp) {
394 mIccRecords = newRecords;
471 if (mIccRecords != null && (mIccRecords.getLockedRecordsLoaded()
472 || mIccRecords
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneMmiCode.java172 private IccRecords mIccRecords; field in class:ImsPhoneMmiCode
507 mIccRecords = mPhone.mDefaultPhone.getIccRecords();
1098 if (mIccRecords != null) {
1392 if (mIccRecords != null) {
1425 if (mIccRecords != null) {
1751 if (mIccRecords != null) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java251 if (mIccRecords.get() != null && mIccRecords.get().getRecordsLoaded()) {
446 private final AtomicReference<IccRecords> mIccRecords = new AtomicReference<IccRecords>(); field in class:DcTracker
752 IccRecords r = mIccRecords.get();
755 mIccRecords.set(null);
1257 boolean recordsLoaded = mIccRecords.get() != null && mIccRecords.get().getRecordsLoaded();
1722 IccRecords r = mIccRecords.get();
1903 IccRecords r = mIccRecords.get();
2813 IccRecords r = mIccRecords
[all...]

Completed in 500 milliseconds