/* * Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.internal.telephony; import android.annotation.NonNull; import android.annotation.Nullable; import android.compat.annotation.UnsupportedAppUsage; import android.net.KeepalivePacketData; import android.net.LinkProperties; import android.os.Build; import android.os.Handler; import android.os.Message; import android.os.WorkSource; import android.telephony.AccessNetworkConstants; import android.telephony.AccessNetworkConstants.AccessNetworkType; import android.telephony.BarringInfo; import android.telephony.CarrierRestrictionRules; import android.telephony.ClientRequestStats; import android.telephony.DomainSelectionService; import android.telephony.ImsiEncryptionInfo; import android.telephony.NetworkScanRequest; import android.telephony.RadioAccessSpecifier; import android.telephony.SignalThresholdInfo; import android.telephony.TelephonyManager; import android.telephony.TelephonyManager.HalService; import android.telephony.data.DataCallResponse; import android.telephony.data.DataProfile; import android.telephony.data.NetworkSliceInfo; import android.telephony.data.TrafficDescriptor; import android.telephony.emergency.EmergencyNumber; import android.telephony.ims.RegistrationManager; import android.telephony.ims.feature.MmTelFeature; import android.telephony.ims.stub.ImsRegistrationImplBase; import com.android.internal.telephony.cdma.CdmaSmsBroadcastConfigInfo; import com.android.internal.telephony.emergency.EmergencyConstants; import com.android.internal.telephony.gsm.SmsBroadcastConfigInfo; import com.android.internal.telephony.imsphone.ImsCallInfo; import com.android.internal.telephony.uicc.IccCardApplicationStatus.PersoSubState; import com.android.internal.telephony.uicc.IccCardStatus; import com.android.internal.telephony.uicc.SimPhonebookRecord; import java.util.List; /** * {@hide} */ public interface CommandsInterface { //***** Constants // Used as parameter to dial() and setCLIR() below static final int CLIR_DEFAULT = 0; // "use subscription default value" static final int CLIR_INVOCATION = 1; // (restrict CLI presentation) static final int CLIR_SUPPRESSION = 2; // (allow CLI presentation) // Used as return value for CDMA SS query static final int SS_STATUS_UNKNOWN = 0xff; // Used as parameters for call forward methods below static final int CF_ACTION_DISABLE = 0; static final int CF_ACTION_ENABLE = 1; static final int CF_ACTION_REGISTRATION = 3; static final int CF_ACTION_ERASURE = 4; static final int CF_REASON_UNCONDITIONAL = 0; static final int CF_REASON_BUSY = 1; static final int CF_REASON_NO_REPLY = 2; static final int CF_REASON_NOT_REACHABLE = 3; static final int CF_REASON_ALL = 4; static final int CF_REASON_ALL_CONDITIONAL = 5; // Used for call barring methods below static final String CB_FACILITY_BAOC = "AO"; static final String CB_FACILITY_BAOIC = "OI"; static final String CB_FACILITY_BAOICxH = "OX"; static final String CB_FACILITY_BAIC = "AI"; static final String CB_FACILITY_BAICr = "IR"; static final String CB_FACILITY_BA_ALL = "AB"; static final String CB_FACILITY_BA_MO = "AG"; static final String CB_FACILITY_BA_MT = "AC"; static final String CB_FACILITY_BA_SIM = "SC"; static final String CB_FACILITY_BA_FD = "FD"; static final String CB_FACILITY_BIC_ACR = "AR"; // Used for various supp services apis // See 27.007 +CCFC or +CLCK static final int SERVICE_CLASS_NONE = 0; // no user input static final int SERVICE_CLASS_VOICE = (1 << 0); static final int SERVICE_CLASS_DATA = (1 << 1); //synonym for 16+32+64+128 static final int SERVICE_CLASS_FAX = (1 << 2); static final int SERVICE_CLASS_SMS = (1 << 3); static final int SERVICE_CLASS_DATA_SYNC = (1 << 4); static final int SERVICE_CLASS_DATA_ASYNC = (1 << 5); static final int SERVICE_CLASS_PACKET = (1 << 6); static final int SERVICE_CLASS_PAD = (1 << 7); static final int SERVICE_CLASS_MAX = (1 << 7); // Max SERVICE_CLASS value // Numeric representation of string values returned // by messages sent to setOnUSSD handler static final int USSD_MODE_NOTIFY = 0; static final int USSD_MODE_REQUEST = 1; static final int USSD_MODE_NW_RELEASE = 2; static final int USSD_MODE_LOCAL_CLIENT = 3; static final int USSD_MODE_NOT_SUPPORTED = 4; static final int USSD_MODE_NW_TIMEOUT = 5; // GSM SMS fail cause for acknowledgeLastIncomingSMS. From TS 23.040, 9.2.3.22. static final int GSM_SMS_FAIL_CAUSE_MEMORY_CAPACITY_EXCEEDED = 0xD3; static final int GSM_SMS_FAIL_CAUSE_USIM_APP_TOOLKIT_BUSY = 0xD4; static final int GSM_SMS_FAIL_CAUSE_USIM_DATA_DOWNLOAD_ERROR = 0xD5; static final int GSM_SMS_FAIL_CAUSE_UNSPECIFIED_ERROR = 0xFF; // CDMA SMS fail cause for acknowledgeLastIncomingCdmaSms. From TS N.S0005, 6.5.2.125. static final int CDMA_SMS_FAIL_CAUSE_INVALID_TELESERVICE_ID = 4; static final int CDMA_SMS_FAIL_CAUSE_RESOURCE_SHORTAGE = 35; static final int CDMA_SMS_FAIL_CAUSE_OTHER_TERMINAL_PROBLEM = 39; static final int CDMA_SMS_FAIL_CAUSE_ENCODING_PROBLEM = 96; /** IMS voice capability */ int IMS_MMTEL_CAPABILITY_VOICE = 1 << 0; /** IMS video capability */ int IMS_MMTEL_CAPABILITY_VIDEO = 1 << 1; /** IMS SMS capability */ int IMS_MMTEL_CAPABILITY_SMS = 1 << 2; /** IMS RCS capabilities */ int IMS_RCS_CAPABILITIES = 1 << 3; //***** Methods /** * get latest radio power state from modem * @return */ int getRadioState(); /** * response.obj.result is an int[2] * * response.obj.result[0] is IMS registration state * 0 - Not registered * 1 - Registered * response.obj.result[1] is of type RILConstants.GSM_PHONE or * RILConstants.CDMA_PHONE */ void getImsRegistrationState(Message result); /** * Fires on any RadioState transition * Always fires immediately as well * * do not attempt to calculate transitions by storing getRadioState() values * on previous invocations of this notification. Instead, use the other * registration methods */ @UnsupportedAppUsage void registerForRadioStateChanged(Handler h, int what, Object obj); void unregisterForRadioStateChanged(Handler h); void registerForVoiceRadioTechChanged(Handler h, int what, Object obj); @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void unregisterForVoiceRadioTechChanged(Handler h); @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void registerForImsNetworkStateChanged(Handler h, int what, Object obj); void unregisterForImsNetworkStateChanged(Handler h); /** * Fires on any transition into RadioState.isOn() * Fires immediately if currently in that state * In general, actions should be idempotent. State may change * before event is received. */ @UnsupportedAppUsage void registerForOn(Handler h, int what, Object obj); @UnsupportedAppUsage void unregisterForOn(Handler h); /** * Fires on any transition out of RadioState.isAvailable() * Fires immediately if currently in that state * In general, actions should be idempotent. State may change * before event is received. */ @UnsupportedAppUsage void registerForAvailable(Handler h, int what, Object obj); @UnsupportedAppUsage void unregisterForAvailable(Handler h); /** * Fires on any transition into !RadioState.isAvailable() * Fires immediately if currently in that state * In general, actions should be idempotent. State may change * before event is received. */ @UnsupportedAppUsage void registerForNotAvailable(Handler h, int what, Object obj); void unregisterForNotAvailable(Handler h); /** * Fires on any transition into RADIO_OFF or !RadioState.isAvailable() * Fires immediately if currently in that state * In general, actions should be idempotent. State may change * before event is received. */ @UnsupportedAppUsage void registerForOffOrNotAvailable(Handler h, int what, Object obj); @UnsupportedAppUsage void unregisterForOffOrNotAvailable(Handler h); /** * Fires on any change in ICC status */ void registerForIccStatusChanged(Handler h, int what, Object obj); void unregisterForIccStatusChanged(Handler h); /** Register for ICC slot status changed event */ void registerForIccSlotStatusChanged(Handler h, int what, Object obj); /** Unregister for ICC slot status changed event */ void unregisterForIccSlotStatusChanged(Handler h); void registerForCallStateChanged(Handler h, int what, Object obj); void unregisterForCallStateChanged(Handler h); /** Register for network state changed event */ void registerForNetworkStateChanged(Handler h, int what, Object obj); /** Unregister from network state changed event */ void unregisterForNetworkStateChanged(Handler h); /** Register for data call list changed event */ void registerForDataCallListChanged(Handler h, int what, Object obj); /** Unregister from data call list changed event */ void unregisterForDataCallListChanged(Handler h); /** Register for the apn unthrottled event */ void registerForApnUnthrottled(Handler h, int what, Object obj); /** Unregister for apn unthrottled event */ void unregisterForApnUnthrottled(Handler h); /** Register for the slicing config changed event */ void registerForSlicingConfigChanged(Handler h, int what, Object obj); /** Unregister for slicing config changed event */ void unregisterForSlicingConfigChanged(Handler h); /** InCall voice privacy notifications */ void registerForInCallVoicePrivacyOn(Handler h, int what, Object obj); void unregisterForInCallVoicePrivacyOn(Handler h); void registerForInCallVoicePrivacyOff(Handler h, int what, Object obj); void unregisterForInCallVoicePrivacyOff(Handler h); /** Single Radio Voice Call State progress notifications */ void registerForSrvccStateChanged(Handler h, int what, Object obj); void unregisterForSrvccStateChanged(Handler h); /** * Handlers for subscription status change indications. * * @param h Handler for subscription status change messages. * @param what User-defined message code. * @param obj User object. */ void registerForSubscriptionStatusChanged(Handler h, int what, Object obj); void unregisterForSubscriptionStatusChanged(Handler h); /** * fires on any change in hardware configuration. */ void registerForHardwareConfigChanged(Handler h, int what, Object obj); void unregisterForHardwareConfigChanged(Handler h); /** * unlike the register* methods, there's only one new 3GPP format SMS handler. * if you need to unregister, you should also tell the radio to stop * sending SMS's to you (via AT+CNMI) * * AsyncResult.result is a String containing the SMS PDU */ void setOnNewGsmSms(Handler h, int what, Object obj); void unSetOnNewGsmSms(Handler h); /** * unlike the register* methods, there's only one new 3GPP2 format SMS handler. * if you need to unregister, you should also tell the radio to stop * sending SMS's to you (via AT+CNMI) * * AsyncResult.result is a String containing the SMS PDU */ void setOnNewCdmaSms(Handler h, int what, Object obj); void unSetOnNewCdmaSms(Handler h); /** * Set the handler for SMS Cell Broadcast messages. * * AsyncResult.result is a byte array containing the SMS-CB PDU */ @UnsupportedAppUsage void setOnNewGsmBroadcastSms(Handler h, int what, Object obj); void unSetOnNewGsmBroadcastSms(Handler h); /** * Register for NEW_SMS_ON_SIM unsolicited message * * AsyncResult.result is an int array containing the index of new SMS */ @UnsupportedAppUsage void setOnSmsOnSim(Handler h, int what, Object obj); void unSetOnSmsOnSim(Handler h); /** * Register for NEW_SMS_STATUS_REPORT unsolicited message * * AsyncResult.result is a String containing the status report PDU */ @UnsupportedAppUsage void setOnSmsStatus(Handler h, int what, Object obj); void unSetOnSmsStatus(Handler h); /** * unlike the register* methods, there's only one NITZ time handler * * AsyncResult.result is an Object[] * ((Object[])AsyncResult.result)[0] is a String containing the NITZ time string * ((Object[])AsyncResult.result)[1] is a Long containing the milliseconds since boot as * returned by elapsedRealtime() when this NITZ time * was posted. * * Please note that the delivery of this message may be delayed several * seconds on system startup */ @UnsupportedAppUsage void setOnNITZTime(Handler h, int what, Object obj); void unSetOnNITZTime(Handler h); /** * unlike the register* methods, there's only one USSD notify handler * * Represents the arrival of a USSD "notify" message, which may * or may not have been triggered by a previous USSD send * * AsyncResult.result is a String[] * ((String[])(AsyncResult.result))[0] contains status code * "0" USSD-Notify -- text in ((const char **)data)[1] * "1" USSD-Request -- text in ((const char **)data)[1] * "2" Session terminated by network * "3" other local client (eg, SIM Toolkit) has responded * "4" Operation not supported * "5" Network timeout * * ((String[])(AsyncResult.result))[1] contains the USSD message * The numeric representations of these are in USSD_MODE_* */ void setOnUSSD(Handler h, int what, Object obj); void unSetOnUSSD(Handler h); /** * unlike the register* methods, there's only one signal strength handler * AsyncResult.result is an int[2] * response.obj.result[0] is received signal strength (0-31, 99) * response.obj.result[1] is bit error rate (0-7, 99) * as defined in TS 27.007 8.5 */ @UnsupportedAppUsage void setOnSignalStrengthUpdate(Handler h, int what, Object obj); void unSetOnSignalStrengthUpdate(Handler h); /** * Sets the handler for SIM/RUIM SMS storage full unsolicited message. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnIccSmsFull(Handler h, int what, Object obj); void unSetOnIccSmsFull(Handler h); /** * Sets the handler for SIM Refresh notifications. * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void registerForIccRefresh(Handler h, int what, Object obj); void unregisterForIccRefresh(Handler h); @UnsupportedAppUsage void setOnIccRefresh(Handler h, int what, Object obj); void unsetOnIccRefresh(Handler h); /** * Sets the handler for RING notifications. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCallRing(Handler h, int what, Object obj); void unSetOnCallRing(Handler h); /** * Sets the handler for RESTRICTED_STATE changed notification, * eg, for Domain Specific Access Control * unlike the register* methods, there's only one signal strength handler * * AsyncResult.result is an int[1] * response.obj.result[0] is a bitmask of RIL_RESTRICTED_STATE_* values */ void setOnRestrictedStateChanged(Handler h, int what, Object obj); void unSetOnRestrictedStateChanged(Handler h); /** * Sets the handler for Supplementary Service Notifications. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnSuppServiceNotification(Handler h, int what, Object obj); void unSetOnSuppServiceNotification(Handler h); /** * Sets the handler for Session End Notifications for CAT. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCatSessionEnd(Handler h, int what, Object obj); void unSetOnCatSessionEnd(Handler h); /** * Sets the handler for Proactive Commands for CAT. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCatProactiveCmd(Handler h, int what, Object obj); void unSetOnCatProactiveCmd(Handler h); /** * Sets the handler for Event Notifications for CAT. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCatEvent(Handler h, int what, Object obj); void unSetOnCatEvent(Handler h); /** * Sets the handler for Call Set Up Notifications for CAT. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCatCallSetUp(Handler h, int what, Object obj); void unSetOnCatCallSetUp(Handler h); /** * Enables/disbables supplementary service related notifications from * the network. * * @param enable true to enable notifications, false to disable. * @param result Message to be posted when command completes. */ void setSuppServiceNotifications(boolean enable, Message result); //void unSetSuppServiceNotifications(Handler h); /** * Sets the handler for Alpha Notification during STK Call Control. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage void setOnCatCcAlphaNotify(Handler h, int what, Object obj); void unSetOnCatCcAlphaNotify(Handler h); /** * Sets the handler for notifying Suplementary Services (SS) * Data during STK Call Control. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void setOnSs(Handler h, int what, Object obj); void unSetOnSs(Handler h); /** * Register for unsolicited NATT Keepalive Status Indications * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ default void setOnRegistrationFailed(Handler h, int what, Object obj) {} /** * @param h Handler for notification message. */ default void unSetOnRegistrationFailed(Handler h) {} /** * Sets the handler for Event Notifications for CDMA Display Info. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForDisplayInfo(Handler h, int what, Object obj); void unregisterForDisplayInfo(Handler h); /** * Sets the handler for Event Notifications for CallWaiting Info. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForCallWaitingInfo(Handler h, int what, Object obj); void unregisterForCallWaitingInfo(Handler h); /** * Sets the handler for Event Notifications for Signal Info. * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForSignalInfo(Handler h, int what, Object obj); void unregisterForSignalInfo(Handler h); /** * Registers the handler for CDMA number information record * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForNumberInfo(Handler h, int what, Object obj); void unregisterForNumberInfo(Handler h); /** * Registers the handler for CDMA redirected number Information record * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForRedirectedNumberInfo(Handler h, int what, Object obj); void unregisterForRedirectedNumberInfo(Handler h); /** * Registers the handler for CDMA line control information record * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForLineControlInfo(Handler h, int what, Object obj); void unregisterForLineControlInfo(Handler h); /** * Registers the handler for CDMA T53 CLIR information record * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerFoT53ClirlInfo(Handler h, int what, Object obj); void unregisterForT53ClirInfo(Handler h); /** * Registers the handler for CDMA T53 audio control information record * Unlike the register* methods, there's only one notification handler * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ void registerForT53AudioControlInfo(Handler h, int what, Object obj); void unregisterForT53AudioControlInfo(Handler h); /** * Fires on if Modem enters Emergency Callback mode */ @UnsupportedAppUsage void setEmergencyCallbackMode(Handler h, int what, Object obj); /** * Fires on any CDMA OTA provision status change */ @UnsupportedAppUsage void registerForCdmaOtaProvision(Handler h, int what, Object obj); @UnsupportedAppUsage void unregisterForCdmaOtaProvision(Handler h); /** * Registers the handler when out-band ringback tone is needed.
* * Messages received from this: * Message.obj will be an AsyncResult * AsyncResult.userObj = obj * AsyncResult.result = boolean.
*/ void registerForRingbackTone(Handler h, int what, Object obj); void unregisterForRingbackTone(Handler h); /** * Registers the handler when mute/unmute need to be resent to get * uplink audio during a call.
* * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. * */ void registerForResendIncallMute(Handler h, int what, Object obj); void unregisterForResendIncallMute(Handler h); /** * Registers the handler for when Cdma subscription changed events * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. * */ void registerForCdmaSubscriptionChanged(Handler h, int what, Object obj); void unregisterForCdmaSubscriptionChanged(Handler h); /** * Registers the handler for when Cdma prl changed events * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. * */ void registerForCdmaPrlChanged(Handler h, int what, Object obj); void unregisterForCdmaPrlChanged(Handler h); /** * Registers the handler for when Cdma prl changed events * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. * */ void registerForExitEmergencyCallbackMode(Handler h, int what, Object obj); void unregisterForExitEmergencyCallbackMode(Handler h); /** * Registers the handler for RIL_UNSOL_RIL_CONNECT events. * * When ril connects or disconnects a message is sent to the registrant * which contains an AsyncResult, ar, in msg.obj. The ar.result is an * Integer which is the version of the ril or -1 if the ril disconnected. * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void registerForRilConnected(Handler h, int what, Object obj); @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void unregisterForRilConnected(Handler h); /** * Registers the handler for RIL_UNSOL_SIM_DETACH_FROM_NETWORK_CONFIG_CHANGED events. * * @param h Handler for notification message. * @param what User-defined message code. * @param obj User object. */ default void registerUiccApplicationEnablementChanged(Handler h, int what, Object obj) {}; /** * Unregisters the handler for RIL_UNSOL_SIM_DETACH_FROM_NETWORK_CONFIG_CHANGED events. * * @param h Handler for notification message. */ default void unregisterUiccApplicationEnablementChanged(Handler h) {}; /** * Supply the ICC PIN to the ICC card * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC will be PUK locked. * * ar.exception and ar.result are null on success */ @UnsupportedAppUsage void supplyIccPin(String pin, Message result); /** * Supply the PIN for the app with this AID on the ICC card * * AID (Application ID), See ETSI 102.221 8.1 and 101.220 4 * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC will be PUK locked. * * ar.exception and ar.result are null on success */ void supplyIccPinForApp(String pin, String aid, Message result); /** * Supply the ICC PUK and newPin to the ICC card * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC is permanently disabled. * * ar.exception and ar.result are null on success */ void supplyIccPuk(String puk, String newPin, Message result); /** * Supply the PUK, new pin for the app with this AID on the ICC card * * AID (Application ID), See ETSI 102.221 8.1 and 101.220 4 * * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC is permanently disabled. * * ar.exception and ar.result are null on success */ void supplyIccPukForApp(String puk, String newPin, String aid, Message result); /** * Supply the ICC PIN2 to the ICC card * Only called following operation where ICC_PIN2 was * returned as a a failure from a previous operation * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC will be PUK locked. * * ar.exception and ar.result are null on success */ void supplyIccPin2(String pin2, Message result); /** * Supply the PIN2 for the app with this AID on the ICC card * Only called following operation where ICC_PIN2 was * returned as a a failure from a previous operation * * AID (Application ID), See ETSI 102.221 8.1 and 101.220 4 * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC will be PUK locked. * * ar.exception and ar.result are null on success */ void supplyIccPin2ForApp(String pin2, String aid, Message result); /** * Supply the SIM PUK2 to the SIM card * Only called following operation where SIM_PUK2 was * returned as a a failure from a previous operation * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC is permanently disabled. * * ar.exception and ar.result are null on success */ void supplyIccPuk2(String puk2, String newPin2, Message result); /** * Supply the PUK2, newPin2 for the app with this AID on the ICC card * Only called following operation where SIM_PUK2 was * returned as a a failure from a previous operation * * AID (Application ID), See ETSI 102.221 8.1 and 101.220 4 * * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * This exception is CommandException with an error of PASSWORD_INCORRECT * if the password is incorrect * * ar.result is an optional array of integers where the first entry * is the number of attempts remaining before the ICC is permanently disabled. * * ar.exception and ar.result are null on success */ void supplyIccPuk2ForApp(String puk2, String newPin2, String aid, Message result); // TODO: Add java doc and indicate that msg.arg1 contains the number of attempts remaining. void changeIccPin(String oldPin, String newPin, Message result); void changeIccPinForApp(String oldPin, String newPin, String aidPtr, Message result); void changeIccPin2(String oldPin2, String newPin2, Message result); void changeIccPin2ForApp(String oldPin2, String newPin2, String aidPtr, Message result); @UnsupportedAppUsage void changeBarringPassword(String facility, String oldPwd, String newPwd, Message result); void supplyNetworkDepersonalization(String netpin, Message result); void supplySimDepersonalization(PersoSubState persoType, String controlKey, Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result contains a List of DriverCall * The ar.result List is sorted by DriverCall.index */ void getCurrentCalls (Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result contains a List of DataCallResponse */ @UnsupportedAppUsage void getDataCallList(Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure * * CLIR_DEFAULT == on "use subscription default value" * CLIR_SUPPRESSION == on "CLIR suppression" (allow CLI presentation) * CLIR_INVOCATION == on "CLIR invocation" (restrict CLI presentation) */ void dial(String address, boolean isEmergencyCall, EmergencyNumber emergencyNumberInfo, boolean hasKnownUserIntentEmergency, int clirMode, Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure * * CLIR_DEFAULT == on "use subscription default value" * CLIR_SUPPRESSION == on "CLIR suppression" (allow CLI presentation) * CLIR_INVOCATION == on "CLIR invocation" (restrict CLI presentation) */ void dial(String address, boolean isEmergencyCall, EmergencyNumber emergencyNumberInfo, boolean hasKnownUserIntentEmergency, int clirMode, UUSInfo uusInfo, Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is String containing IMSI on success */ @UnsupportedAppUsage void getIMSI(Message result); /** * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is String containing IMSI on success */ void getIMSIForApp(String aid, Message result); /** * Hang up one individual connection. * returned message * retMsg.obj = AsyncResult ar * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure * * 3GPP 22.030 6.5.5 * "Releases a specific active call X" */ void hangupConnection (int gsmIndex, Message result); /** * 3GPP 22.030 6.5.5 * "Releases all held calls or sets User Determined User Busy (UDUB) * for a waiting call." * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void hangupWaitingOrBackground (Message result); /** * 3GPP 22.030 6.5.5 * "Releases all active calls (if any exist) and accepts * the other (held or waiting) call." * * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void hangupForegroundResumeBackground (Message result); /** * 3GPP 22.030 6.5.5 * "Places all active calls (if any exist) on hold and accepts * the other (held or waiting) call." * * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ @UnsupportedAppUsage void switchWaitingOrHoldingAndActive (Message result); /** * 3GPP 22.030 6.5.5 * "Adds a held call to the conversation" * * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void conference (Message result); /** * Set preferred Voice Privacy (VP). * * @param enable true is enhanced and false is normal VP * @param result is a callback message */ void setPreferredVoicePrivacy(boolean enable, Message result); /** * Get currently set preferred Voice Privacy (VP) mode. * * @param result is a callback message */ void getPreferredVoicePrivacy(Message result); /** * 3GPP 22.030 6.5.5 * "Places all active calls on hold except call X with which * communication shall be supported." */ void separateConnection (int gsmIndex, Message result); /** * * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ @UnsupportedAppUsage void acceptCall (Message result); /** * also known as UDUB * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void rejectCall (Message result); /** * 3GPP 22.030 6.5.5 * "Connects the two calls and disconnects the subscriber from both calls" * * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void explicitCallTransfer (Message result); /** * cause code returned as int[0] in Message.obj.response * Returns integer cause code defined in TS 24.008 * Annex H or closest approximation. * Most significant codes: * - Any defined in 22.001 F.4 (for generating busy/congestion) * - Cause 68: ACM >= ACMMax */ void getLastCallFailCause (Message result); void setMute (boolean enableMute, Message response); void getMute (Message response); /** * response.obj is an AsyncResult * response.obj.result is an int[2] * response.obj.result[0] is received signal strength (0-31, 99) * response.obj.result[1] is bit error rate (0-7, 99) * as defined in TS 27.007 8.5 */ @UnsupportedAppUsage void getSignalStrength (Message response); /** * response.obj.result is an int[3] * response.obj.result[0] is registration state 0-5 from TS 27.007 7.2 * response.obj.result[1] is LAC if registered or -1 if not * response.obj.result[2] is CID if registered or -1 if not * valid LAC and CIDs are 0x0000 - 0xffff * * Please note that registration state 4 ("unknown") is treated * as "out of service" above */ @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void getVoiceRegistrationState (Message response); /** * response.obj.result is an int[3] * response.obj.result[0] is registration state 0-5 from TS 27.007 7.2 * response.obj.result[1] is LAC if registered or -1 if not * response.obj.result[2] is CID if registered or -1 if not * valid LAC and CIDs are 0x0000 - 0xffff * * Please note that registration state 4 ("unknown") is treated * as "out of service" above */ void getDataRegistrationState (Message response); /** * response.obj.result is a String[3] * response.obj.result[0] is long alpha or null if unregistered * response.obj.result[1] is short alpha or null if unregistered * response.obj.result[2] is numeric or null if unregistered */ @UnsupportedAppUsage void getOperator(Message response); /** * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ @UnsupportedAppUsage void sendDtmf(char c, Message result); /** * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void startDtmf(char c, Message result); /** * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void stopDtmf(Message result); /** * ar.exception carries exception on failure * ar.userObject contains the orignal value of result.obj * ar.result is null on success and failure */ void sendBurstDtmf(String dtmfString, int on, int off, Message result); /** * smscPDU is smsc address in PDU form GSM BCD format prefixed * by a length byte (as expected by TS 27.005) or NULL for default SMSC * pdu is SMS in PDU format as an ASCII hex string * less the SMSC address */ void sendSMS (String smscPDU, String pdu, Message response); /** * Send an SMS message, Identical to sendSMS, * except that more messages are expected to be sent soon * smscPDU is smsc address in PDU form GSM BCD format prefixed * by a length byte (as expected by TS 27.005) or NULL for default SMSC * pdu is SMS in PDU format as an ASCII hex string * less the SMSC address */ void sendSMSExpectMore (String smscPDU, String pdu, Message response); /** * @param pdu is CDMA-SMS in internal pseudo-PDU format * @param response sent when operation completes */ void sendCdmaSms(byte[] pdu, Message response); /** * Identical to sendCdmaSms, except that more messages are expected to be sent soon * @param pdu is CDMA-SMS in internal pseudo-PDU format * @param response response sent when operation completed */ void sendCdmaSMSExpectMore(byte[] pdu, Message response); /** * send SMS over IMS with 3GPP/GSM SMS format * @param smscPDU is smsc address in PDU form GSM BCD format prefixed * by a length byte (as expected by TS 27.005) or NULL for default SMSC * @param pdu is SMS in PDU format as an ASCII hex string * less the SMSC address * @param retry indicates if this is a retry; 0 == not retry, nonzero = retry * @param messageRef valid field if retry is set to nonzero. * Contains messageRef from RIL_SMS_Response corresponding to failed MO SMS * @param response sent when operation completes */ void sendImsGsmSms (String smscPDU, String pdu, int retry, int messageRef, Message response); /** * send SMS over IMS with 3GPP2/CDMA SMS format * @param pdu is CDMA-SMS in internal pseudo-PDU format * @param response sent when operation completes * @param retry indicates if this is a retry; 0 == not retry, nonzero = retry * @param messageRef valid field if retry is set to nonzero. * Contains messageRef from RIL_SMS_Response corresponding to failed MO SMS * @param response sent when operation completes */ void sendImsCdmaSms(byte[] pdu, int retry, int messageRef, Message response); /** * Deletes the specified SMS record from SIM memory (EF_SMS). * * @param index index of the SMS record to delete * @param response sent when operation completes */ @UnsupportedAppUsage void deleteSmsOnSim(int index, Message response); /** * Deletes the specified SMS record from RUIM memory (EF_SMS in DF_CDMA). * * @param index index of the SMS record to delete * @param response sent when operation completes */ @UnsupportedAppUsage void deleteSmsOnRuim(int index, Message response); /** * Writes an SMS message to SIM memory (EF_SMS). * * @param status status of message on SIM. One of: * SmsManger.STATUS_ON_ICC_READ * SmsManger.STATUS_ON_ICC_UNREAD * SmsManger.STATUS_ON_ICC_SENT * SmsManger.STATUS_ON_ICC_UNSENT * @param pdu message PDU, as hex string * @param response sent when operation completes. * response.obj will be an AsyncResult, and will indicate * any error that may have occurred (eg, out of memory). */ @UnsupportedAppUsage void writeSmsToSim(int status, String smsc, String pdu, Message response); /** * Writes an SMS message to RUIM memory (EF_SMS). * * @param status status of message on SIM. One of: * SmsManger.STATUS_ON_ICC_READ * SmsManger.STATUS_ON_ICC_UNREAD * SmsManger.STATUS_ON_ICC_SENT * SmsManger.STATUS_ON_ICC_UNSENT * @param pdu message PDU, as byte array * @param response sent when operation completes. response.obj will be an AsyncResult, and will * indicate any error that may have occurred (eg, out of memory). */ @UnsupportedAppUsage void writeSmsToRuim(int status, byte[] pdu, Message response); @UnsupportedAppUsage default void setRadioPower(boolean on, Message response) { setRadioPower(on, false, false, response); } /** * Sets the radio power on/off state (off is sometimes * called "airplane mode"). * * @param on true means "on", false means "off". * @param forEmergencyCall true means the purpose of turning radio power on is for emergency * call. No effect if power is set false. * @param isSelectedPhoneForEmergencyCall true means this phone / modem is selected to place * emergency call after turning power on. No effect if power * or forEmergency is set false. * @param response sent when operation completes. */ default void setRadioPower(boolean on, boolean forEmergencyCall, boolean isSelectedPhoneForEmergencyCall, Message response) {} @UnsupportedAppUsage void acknowledgeLastIncomingGsmSms(boolean success, int cause, Message response); @UnsupportedAppUsage void acknowledgeLastIncomingCdmaSms(boolean success, int cause, Message response); /** * Acknowledge successful or failed receipt of last incoming SMS, * including acknowledgement TPDU to send as the RP-User-Data element * of the RP-ACK or RP-ERROR PDU. * * @param success true to send RP-ACK, false to send RP-ERROR * @param ackPdu the acknowledgement TPDU in hexadecimal format * @param response sent when operation completes. */ void acknowledgeIncomingGsmSmsWithPdu(boolean success, String ackPdu, Message response); /** * parameters equivalent to 27.007 AT+CRSM command * response.obj will be an AsyncResult * response.obj.result will be an IccIoResult on success */ @UnsupportedAppUsage void iccIO (int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, Message response); /** * parameters equivalent to 27.007 AT+CRSM command * response.obj will be an AsyncResult * response.obj.userObj will be a IccIoResult on success */ @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) void iccIOForApp (int command, int fileid, String path, int p1, int p2, int p3, String data, String pin2, String aid, Message response); /** * (AsyncResult)response.obj).result is an int[] with element [0] set to * 1 for "CLIP is provisioned", and 0 for "CLIP is not provisioned". * * @param response is callback message */ void queryCLIP(Message response); /** * response.obj will be a an int[2] * * response.obj[0] will be TS 27.007 +CLIR parameter 'n' * 0 presentation indicator is used according to the subscription of the CLIR service * 1 CLIR invocation * 2 CLIR suppression * * response.obj[1] will be TS 27.007 +CLIR parameter 'm' * 0 CLIR not provisioned * 1 CLIR provisioned in permanent mode * 2 unknown (e.g. no network, etc.) * 3 CLIR temporary mode presentation restricted * 4 CLIR temporary mode presentation allowed */ void getCLIR(Message response); /** * clirMode is one of the CLIR_* constants above * * response.obj is null */ void setCLIR(int clirMode, Message response); /** * (AsyncResult)response.obj).result is an int[] with element [0] set to * 0 for disabled, 1 for enabled. * * @param serviceClass is a sum of SERVICE_CLASS_* * @param response is callback message */ @UnsupportedAppUsage void queryCallWaiting(int serviceClass, Message response); /** * @param enable is true to enable, false to disable * @param serviceClass is a sum of SERVICE_CLASS_* * @param response is callback message */ @UnsupportedAppUsage void setCallWaiting(boolean enable, int serviceClass, Message response); /** * @param action is one of CF_ACTION_* * @param cfReason is one of CF_REASON_* * @param serviceClass is a sum of SERVICE_CLASSS_* */ @UnsupportedAppUsage void setCallForward(int action, int cfReason, int serviceClass, String number, int timeSeconds, Message response); /** * cfReason is one of CF_REASON_* * * ((AsyncResult)response.obj).result will be an array of * CallForwardInfo's * * An array of length 0 means "disabled for all codes" */ @UnsupportedAppUsage void queryCallForwardStatus(int cfReason, int serviceClass, String number, Message response); @UnsupportedAppUsage void setNetworkSelectionModeAutomatic(Message response); /** * Ask the radio to connect to the input network with specific RadioAccessNetwork * and change selection mode to manual. * @param operatorNumeric PLMN ID of the network to select. * @param ran radio access network type (see {@link AccessNetworkType}). * @param response callback message. */ @UnsupportedAppUsage void setNetworkSelectionModeManual(String operatorNumeric, int ran, Message response); /** * Queries whether the current network selection mode is automatic * or manual * * ((AsyncResult)response.obj).result is an int[] with element [0] being * a 0 for automatic selection and a 1 for manual selection */ @UnsupportedAppUsage void getNetworkSelectionMode(Message response); /** * Queries the currently available networks * * ((AsyncResult)response.obj).result is a List of NetworkInfo objects */ void getAvailableNetworks(Message response); /** * Starts a radio network scan * * ((AsyncResult)response.obj).result is a NetworkScanResult object */ void startNetworkScan(NetworkScanRequest nsr, Message response); /** * Stops the ongoing network scan * * ((AsyncResult)response.obj).result is a NetworkScanResult object * */ void stopNetworkScan(Message response); /** * Gets the baseband version */ @UnsupportedAppUsage void getBasebandVersion(Message response); /** * (AsyncResult)response.obj).result will be an Integer representing * the sum of enabled service classes (sum of SERVICE_CLASS_*) * * @param facility one of CB_FACILTY_* * @param password password or "" if not required * @param serviceClass is a sum of SERVICE_CLASS_* * @param response is callback message */ @UnsupportedAppUsage void queryFacilityLock (String facility, String password, int serviceClass, Message response); /** * (AsyncResult)response.obj).result will be an Integer representing * the sum of enabled service classes (sum of SERVICE_CLASS_*) for the * application with appId. * * @param facility one of CB_FACILTY_* * @param password password or "" if not required * @param serviceClass is a sum of SERVICE_CLASS_* * @param appId is application Id or null if none * @param response is callback message */ void queryFacilityLockForApp(String facility, String password, int serviceClass, String appId, Message response); /** * @param facility one of CB_FACILTY_* * @param lockState true means lock, false means unlock * @param password password or "" if not required * @param serviceClass is a sum of SERVICE_CLASS_* * @param response is callback message */ @UnsupportedAppUsage void setFacilityLock (String facility, boolean lockState, String password, int serviceClass, Message response); /** * Set the facility lock for the app with this AID on the ICC card. * * @param facility one of CB_FACILTY_* * @param lockState true means lock, false means unlock * @param password password or "" if not required * @param serviceClass is a sum of SERVICE_CLASS_* * @param appId is application Id or null if none * @param response is callback message */ void setFacilityLockForApp(String facility, boolean lockState, String password, int serviceClass, String appId, Message response); void sendUSSD (String ussdString, Message response); /** * Cancels a pending USSD session if one exists. * @param response callback message */ void cancelPendingUssd (Message response); /** * Assign a specified band for RF configuration. * * @param bandMode one of BM_*_BAND * @param response is callback message */ void setBandMode (int bandMode, Message response); /** * Query the list of band mode supported by RF. * * @param response is callback message * ((AsyncResult)response.obj).result is an int[] where int[0] is * the size of the array and the rest of each element representing * one available BM_*_BAND */ void queryAvailableBandMode (Message response); /** * Requests to set the preferred network type for searching and registering * (CS/PS domain, RAT, and operation mode) * @param networkType one of NT_*_TYPE * @param response is callback message */ @UnsupportedAppUsage void setPreferredNetworkType(int networkType , Message response); /** * Query the preferred network type setting * * @param response is callback message to report one of NT_*_TYPE */ @UnsupportedAppUsage void getPreferredNetworkType(Message response); /** * Requests to set the allowed network types for searching and registering. * * @param networkTypeBitmask {@link TelephonyManager.NetworkTypeBitMask} * @param response is callback message */ void setAllowedNetworkTypesBitmap( @TelephonyManager.NetworkTypeBitMask int networkTypeBitmask, Message response); /** * Query the allowed network types setting. * * @param response is callback message to report allowed network types bitmask */ void getAllowedNetworkTypesBitmap(Message response); /** * Enable/Disable E-UTRA-NR Dual Connectivity * @param nrDualConnectivityState expected NR dual connectivity state * This can be passed following states *