Home
last modified time | relevance | path

Searched refs:mCi (Results 1 – 25 of 37) 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()
162 mCi.reportSmsMemoryStatus(false, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
165 mCi.reportSmsMemoryStatus(true, obtainMessage(EVENT_REPORT_MEMORY_STATUS_DONE));
DPhone.java235 public CommandsInterface mCi; field in Phone
455 mCi = ci; in Phone()
468 mCi.setOnCallRing(this, EVENT_CALL_RING, null); in Phone()
528 mCi.registerForSrvccStateChanged(this, EVENT_SRVCC_STATE_CHANGED, null); in Phone()
530 mCi.setOnUnsolOemHookRaw(this, EVENT_UNSOL_OEM_HOOK_RAW, null); in Phone()
531 mCi.startLceService(DEFAULT_REPORT_INTERVAL_MS, LCE_PULL_MODE, in Phone()
935 mCi.registerForInCallVoicePrivacyOn(h, what, obj); in registerForInCallVoicePrivacyOn()
944 mCi.unregisterForInCallVoicePrivacyOn(h); in unregisterForInCallVoicePrivacyOn()
955 mCi.registerForInCallVoicePrivacyOff(h, what, obj); in registerForInCallVoicePrivacyOff()
964 mCi.unregisterForInCallVoicePrivacyOff(h); in unregisterForInCallVoicePrivacyOff()
[all …]
DGsmCdmaCallTracker.java146 mCi = phone.mCi; in GsmCdmaCallTracker()
147 mCi.registerForCallStateChanged(this, EVENT_CALL_STATE_CHANGE, null); in GsmCdmaCallTracker()
148 mCi.registerForOn(this, EVENT_RADIO_AVAILABLE, null); in GsmCdmaCallTracker()
149 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()
325 mCi.dial(mPendingMO.getAddress(), clirMode, uusInfo, obtainCompleteMessage()); in dial()
440 mCi.dial(mPendingMO.getAddress(), clirMode, obtainCompleteMessage()); in dial()
482 mCi.sendCDMAFeatureCode("", obtainMessage(EVENT_THREE_WAY_DIAL_BLANK_FLASH)); in dialThreeWay()
484 mCi.sendCDMAFeatureCode(mPendingMO.getAddress(), in dialThreeWay()
[all …]
DGsmCdmaPhone.java209 mSST = mTelephonyComponentFactory.makeServiceStateTracker(this, this.mCi); in GsmCdmaPhone()
238 mIccCardProxy = mTelephonyComponentFactory.makeIccCardProxy(mContext, mCi, mPhoneId); in initOnce()
240 mCi.registerForAvailable(this, EVENT_RADIO_AVAILABLE, null); in initOnce()
241 mCi.registerForOffOrNotAvailable(this, EVENT_RADIO_OFF_OR_NOT_AVAILABLE, null); in initOnce()
242 mCi.registerForOn(this, EVENT_RADIO_ON, null); in initOnce()
243 mCi.setOnSuppServiceNotification(this, EVENT_SSN, null); in initOnce()
246 mCi.setOnUSSD(this, EVENT_USSD, null); in initOnce()
247 mCi.setOnSs(this, EVENT_SS, null); in initOnce()
251 mCi, this, EVENT_CDMA_SUBSCRIPTION_SOURCE_CHANGED, null); in initOnce()
254 mCi.setEmergencyCallbackMode(this, EVENT_EMERGENCY_CALLBACK_MODE_ENTER, null); in initOnce()
[all …]
DServiceStateTracker.java113 private CommandsInterface mCi; field in ServiceStateTracker
529 mCi = ci; in ServiceStateTracker()
537 mCi.setOnSignalStrengthUpdate(this, EVENT_SIGNAL_STRENGTH_UPDATE, null); in ServiceStateTracker()
538 mCi.registerForCellInfoList(this, EVENT_UNSOL_CELL_INFO_LIST, null); in ServiceStateTracker()
546 mCi.registerForImsNetworkStateChanged(this, EVENT_IMS_STATE_CHANGED, null); in ServiceStateTracker()
552 mCi.registerForRadioStateChanged(this, EVENT_RADIO_STATE_CHANGED, null); in ServiceStateTracker()
553 mCi.registerForNetworkStateChanged(this, EVENT_NETWORK_STATE_CHANGED, null); in ServiceStateTracker()
554 mCi.setOnNITZTime(this, EVENT_NITZ_TIME, null); in ServiceStateTracker()
590 mCi.setOnRestrictedStateChanged(this, EVENT_RESTRICTED_STATE_CHANGED, null); in ServiceStateTracker()
629 mCi.unregisterForCdmaPrlChanged(this); in updatePhoneType()
[all …]
DCallTracker.java49 public CommandsInterface mCi; field in CallTracker
78 mCi.getCurrentCalls(mLastRelevantPoll); in pollCallsWhenSafe()
193 if (mCi != null) { in checkForTestEmergencyNumber()
194 mCi.testingEmergencyCall(); in checkForTestEmergencyNumber()
DImsSMSDispatcher.java70 mCi.registerForOn(this, EVENT_RADIO_ON, null); in ImsSMSDispatcher()
71 mCi.registerForImsNetworkStateChanged(this, EVENT_IMS_STATE_CHANGED, null); in ImsSMSDispatcher()
86 mCi.unregisterForOn(this); in dispose()
87 mCi.unregisterForImsNetworkStateChanged(this); in dispose()
106 mCi.getImsRegistrationState(this.obtainMessage(EVENT_IMS_STATE_DONE)); in handleMessage()
DDeviceStateMonitor.java192 mPhone.mCi.registerForRilConnected(this, EVENT_RIL_CONNECTED, null); in DeviceStateMonitor()
330 mPhone.mCi.sendDeviceState(type, state, null); in sendDeviceState()
342 mPhone.mCi.setUnsolResponseFilter(newFilter, null); in setUnsolResponseFilter()
DIccSmsInterfaceManager.java215 mPhone.mCi.deleteSmsOnSim(index, response); in updateMessageOnIccEf()
217 mPhone.mCi.deleteSmsOnRuim(index, response); in updateMessageOnIccEf()
265 mPhone.mCi.writeSmsToSim(status, IccUtils.bytesToHexString(smsc), in copyMessageToIccEf()
268 mPhone.mCi.writeSmsToRuim(status, IccUtils.bytesToHexString(pdu), in copyMessageToIccEf()
845 mPhone.mCi.setGsmBroadcastConfig(configs, response); in setCellBroadcastConfig()
865 mPhone.mCi.setGsmBroadcastActivation(activate, response); in setCellBroadcastActivation()
885 mPhone.mCi.setCdmaBroadcastConfig(configs, response); in setCdmaBroadcastConfig()
905 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()
189 mPhone.mCi.acknowledgeLastIncomingCdmaSms(success, causeCode, response); in acknowledgeLastIncomingSms()
DCdmaServiceCategoryProgramHandler.java49 final CommandsInterface mCi; field in CdmaServiceCategoryProgramHandler
57 mCi = commandsInterface; in CdmaServiceCategoryProgramHandler()
178 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.java98 protected final CommandsInterface mCi; field in IccFileHandler
152 mCi = ci; in IccFileHandler()
177 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in loadEFLinearFixed()
209 mCi.iccIOForApp(COMMAND_GET_RESPONSE, IccConstants.EF_IMG, in loadEFImgLinearFixed()
230 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in getEFLinearRecordSize()
262 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, efPath, in loadEFLinearFixedAll()
293 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(fileid), in loadEFTransparent()
311 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(fileid), in loadEFTransparent()
340 mCi.iccIOForApp(COMMAND_READ_BINARY, fileid, getEFPath(EF_IMG), in loadEFImgTransparent()
357 mCi.iccIOForApp(COMMAND_UPDATE_RECORD, fileid, efPath, in updateEFLinearFixed()
[all …]
DUiccCard.java82 private CommandsInterface mCi; field in UiccCard
142 mCi = ci; in update()
151 ics.mApplications[i], mContext, mCi); in update()
159 mUiccApplications[i].update(ics.mApplications[i], mContext, mCi); in update()
176 RadioState radioState = mCi.getRadioState(); in update()
200 mCatService = CatService.getInstance(mCi, mContext, this, mPhoneId); in createAndUpdateCatService()
202 ((CatService)mCatService).update(mCi, mContext, this); in createAndUpdateCatService()
583 mCi.iccOpenLogicalChannel(AID, p2, in iccOpenLogicalChannel()
592 mCi.iccCloseLogicalChannel(channel, in iccCloseLogicalChannel()
601 mCi.iccTransmitApduLogicalChannel(channel, cla, command, p1, p2, p3, in iccTransmitApduLogicalChannel()
[all …]
DIccRecords.java50 protected CommandsInterface mCi; field in IccRecords
139 + " mCi=" + mCi in toString()
185 mCi = ci; in IccRecords()
207 mCi = null; in dispose()
698 CommandsInterface ci = mCi; in getIccSimChallengeResponse()
736 pw.println(" mCi=" + mCi); in dump()
DRuimFileHandler.java51 mCi.iccIOForApp(COMMAND_GET_RESPONSE, fileid, getEFPath(EF_IMG), 0, 0, in loadEFImgTransparent()
/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.java52 phone.mCi.setOnNewGsmSms(getHandler(), EVENT_NEW_SMS, null); in GsmInboundSmsHandler()
53 mDataDownloadHandler = new UsimDataDownloadHandler(phone.mCi); in GsmInboundSmsHandler()
61 mPhone.mCi.unSetOnNewGsmSms(getHandler()); in onQuitting()
176 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.java594 mPhone.mCi.cancelPendingUssd(obtainMessage(EVENT_USSD_CANCEL_COMPLETE, this)); in cancel()
803 mPhone.mCi.queryCLIP( in processCode()
811 mPhone.mCi.setCLIR(CommandsInterface.CLIR_INVOCATION, in processCode()
814 mPhone.mCi.setCLIR(CommandsInterface.CLIR_SUPPRESSION, in processCode()
817 mPhone.mCi.getCLIR( in processCode()
831 mPhone.mCi.queryCallForwardStatus( in processCode()
870 mPhone.mCi.setCallForward(cfAction, reason, serviceClass, in processCode()
885 mPhone.mCi.queryFacilityLock(facility, password, in processCode()
888 mPhone.mCi.setFacilityLock(facility, isActivate(), password, in processCode()
913 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.java160 mPhone.mCi.registerForRilConnected(getHandler(), in enter()
162 mPhone.mCi.registerForDataCallListChanged(getHandler(), in enter()
173 mPhone.mCi.unregisterForRilConnected(getHandler()); in exit()
174 mPhone.mCi.unregisterForDataCallListChanged(getHandler()); in exit()

12