Home
last modified time | relevance | path

Searched refs:mCi (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DUsimDataDownloadTest.java.broken42 mHandler = new UsimDataDownloadHandler(mCi);
59 private UsimDataDownloadCommands mCi;
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.expectSendEnvelope(SMS_PP_ENVELOPE_3_1_1, 0x62, 0xff, "0123456789abcdef");
[all …]
/frameworks/base/telephony/java/android/telephony/
DCellIdentityLte.java38 private final int mCi; field in CellIdentityLte
52 mCi = Integer.MAX_VALUE; in CellIdentityLte()
86 mCi = ci; in CellIdentityLte()
95 mCi = cid.mCi; in CellIdentityLte()
123 return mCi; in getCi()
149 return Objects.hash(mMcc, mMnc, mCi, mPci, mTac); in hashCode()
165 mCi == o.mCi && in equals()
176 sb.append(" mCi="); sb.append(mCi); in toString()
197 dest.writeInt(mCi); in writeToParcel()
207 mCi = in.readInt(); in CellIdentityLte()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DSmsStorageMonitor.java61 final CommandsInterface mCi; // accessed from inner class field in SmsStorageMonitor
77 mCi = phone.mCi; in SmsStorageMonitor()
81 mCi.setOnIccSmsFull(this, EVENT_ICC_FULL, null); in SmsStorageMonitor()
82 mCi.registerForOn(this, EVENT_RADIO_ON, null); in SmsStorageMonitor()
93 mCi.unSetOnIccSmsFull(this); in dispose()
94 mCi.unregisterForOn(this); in dispose()
126 mCi.reportSmsMemoryStatus(mStorageAvailable, in handleMessage()
161 mCi.reportSmsMemoryStatus(false, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
164 mCi.reportSmsMemoryStatus(true, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
DPhone.java221 public CommandsInterface mCi; field in Phone
427 mCi = ci; in Phone()
439 mCi.setOnCallRing(this, EVENT_CALL_RING, null); in Phone()
496 mCi.registerForSrvccStateChanged(this, EVENT_SRVCC_STATE_CHANGED, null); in Phone()
498 mCi.setOnUnsolOemHookRaw(this, EVENT_UNSOL_OEM_HOOK_RAW, null); in Phone()
499 mCi.startLceService(DEFAULT_REPORT_INTERVAL_MS, LCE_PULL_MODE, in Phone()
893 mCi.registerForInCallVoicePrivacyOn(h, what, obj); in registerForInCallVoicePrivacyOn()
902 mCi.unregisterForInCallVoicePrivacyOn(h); in unregisterForInCallVoicePrivacyOn()
913 mCi.registerForInCallVoicePrivacyOff(h, what, obj); in registerForInCallVoicePrivacyOff()
922 mCi.unregisterForInCallVoicePrivacyOff(h); in unregisterForInCallVoicePrivacyOff()
[all …]
DGsmCdmaCallTracker.java144 mCi = phone.mCi; in GsmCdmaCallTracker()
145 mCi.registerForCallStateChanged(this, EVENT_CALL_STATE_CHANGE, null); in GsmCdmaCallTracker()
146 mCi.registerForOn(this, EVENT_RADIO_AVAILABLE, null); in GsmCdmaCallTracker()
147 mCi.registerForNotAvailable(this, EVENT_RADIO_NOT_AVAILABLE, null); in GsmCdmaCallTracker()
170 mCi.unregisterForCallWaitingInfo(this); in updatePhoneType()
178 mCi.registerForCallWaitingInfo(this, EVENT_CALL_WAITING_INFO_CDMA, null); in updatePhoneType()
314 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage()); in dial()
430 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage()); in dial()
463 mCi.sendCDMAFeatureCode("", obtainMessage(EVENT_THREE_WAY_DIAL_BLANK_FLASH)); in dialThreeWay()
465 mCi.sendCDMAFeatureCode(mPendingMO.getAddress(), in dialThreeWay()
[all …]
DGsmCdmaPhone.java206 mSST = mTelephonyComponentFactory.makeServiceStateTracker(this, this.mCi); in GsmCdmaPhone()
234 mIccCardProxy = mTelephonyComponentFactory.makeIccCardProxy(mContext, mCi, mPhoneId); in initOnce()
236 mCi.registerForAvailable(this, EVENT_RADIO_AVAILABLE, null); in initOnce()
237 mCi.registerForOffOrNotAvailable(this, EVENT_RADIO_OFF_OR_NOT_AVAILABLE, null); in initOnce()
238 mCi.registerForOn(this, EVENT_RADIO_ON, null); in initOnce()
239 mCi.setOnSuppServiceNotification(this, EVENT_SSN, null); in initOnce()
242 mCi.setOnUSSD(this, EVENT_USSD, null); in initOnce()
243 mCi.setOnSs(this, EVENT_SS, null); in initOnce()
247 mCi, this, EVENT_CDMA_SUBSCRIPTION_SOURCE_CHANGED, null); in initOnce()
250 mCi.setEmergencyCallbackMode(this, EVENT_EMERGENCY_CALLBACK_MODE_ENTER, null); in initOnce()
[all …]
DServiceStateTracker.java103 private CommandsInterface mCi; field in ServiceStateTracker
491 mCi = ci; in initOnce()
497 mCi.setOnSignalStrengthUpdate(this, EVENT_SIGNAL_STRENGTH_UPDATE, null); in initOnce()
498 mCi.registerForCellInfoList(this, EVENT_UNSOL_CELL_INFO_LIST, null); in initOnce()
505 mCi.registerForImsNetworkStateChanged(this, EVENT_IMS_STATE_CHANGED, null); in initOnce()
511 mCi.registerForRadioStateChanged(this, EVENT_RADIO_STATE_CHANGED, null); in initOnce()
512 mCi.registerForVoiceNetworkStateChanged(this, EVENT_NETWORK_STATE_CHANGED, null); in initOnce()
513 mCi.setOnNITZTime(this, EVENT_NITZ_TIME, null); in initOnce()
568 mCi.unregisterForCdmaPrlChanged(this); in updatePhoneType()
570 mCi.unregisterForCdmaOtaProvision(this); in updatePhoneType()
[all …]
DCallTracker.java46 public CommandsInterface mCi; field in CallTracker
75 mCi.getCurrentCalls(mLastRelevantPoll); in pollCallsWhenSafe()
190 if (mCi != null) { in checkForTestEmergencyNumber()
191 mCi.testingEmergencyCall(); in checkForTestEmergencyNumber()
DImsSMSDispatcher.java68 mCi.registerForOn(this, EVENT_RADIO_ON, null); in ImsSMSDispatcher()
69 mCi.registerForImsNetworkStateChanged(this, EVENT_IMS_STATE_CHANGED, null); in ImsSMSDispatcher()
84 mCi.unregisterForOn(this); in dispose()
85 mCi.unregisterForImsNetworkStateChanged(this); in dispose()
104 mCi.getImsRegistrationState(this.obtainMessage(EVENT_IMS_STATE_DONE)); in handleMessage()
DIccSmsInterfaceManager.java213 mPhone.mCi.deleteSmsOnSim(index, response); in updateMessageOnIccEf()
215 mPhone.mCi.deleteSmsOnRuim(index, response); in updateMessageOnIccEf()
263 mPhone.mCi.writeSmsToSim(status, IccUtils.bytesToHexString(smsc), in copyMessageToIccEf()
266 mPhone.mCi.writeSmsToRuim(status, IccUtils.bytesToHexString(pdu), in copyMessageToIccEf()
843 mPhone.mCi.setGsmBroadcastConfig(configs, response); in setCellBroadcastConfig()
863 mPhone.mCi.setGsmBroadcastActivation(activate, response); in setCellBroadcastActivation()
883 mPhone.mCi.setCdmaBroadcastConfig(configs, response); in setCdmaBroadcastConfig()
903 mPhone.mCi.setCdmaBroadcastActivation(activate, response); in setCdmaBroadcastActivation()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
DCdmaSubscriptionSourceManager.java54 private CommandsInterface mCi; field in CdmaSubscriptionSourceManager
62 mCi = ci; in CdmaSubscriptionSourceManager()
63 mCi.registerForCdmaSubscriptionChanged(this, EVENT_CDMA_SUBSCRIPTION_SOURCE_CHANGED, null); in CdmaSubscriptionSourceManager()
64 mCi.registerForOn(this, EVENT_RADIO_ON, null); in CdmaSubscriptionSourceManager()
68 mCi.registerForSubscriptionStatusChanged(this, EVENT_SUBSCRIPTION_STATUS_CHANGED, null); in CdmaSubscriptionSourceManager()
96 mCi.unregisterForCdmaSubscriptionChanged(this); in dispose()
97 mCi.unregisterForOn(this); in dispose()
98 mCi.unregisterForSubscriptionStatusChanged(this); in dispose()
121 mCi.getCdmaSubscriptionSource(obtainMessage(EVENT_GET_CDMA_SUBSCRIPTION_SOURCE)); in handleMessage()
134 mCi.getCdmaSubscriptionSource( in handleMessage()
DCdmaInboundSmsHandler.java66 phone.mCi); in CdmaInboundSmsHandler()
67 phone.mCi.setOnNewCdmaSms(getHandler(), EVENT_NEW_SMS, null); in CdmaInboundSmsHandler()
75 mPhone.mCi.unSetOnNewCdmaSms(getHandler()); in onQuitting()
188 mPhone.mCi.acknowledgeLastIncomingCdmaSms(success, causeCode, response); in acknowledgeLastIncomingSms()
DCdmaServiceCategoryProgramHandler.java50 final CommandsInterface mCi; field in CdmaServiceCategoryProgramHandler
58 mCi = commandsInterface; in CdmaServiceCategoryProgramHandler()
177 mCi.sendCdmaSms(baos.toByteArray(), null);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DUiccCardApplication.java79 private CommandsInterface mCi; field in UiccCardApplication
107 mCi = ci; in UiccCardApplication()
110 mIccRecords = createIccRecords(as.app_type, mContext, mCi); in UiccCardApplication()
115 mCi.registerForNotAvailable(mHandler, EVENT_RADIO_UNAVAILABLE, null); in UiccCardApplication()
127 mCi = ci; in update()
175 mCi.unregisterForNotAvailable(mHandler); in dispose()
195 return new SIMFileHandler(this, mAid, mCi); in createIccFileHandler()
197 return new RuimFileHandler(this, mAid, mCi); in createIccFileHandler()
199 return new UsimFileHandler(this, mAid, mCi); in createIccFileHandler()
201 return new CsimFileHandler(this, mAid, mCi); in createIccFileHandler()
[all …]
DIccFileHandler.java96 protected final CommandsInterface mCi; field in IccFileHandler
150 mCi = ci; in IccFileHandler()
175 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in loadEFLinearFixed()
207 mCi.iccIOForApp(COMMAND_GET_RESPONSE, IccConstants.EF_IMG, in loadEFImgLinearFixed()
228 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in getEFLinearRecordSize()
260 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in loadEFLinearFixedAll()
291 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid), in loadEFTransparent()
309 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(fileid), in loadEFTransparent()
338 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(EF_IMG), in loadEFImgTransparent()
355 mCi.iccIOForApp(COMMAND_UPDATE_RECORD, fileid, efPath, in updateEFLinearFixed()
[all …]
DUiccCard.java84 private CommandsInterface mCi; field in UiccCard
144 mCi = ci; in update()
153 ics.mApplications[i], mContext, mCi); in update()
161 mUiccApplications[i].update(ics.mApplications[i], mContext, mCi); in update()
178 RadioState radioState = mCi.getRadioState(); in update()
202 mCatService = CatService.getInstance(mCi, mContext, this, mPhoneId); in createAndUpdateCatService()
204 ((CatService)mCatService).update(mCi, mContext, this); in createAndUpdateCatService()
585 mCi.iccOpenLogicalChannel(AID, in iccOpenLogicalChannel()
594 mCi.iccCloseLogicalChannel(channel, in iccCloseLogicalChannel()
603 mCi.iccTransmitApduLogicalChannel(channel, cla, command, p1, p2, p3, in iccTransmitApduLogicalChannel()
[all …]
DIccRecords.java49 protected CommandsInterface mCi; field in IccRecords
122 + " mCi=" + mCi in toString()
167 mCi = ci; in IccRecords()
181 mCi = null; in dispose()
671 CommandsInterface ci = mCi; in getIccSimChallengeResponse()
704 pw.println(" mCi=" + mCi); in dump()
DIccCardProxy.java98 private CommandsInterface mCi; field in IccCardProxy
122 mCi = ci; in IccCardProxy()
143 mCi.unregisterForOn(this); in dispose()
144 mCi.unregisterForOffOrNotAvailable(this); in dispose()
216 if (CommandsInterface.RadioState.RADIO_UNAVAILABLE == mCi.getRadioState()) { in handleMessage()
908 pw.println(" mCi=" + mCi); in dump()
DIsimUiccRecords.java90 mCi.registerForIccRefresh(this, EVENT_ISIM_REFRESH, null); in IsimUiccRecords()
100 mCi.unregisterForIccRefresh(this); in dispose()
443 mCi.requestIsimAuthentication(nonce,obtainMessage(EVENT_AKA_AUTHENTICATE_DONE)); in getIsimChallengeResponse()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DUsimDataDownloadHandler.java59 private final CommandsInterface mCi; field in UsimDataDownloadHandler
62 mCi = commandsInterface; in UsimDataDownloadHandler()
89 mCi.writeSmsToSim(SmsManager.STATUS_ON_ICC_UNREAD, smsc, in handleUsimDataDownload()
169 mCi.sendEnvelopeWithStatus(encodedEnvelope, obtainMessage( in handleDataDownload()
222 mCi.acknowledgeLastIncomingGsmSms(true, 0, null); in sendSmsAckForEnvelopeResponse()
256 mCi.acknowledgeIncomingGsmSmsWithPdu(success, in sendSmsAckForEnvelopeResponse()
261 mCi.acknowledgeLastIncomingGsmSms(false, cause, null); in acknowledgeSmsWithError()
307 mCi.acknowledgeLastIncomingGsmSms(true, 0, null); in handleMessage()
310 mCi.acknowledgeLastIncomingGsmSms(false, in handleMessage()
DGsmInboundSmsHandler.java50 phone.mCi.setOnNewGsmSms(getHandler(), EVENT_NEW_SMS, null); in GsmInboundSmsHandler()
51 mDataDownloadHandler = new UsimDataDownloadHandler(phone.mCi); in GsmInboundSmsHandler()
59 mPhone.mCi.unSetOnNewGsmSms(getHandler()); in onQuitting()
164 mPhone.mCi.acknowledgeLastIncomingGsmSms(success, resultToCause(result), response); in acknowledgeLastIncomingSms()
DGsmSMSDispatcher.java66 mCi.setOnSmsStatus(this, EVENT_NEW_SMS_STATUS_REPORT, null); in GsmSMSDispatcher()
76 mCi.unSetOnSmsStatus(this); in dispose()
148 mCi.acknowledgeLastIncomingGsmSms(true, Intents.RESULT_SMS_HANDLED, null); in handleStatusReport()
308 mCi.sendSMSExpectMore(IccUtils.bytesToHexString(smsc), in sendSmsByPstn()
311 mCi.sendSMS(IccUtils.bytesToHexString(smsc), in sendSmsByPstn()
315 mCi.sendImsGsmSms(IccUtils.bytesToHexString(smsc), in sendSmsByPstn()
DGsmMmiCode.java589 mPhone.mCi.cancelPendingUssd(obtainMessage(EVENT_USSD_CANCEL_COMPLETE, this)); in cancel()
793 mPhone.mCi.queryCLIP( in processCode()
801 mPhone.mCi.setCLIR(CommandsInterface.CLIR_INVOCATION, in processCode()
804 mPhone.mCi.setCLIR(CommandsInterface.CLIR_SUPPRESSION, in processCode()
807 mPhone.mCi.getCLIR( in processCode()
821 mPhone.mCi.queryCallForwardStatus( in processCode()
860 mPhone.mCi.setCallForward(cfAction, reason, serviceClass, in processCode()
875 mPhone.mCi.queryFacilityLock(facility, password, in processCode()
878 mPhone.mCi.setFacilityLock(facility, isActivate(), password, in processCode()
903 mPhone.mCi.changeBarringPassword(facility, oldPwd, in processCode()
[all …]
DGsmCellBroadcastHandler.java46 phone.mCi.setOnNewGsmBroadcastSms(getHandler(), EVENT_NEW_SMS_MESSAGE, null); in GsmCellBroadcastHandler()
51 mPhone.mCi.unSetOnNewGsmBroadcastSms(getHandler()); in onQuitting()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcController.java156 mPhone.mCi.registerForRilConnected(getHandler(), in enter()
158 mPhone.mCi.registerForDataNetworkStateChanged(getHandler(), in enter()
169 mPhone.mCi.unregisterForRilConnected(getHandler()); in exit()
170 mPhone.mCi.unregisterForDataNetworkStateChanged(getHandler()); in exit()

12