Searched defs:mCi (Results 1 - 16 of 16) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaServiceCategoryProgramHandler.java48 final CommandsInterface mCi; field in class:CdmaServiceCategoryProgramHandler
56 mCi = commandsInterface;
175 mCi.sendCdmaSms(baos.toByteArray(), null);
H A DCdmaSubscriptionSourceManager.java50 private CommandsInterface mCi; field in class:CdmaSubscriptionSourceManager
60 mCi = ci;
61 mCi.registerForCdmaSubscriptionChanged(this, EVENT_CDMA_SUBSCRIPTION_SOURCE_CHANGED, null);
62 mCi.registerForOn(this, EVENT_RADIO_ON, null);
92 mCi.unregisterForCdmaSubscriptionChanged(this);
93 mCi.unregisterForOn(this);
116 mCi.getCdmaSubscriptionSource(obtainMessage(EVENT_GET_CDMA_SUBSCRIPTION_SOURCE));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsStorageMonitor.java57 final CommandsInterface mCi; // accessed from inner class field in class:SmsStorageMonitor
72 mCi = phone.mCi;
76 mCi.setOnIccSmsFull(this, EVENT_ICC_FULL, null);
77 mCi.registerForOn(this, EVENT_RADIO_ON, null);
88 mCi.unSetOnIccSmsFull(this);
89 mCi.unregisterForOn(this);
121 mCi.reportSmsMemoryStatus(mStorageAvailable,
155 mCi.reportSmsMemoryStatus(false, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
158 mCi
[all...]
H A DCallTracker.java45 public CommandsInterface mCi; field in class:CallTracker
71 mCi.getCurrentCalls(mLastRelevantPoll);
155 mCi.testingEmergencyCall();
H A DSMSDispatcher.java130 protected final CommandsInterface mCi; field in class:SMSDispatcher
180 mCi = phone.mCi;
H A DServiceStateTracker.java53 protected CommandsInterface mCi; field in class:ServiceStateTracker
206 mCi = ci;
211 mCi.setOnSignalStrengthUpdate(this, EVENT_SIGNAL_STRENGTH_UPDATE, null);
212 mCi.registerForCellInfoList(this, EVENT_UNSOL_CELL_INFO_LIST, null);
219 mCi.unSetOnSignalStrengthUpdate(this);
221 mCi.unregisterForCellInfoList(this);
330 mCi.getPreferredNetworkType(
357 mCi.setLocationUpdates(true, obtainMessage(EVENT_LOCATION_UPDATES_ENABLED));
363 mCi.setLocationUpdates(true, obtainMessage(EVENT_LOCATION_UPDATES_ENABLED));
369 mCi
[all...]
H A DPhoneBase.java128 public CommandsInterface mCi; field in class:PhoneBase
256 mCi = ci;
270 mCi.setOnCallRing(this, EVENT_CALL_RING, null);
309 mCi.unSetOnCallRing(this);
469 mCi.registerForInCallVoicePrivacyOn(h,what,obj);
475 mCi.unregisterForInCallVoicePrivacyOn(h);
481 mCi.registerForInCallVoicePrivacyOff(h,what,obj);
487 mCi.unregisterForInCallVoicePrivacyOff(h);
583 mCi.setNetworkSelectionModeAutomatic(response);
585 mCi
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadTest.java42 mHandler = new UsimDataDownloadHandler(mCi);
59 private UsimDataDownloadCommands mCi; field in class:UsimDataDownloadTest
66 mCi = new UsimDataDownloadCommands(mContext);
114 mCi.expectSendEnvelope(SMS_PP_ENVELOPE_3_1_1, 0x90, 0x00, "");
115 mCi.expectAcknowledgeGsmSms(true, 0);
117 mCi.assertExpectedMethodsCalled();
119 mCi.expectSendEnvelope(SMS_PP_ENVELOPE_3_1_1, 0x90, 0x00, "0123456789");
120 mCi.expectAcknowledgeGsmSmsWithPdu(true, "00077f16050123456789");
122 mCi.assertExpectedMethodsCalled();
124 mCi
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityLte.java36 private final int mCi; field in class:CellIdentityLte
48 mCi = Integer.MAX_VALUE;
66 mCi = ci;
74 mCi = cid.mCi;
101 return mCi;
121 return (mMcc * primeNum) + (mMnc * primeNum) + (mCi * primeNum) + (mPci * primeNum) +
132 mCi == o.mCi &&
133 mPci == o.mCi
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DUsimDataDownloadHandler.java59 private final CommandsInterface mCi; field in class:UsimDataDownloadHandler
62 mCi = commandsInterface;
89 mCi.writeSmsToSim(SmsManager.STATUS_ON_ICC_UNREAD, smsc,
169 mCi.sendEnvelopeWithStatus(encodedEnvelope, obtainMessage(
222 mCi.acknowledgeLastIncomingGsmSms(true, 0, null);
256 mCi.acknowledgeIncomingGsmSmsWithPdu(success,
261 mCi.acknowledgeLastIncomingGsmSms(false, cause, null);
307 mCi.acknowledgeLastIncomingGsmSms(true, 0, null);
310 mCi.acknowledgeLastIncomingGsmSms(false,
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DUiccCard.java71 private CommandsInterface mCi; field in class:UiccCard
114 mCi = ci;
122 ics.mApplications[i], mContext, mCi);
130 mUiccApplications[i].update(ics.mApplications[i], mContext, mCi);
136 mCatService = CatService.getInstance(mCi,
148 RadioState radioState = mCi.getRadioState();
360 pw.println(" mCi=" + mCi);
H A DUiccController.java87 private CommandsInterface mCi; field in class:UiccController
177 mCi.getIccCardStatus(obtainMessage(EVENT_GET_ICC_STATUS_DONE));
193 mCi = ci;
194 mCi.registerForIccStatusChanged(this, EVENT_ICC_STATUS_CHANGED, null);
196 mCi.registerForOn(this, EVENT_ICC_STATUS_CHANGED, null);
211 mUiccCard = new UiccCard(mContext, mCi, status);
214 mUiccCard.update(mContext, mCi , status);
229 pw.println(" mCi=" + mCi);
H A DIccCardProxy.java89 private CommandsInterface mCi; field in class:IccCardProxy
110 mCi = ci;
126 mCi.unregisterForOn(this);
127 mCi.unregisterForOffOrNotAvailable(this);
735 pw.println(" mCi=" + mCi);
H A DIccFileHandler.java96 protected final CommandsInterface mCi; field in class:IccFileHandler
131 mCi = ci;
154 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
172 mCi.iccIOForApp(COMMAND_GET_RESPONSE, IccConstants.EF_IMG,
191 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
208 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
226 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid),
244 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(fileid),
273 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(EF_IMG),
288 mCi
[all...]
H A DUiccCardApplication.java68 private CommandsInterface mCi; field in class:UiccCardApplication
95 mCi = ci;
98 mIccRecords = createIccRecords(as.app_type, mContext, mCi);
114 mCi = ci;
180 return new SIMFileHandler(this, mAid, mCi);
182 return new RuimFileHandler(this, mAid, mCi);
184 return new UsimFileHandler(this, mAid, mCi);
186 return new CsimFileHandler(this, mAid, mCi);
188 return new IsimFileHandler(this, mAid, mCi);
202 mCi
[all...]
H A DIccRecords.java42 protected CommandsInterface mCi; field in class:IccRecords
101 + " mCi=" + mCi
148 mCi = ci;
160 mCi = null;
511 pw.println(" mCi=" + mCi);

Completed in 220 milliseconds