From 6381ac46aa8bf90d693dde332caf25b371f68358 Mon Sep 17 00:00:00 2001 From: sqian Date: Fri, 9 Jun 2017 12:10:43 -0700 Subject: [PATCH] Update IRadioResponse.hal documentation Update the error codes A copy of https://partner-android-review.googlesource.com/#/c/836552/ + some missed updated error codes + request_not_supported Test: Manual Bug: 35671595 Change-Id: I2880b442b5fd56149abc83949c12e2eba5ee67df --- current.txt | 1 + radio/1.0/IRadioResponse.hal | 393 ++++++++++++++++++++++++++++++++++- 2 files changed, 389 insertions(+), 5 deletions(-) diff --git a/current.txt b/current.txt index b671bac348..9b17dae895 100644 --- a/current.txt +++ b/current.txt @@ -190,4 +190,5 @@ fe3c3c2f572b72f15f8594c538b0577bd5c28722c31879cfe6231330cddb6747 android.hardwar # ABI preserving changes to HALs released in Android O 760485232f6cce07f8bb05e3475509956996b702f77415ee5bff05e2ec5a5bcc android.hardware.dumpstate@1.0::IDumpstateDevice +78589343d8ee2e1b155acad3fbdc7fcbb6af94491aee968b2383c21627264f8b android.hardware.radio@1.0::IRadioResponse 28e929b453df3d9f5060af2764e6cdb123ddb893e3e86923c877f6ff7e5f02c9 android.hardware.wifi@1.0::types diff --git a/radio/1.0/IRadioResponse.hal b/radio/1.0/IRadioResponse.hal index 35ab899bfb..8697e57d91 100644 --- a/radio/1.0/IRadioResponse.hal +++ b/radio/1.0/IRadioResponse.hal @@ -28,6 +28,12 @@ interface IRadioResponse { * * Valid errors returned: * RadioError:NONE + * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getIccCardStatusResponse(RadioResponseInfo info, CardStatus cardStatus); @@ -39,6 +45,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway supplyIccPinForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -50,6 +63,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT (PUK is invalid) + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway supplyIccPukForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -61,6 +81,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway supplyIccPin2ForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -71,6 +98,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT (PUK is invalid) + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway supplyIccPuk2ForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -82,6 +116,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway changeIccPinForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -93,6 +134,13 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) * RadioError:PASSWORD_INCORRECT (old PIN2 is invalid) + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:INVALID_SIM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway changeIccPin2ForAppResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -102,6 +150,7 @@ interface IRadioResponse { * * Valid errors returned: * RadioError:NONE + * RadioError:RADIO_NOT_AVAILABLE * RadioError:PASSWORD_INCORRECT (code is invalid) * RadioError:NO_MEMORY * RadioError:INVALID_SIM_STATE @@ -109,6 +158,9 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:MODEM_ERR * RadioError:INVALID_ARGUMENTS + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway supplyNetworkDepersonalizationResponse(RadioResponseInfo info, int32_t remainingRetries); @@ -124,6 +176,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:INVALID_ARGUMENTS * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCurrentCallsResponse(RadioResponseInfo info, vec calls); @@ -152,6 +206,7 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:CANCELLED */ oneway dialResponse(RadioResponseInfo info); @@ -162,6 +217,13 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE (radio resetting) + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_SIM_STATE + * RadioError:SIM_ERR + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getIMSIForAppResponse(RadioResponseInfo info, string imsi); @@ -177,6 +239,9 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INTERNAL_ERR * RadioError:INVALID_CALL_ID + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway hangupConnectionResponse(RadioResponseInfo info); @@ -196,6 +261,7 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:CANCELLED */ oneway hangupWaitingOrBackgroundResponse(RadioResponseInfo info); @@ -215,6 +281,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway hangupForegroundResumeBackgroundResponse(RadioResponseInfo info); @@ -235,6 +303,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway switchWaitingOrHoldingAndActiveResponse(RadioResponseInfo info); @@ -254,6 +324,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway conferenceResponse(RadioResponseInfo info); @@ -274,6 +346,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway rejectCallResponse(RadioResponseInfo info); @@ -322,6 +396,9 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getLastCallFailCauseResponse(RadioResponseInfo info, LastCallFailCauseInfo failCauseinfo); @@ -339,6 +416,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getSignalStrengthResponse(RadioResponseInfo info, SignalStrength sigStrength); @@ -350,6 +429,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getVoiceRegistrationStateResponse(RadioResponseInfo info, VoiceRegStateResult voiceRegResponse); @@ -368,6 +452,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getDataRegistrationStateResponse(RadioResponseInfo info, DataRegStateResult dataRegResponse); @@ -385,6 +471,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getOperatorResponse(RadioResponseInfo info, string longName, string shortName, string numeric); @@ -406,6 +494,8 @@ interface IRadioResponse { * RadioError:OPERATION_NOT_ALLOWED * RadioError:INVALID_MODEM_STATE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setRadioPowerResponse(RadioResponseInfo info); @@ -423,6 +513,7 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE */ oneway sendDtmfResponse(RadioResponseInfo info); @@ -452,6 +543,8 @@ interface IRadioResponse { * RadioError:INVALID_MODEM_STATE * RadioError:NETWORK_NOT_READY * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendSmsResponse(RadioResponseInfo info, SendSmsResult sms); @@ -481,6 +574,8 @@ interface IRadioResponse { * RadioError:INVALID_MODEM_STATE * RadioError:NETWORK_NOT_READY * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendSMSExpectMoreResponse(RadioResponseInfo info, SendSmsResult sms); @@ -497,7 +592,10 @@ interface IRadioResponse { * RadioError:OP_NOT_ALLOWED_DURING_VOICE_CALL * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_ARGUMENTS - * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setupDataCallResponse(RadioResponseInfo info, SetupDataCallResult dcResponse); @@ -510,6 +608,13 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:SIM_PIN2 * RadioError:SIM_PUK2 + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_SIM_STATE + * RadioError:SIM_ERR + * RadioError:REQUEST_NOT_SUPPORTED */ oneway iccIOForAppResponse(RadioResponseInfo info, IccIoResult iccIo); @@ -534,6 +639,8 @@ interface IRadioResponse { * RadioError:INVALID_STATE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendUssdResponse(RadioResponseInfo info); @@ -553,6 +660,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway cancelPendingUssdResponse(RadioResponseInfo info); @@ -574,6 +683,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_ARGUMENTS + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getClirResponse(RadioResponseInfo info, int32_t n, int32_t m); @@ -591,6 +702,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setClirResponse(RadioResponseInfo info); @@ -620,6 +733,8 @@ interface IRadioResponse { * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:SYSTEM_ERR + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCallForwardStatusResponse(RadioResponseInfo info, vec callForwardInfos); @@ -642,6 +757,8 @@ interface IRadioResponse { * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setCallForwardResponse(RadioResponseInfo info); @@ -669,6 +786,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCallWaitingResponse(RadioResponseInfo info, bool enable, int32_t serviceClass); @@ -690,6 +809,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setCallWaitingResponse(RadioResponseInfo info); @@ -699,6 +820,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway acknowledgeLastIncomingGsmSmsResponse(RadioResponseInfo info); @@ -717,6 +843,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway acceptCallResponse(RadioResponseInfo info); @@ -730,6 +858,10 @@ interface IRadioResponse { * RadioError:INVALID_STATE * RadioError:INVALID_ARGUMENTS * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway deactivateDataCallResponse(RadioResponseInfo info); @@ -752,6 +884,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getFacilityLockForAppResponse(RadioResponseInfo info, int32_t response); @@ -774,6 +908,8 @@ interface IRadioResponse { * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setFacilityLockForAppResponse(RadioResponseInfo info, int32_t retry); @@ -793,6 +929,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setBarringPasswordResponse(RadioResponseInfo info); @@ -809,6 +947,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getNetworkSelectionModeResponse(RadioResponseInfo info, bool manual); @@ -826,6 +966,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED * * Returns RadioError:ILLEGAL_SIM_OR_ME when the failure is permanent and * no retries needed, such as illegal SIM or ME. @@ -847,6 +989,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED * * Returns RadioError:ILLEGAL_SIM_OR_ME when the failure is permanent and * no retries needed, such as illegal SIM or ME. @@ -869,6 +1013,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:CANCELLED + * RadioError:NO_RESOURCES + * RadioError:INTERNAL_ERR */ oneway getAvailableNetworksResponse(RadioResponseInfo info, vec networkInfos); @@ -888,6 +1034,7 @@ interface IRadioResponse { * RadioError:INVALID_CALL_ID * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE */ oneway startDtmfResponse(RadioResponseInfo info); @@ -907,6 +1054,7 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:INVALID_CALL_ID * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE */ oneway stopDtmfResponse(RadioResponseInfo info); @@ -925,6 +1073,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getBasebandVersionResponse(RadioResponseInfo info, string version); @@ -945,6 +1095,7 @@ interface IRadioResponse { * RadioError:OPERATION_NOT_ALLOWED * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:CANCELLED */ oneway separateConnectionResponse(RadioResponseInfo info); @@ -960,6 +1111,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setMuteResponse(RadioResponseInfo info); @@ -979,6 +1132,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getMuteResponse(RadioResponseInfo info, bool enable); @@ -996,6 +1151,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:FDN_CHECK_FAILURE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getClipResponse(RadioResponseInfo info, ClipStatus status); @@ -1006,6 +1163,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getDataCallListResponse(RadioResponseInfo info, vec dcResponse); @@ -1022,6 +1184,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setSuppServiceNotificationsResponse(RadioResponseInfo info); @@ -1031,6 +1195,7 @@ interface IRadioResponse { * * Valid errors returned: * RadioError:NONE + * RadioError:RADIO_NOT_AVAILABLE * RadioError:SIM_FULL * RadioError:INVALID_ARGUMENTS * RadioError:INVALID_SMS_FORMAT @@ -1045,6 +1210,8 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway writeSmsToSimResponse(RadioResponseInfo info, int32_t index); @@ -1053,6 +1220,8 @@ interface IRadioResponse { * * Valid errors returned: * RadioError:NONE + * RadioError:RADIO_NOT_AVAILABLE + * RadioError:SIM_FULL * RadioError:INVALID_ARGUMENTS * RadioError:NO_MEMORY * RadioError:SYSTEM_ERR @@ -1061,6 +1230,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:RADIO_NOT_AVAILABLE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE */ oneway deleteSmsOnSimResponse(RadioResponseInfo info); @@ -1078,6 +1249,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setBandModeResponse(RadioResponseInfo info); @@ -1094,6 +1267,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getAvailableBandModesResponse(RadioResponseInfo info, vec bandModes); @@ -1107,6 +1282,13 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:SIM_BUSY * RadioError:OPERATION_NOT_ALLOWED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_ARGUMENTS + * RadioError:MODEM_ERR + * RadioError:REQUEST_NOT_SUPPORTED */ oneway sendEnvelopeResponse(RadioResponseInfo info, string commandResponse); @@ -1118,6 +1300,12 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:INVALID_ARGUMENTS * RadioError:OPERATION_NOT_ALLOWED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway sendTerminalResponseToSimResponse(RadioResponseInfo info); @@ -1126,11 +1314,15 @@ interface IRadioResponse { * * Valid errors returned: * RadioError:NONE + * RadioError:RADIO_NOT_AVAILABLE * RadioError:NO_MEMORY * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:MODEM_ERR * RadioError:INVALID_ARGUMENTS + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway handleStkCallSetupRequestFromSimResponse(RadioResponseInfo info); @@ -1151,6 +1343,8 @@ interface IRadioResponse { * RadioError:OPERATION_NOT_ALLOWED * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway explicitCallTransferResponse(RadioResponseInfo info); @@ -1168,6 +1362,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setPreferredNetworkTypeResponse(RadioResponseInfo info); @@ -1184,6 +1380,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getPreferredNetworkTypeResponse(RadioResponseInfo info, PreferredNetworkType nwType); @@ -1202,6 +1400,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NO_NETWORK_FOUND * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getNeighboringCidsResponse(RadioResponseInfo info, vec cells); @@ -1217,6 +1417,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setLocationUpdatesResponse(RadioResponseInfo info); @@ -1228,6 +1430,11 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:SIM_ABSENT * RadioError:SUBSCRIPTION_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway setCdmaSubscriptionSourceResponse(RadioResponseInfo info); @@ -1244,6 +1451,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setCdmaRoamingPreferenceResponse(RadioResponseInfo info); @@ -1260,6 +1469,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCdmaRoamingPreferenceResponse(RadioResponseInfo info, CdmaRoamingType type); @@ -1275,6 +1486,8 @@ interface IRadioResponse { * RadioError:NO_MEMORY * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setTTYModeResponse(RadioResponseInfo info); @@ -1291,6 +1504,8 @@ interface IRadioResponse { * RadioError:NO_MEMORY * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getTTYModeResponse(RadioResponseInfo info, TtyMode mode); @@ -1307,6 +1522,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_CALL_ID + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setPreferredVoicePrivacyResponse(RadioResponseInfo info); @@ -1324,6 +1541,8 @@ interface IRadioResponse { * RadioError:NO_MEMORY * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getPreferredVoicePrivacyResponse(RadioResponseInfo info, bool enable); @@ -1344,6 +1563,8 @@ interface IRadioResponse { * RadioError:INVALID_STATE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendCDMAFeatureCodeResponse(RadioResponseInfo info); @@ -1361,6 +1582,9 @@ interface IRadioResponse { * RadioError:INVALID_CALL_ID * RadioError:INVALID_STATE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE * RadioError:MODE_NOT_SUPPORTED */ oneway sendBurstDtmfResponse(RadioResponseInfo info); @@ -1391,6 +1615,8 @@ interface IRadioResponse { * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED * RadioError:ENCODING_ERR + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendCdmaSmsResponse(RadioResponseInfo info, SendSmsResult sms); @@ -1413,6 +1639,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway acknowledgeLastIncomingCdmaSmsResponse(RadioResponseInfo info); @@ -1432,6 +1660,9 @@ interface IRadioResponse { * RadioError:NO_RESOURCES * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway getGsmBroadcastConfigResponse(RadioResponseInfo info, vec configs); @@ -1450,6 +1681,9 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway setGsmBroadcastConfigResponse(RadioResponseInfo info); @@ -1468,6 +1702,9 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway setGsmBroadcastActivationResponse(RadioResponseInfo info); @@ -1487,6 +1724,9 @@ interface IRadioResponse { * RadioError:NO_RESOURCES * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway getCdmaBroadcastConfigResponse(RadioResponseInfo info, vec configs); @@ -1505,6 +1745,9 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway setCdmaBroadcastConfigResponse(RadioResponseInfo info); @@ -1523,6 +1766,9 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway setCdmaBroadcastActivationResponse(RadioResponseInfo info); @@ -1547,6 +1793,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCDMASubscriptionResponse(RadioResponseInfo info, string mdn, string hSid, string hNid, string min, string prl); @@ -1572,6 +1820,9 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE */ oneway writeSmsToRuimResponse(RadioResponseInfo info, uint32_t index); @@ -1588,6 +1839,9 @@ interface IRadioResponse { * RadioError:NO_SUCH_ENTRY * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE */ oneway deleteSmsOnRuimResponse(RadioResponseInfo info); @@ -1608,6 +1862,9 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED * * If a empty string value is returned for any of the device id, it means that there was error * accessing the device. @@ -1629,6 +1886,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:MODEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway exitEmergencyCallbackModeResponse(RadioResponseInfo info); @@ -1649,6 +1908,8 @@ interface IRadioResponse { * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getSmscAddressResponse(RadioResponseInfo info, string smsc); @@ -1668,6 +1929,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:OPERATION_NOT_ALLOWED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setSmscAddressResponse(RadioResponseInfo info); @@ -1685,6 +1948,8 @@ interface IRadioResponse { * RadioError:INVALID_STATE * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway reportSmsMemoryStatusResponse(RadioResponseInfo info); @@ -1694,6 +1959,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway reportStkServiceIsRunningResponse(RadioResponseInfo info); @@ -1705,6 +1975,11 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE * RadioError:SUBSCRIPTION_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getCdmaSubscriptionSourceResponse(RadioResponseInfo info, CdmaSubscriptionSource source); @@ -1715,6 +1990,13 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE + * RadioError:INVALID_ARGUMENTS + * RadioError:REQUEST_NOT_SUPPORTED */ oneway requestIsimAuthenticationResponse(RadioResponseInfo info, string response); @@ -1724,6 +2006,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway acknowledgeIncomingGsmSmsWithPduResponse(RadioResponseInfo info); @@ -1736,6 +2023,11 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:SIM_BUSY * RadioError:OPERATION_NOT_ALLOWED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway sendEnvelopeWithStatusResponse(RadioResponseInfo info, IccIoResult iccIo); @@ -1746,6 +2038,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getVoiceRadioTechnologyResponse(RadioResponseInfo info, RadioTechnology rat); @@ -1762,6 +2059,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:NO_NETWORK_FOUND * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getCellInfoListResponse(RadioResponseInfo info, vec cellInfo); @@ -1775,6 +2074,9 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:INVALID_ARGUMENTS + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway setCellInfoListRateResponse(RadioResponseInfo info); @@ -1792,6 +2094,8 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:NOT_PROVISIONED * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setInitialAttachApnResponse(RadioResponseInfo info); @@ -1804,12 +2108,12 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE - * RadioError:NO_MEMORY * RadioError:INTERNAL_ERR - * RadioError:SYSTEM_ERR - * RadioError:REQUEST_NOT_SUPPORTED - * RadioError:MODEM_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED * RadioError:INVALID_MODEM_STATE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getImsRegistrationStateResponse(RadioResponseInfo info, bool isRegistered, RadioTechnologyFamily ratFamily); @@ -1837,6 +2141,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED * RadioError:NETWORK_NOT_READY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendImsSmsResponse(RadioResponseInfo info, SendSmsResult sms); @@ -1847,6 +2153,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway iccTransmitApduBasicChannelResponse(RadioResponseInfo info, IccIoResult result); @@ -1861,6 +2172,14 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:MISSING_RESOURCE * RadioError:NO_SUCH_ELEMENT + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:SIM_ERR + * RadioError:INVALID_SIM_STATE + * RadioError:MISSING_RESOURCE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway iccOpenLogicalChannelResponse(RadioResponseInfo info, int32_t channelId, vec selectResponse); @@ -1871,6 +2190,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway iccCloseLogicalChannelResponse(RadioResponseInfo info); @@ -1881,6 +2205,11 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway iccTransmitApduLogicalChannelResponse(RadioResponseInfo info, IccIoResult result); @@ -1891,6 +2220,7 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway nvReadItemResponse(RadioResponseInfo info, string result); @@ -1900,6 +2230,7 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway nvWriteItemResponse(RadioResponseInfo info); @@ -1909,6 +2240,7 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway nvWriteCdmaPrlResponse(RadioResponseInfo info); @@ -1918,6 +2250,7 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway nvResetConfigResponse(RadioResponseInfo info); @@ -1934,6 +2267,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INVALID_ARGUMENTS * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setUiccSubscriptionResponse(RadioResponseInfo info); @@ -1950,6 +2285,9 @@ interface IRadioResponse { * RadioError:INVALID_ARGUMENTS * RadioError:DEVICE_IN_USE * RadioError:INVALID_MODEM_STATE + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway setDataAllowedResponse(RadioResponseInfo info); @@ -1960,6 +2298,7 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getHardwareConfigResponse(RadioResponseInfo info, vec config); @@ -1970,6 +2309,14 @@ interface IRadioResponse { * Valid errors returned: * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:INVALID_MODEM_STATE + * RadioError:SIM_ERR + * RadioError:INVALID_ARGUMENTS + * RadioError:REQUEST_NOT_SUPPORTED */ oneway requestIccSimAuthenticationResponse(RadioResponseInfo info, IccIoResult result); @@ -1980,6 +2327,11 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE * RadioError:SUBSCRIPTION_NOT_AVAILABLE + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway setDataProfileResponse(RadioResponseInfo info); @@ -1994,6 +2346,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway requestShutdownResponse(RadioResponseInfo info); @@ -2007,6 +2361,10 @@ interface IRadioResponse { * RadioError:OPERATION_NOT_ALLOWED * RadioError:INVALID_STATE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway getRadioCapabilityResponse(RadioResponseInfo info, RadioCapability rc); @@ -2026,6 +2384,8 @@ interface IRadioResponse { * RadioError:MODEM_ERR * RadioError:INVALID_STATE * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setRadioCapabilityResponse(RadioResponseInfo info, RadioCapability rc); @@ -2039,6 +2399,9 @@ interface IRadioResponse { * RadioError:LCE_NOT_SUPPORTED * RadioError:INTERNAL_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway startLceServiceResponse(RadioResponseInfo info, LceStatusInfo statusInfo); @@ -2050,6 +2413,11 @@ interface IRadioResponse { * RadioError:NONE * RadioError:RADIO_NOT_AVAILABLE * RadioError:LCE_NOT_SUPPORTED + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway stopLceServiceResponse(RadioResponseInfo info, LceStatusInfo statusInfo); @@ -2062,6 +2430,10 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:LCE_NOT_SUPPORTED * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway pullLceDataResponse(RadioResponseInfo info, LceDataInfo lceInfo); @@ -2077,6 +2449,9 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:MODEM_ERR * RadioError:NOT_PROVISIONED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED + * RadioError:REQUEST_NOT_SUPPORTED */ oneway getModemActivityInfoResponse(RadioResponseInfo info, ActivityStatsInfo activityInfo); @@ -2122,6 +2497,8 @@ interface IRadioResponse { * RadioError:SYSTEM_ERR * RadioError:INVALID_ARGUMENTS * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway sendDeviceStateResponse(RadioResponseInfo info); @@ -2136,6 +2513,8 @@ interface IRadioResponse { * RadioError:INTERNAL_ERR * RadioError:SYSTEM_ERR * RadioError:REQUEST_NOT_SUPPORTED + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setIndicationFilterResponse(RadioResponseInfo info); @@ -2147,6 +2526,10 @@ interface IRadioResponse { * RadioError:RADIO_NOT_AVAILABLE * RadioError:REQUEST_NOT_SUPPORTED * RadioError:INVALID_ARGUMENTS + * RadioError:INTERNAL_ERR + * RadioError:NO_MEMORY + * RadioError:NO_RESOURCES + * RadioError:CANCELLED */ oneway setSimCardPowerResponse(RadioResponseInfo info);