1 /*
2  * Copyright (C) 2006 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.internal.telephony;
18 
19 /**
20  * TODO: This should probably not be an interface see
21  * http://www.javaworld.com/javaworld/javaqa/2001-06/01-qa-0608-constants.html and google with
22  * http://www.google.com/search?q=interface+constants&ie=utf-8&oe=utf-8&aq=t&rls=com.ubuntu:en-US:unofficial&client=firefox-a
23  *
24  * Also they should all probably be static final.
25  */
26 
27 import android.os.SystemProperties;
28 import android.telephony.TelephonyManager;
29 
30 /**
31  * {@hide}
32  */
33 public interface RILConstants {
34     // From the top of ril.cpp
35     int RIL_ERRNO_INVALID_RESPONSE = -1;
36 
37     // from RIL_Errno
38     int SUCCESS = 0;
39     int RADIO_NOT_AVAILABLE = 1;              /* If radio did not start or is resetting */
40     int GENERIC_FAILURE = 2;
41     int PASSWORD_INCORRECT = 3;               /* for PIN/PIN2 methods only! */
42     int SIM_PIN2 = 4;                         /* Operation requires SIM PIN2 to be entered */
43     int SIM_PUK2 = 5;                         /* Operation requires SIM PIN2 to be entered */
44     int REQUEST_NOT_SUPPORTED = 6;
45     int REQUEST_CANCELLED = 7;
46     int OP_NOT_ALLOWED_DURING_VOICE_CALL = 8; /* data operation is not allowed during voice call in
47                                                  class C */
48     int OP_NOT_ALLOWED_BEFORE_REG_NW = 9;     /* request is not allowed before device registers to
49                                                  network */
50     int SMS_SEND_FAIL_RETRY = 10;             /* send sms fail and need retry */
51     int SIM_ABSENT = 11;                      /* ICC card is absent */
52     int SUBSCRIPTION_NOT_AVAILABLE = 12;      /* fail to find CDMA subscription from specified
53                                                  location */
54     int MODE_NOT_SUPPORTED = 13;              /* HW does not support preferred network type */
55     int FDN_CHECK_FAILURE = 14;               /* send operation barred error when FDN is enabled */
56     int ILLEGAL_SIM_OR_ME = 15;               /* network selection failure due
57                                                  to wrong SIM/ME and no
58                                                  retries needed */
59     int MISSING_RESOURCE = 16;                /* no logical channel available */
60     int NO_SUCH_ELEMENT = 17;                 /* application not found on SIM */
61     int DIAL_MODIFIED_TO_USSD = 18;           /* DIAL request modified to USSD */
62     int DIAL_MODIFIED_TO_SS = 19;             /* DIAL request modified to SS */
63     int DIAL_MODIFIED_TO_DIAL = 20;           /* DIAL request modified to DIAL with different data*/
64     int USSD_MODIFIED_TO_DIAL = 21;           /* USSD request modified to DIAL */
65     int USSD_MODIFIED_TO_SS = 22;             /* USSD request modified to SS */
66     int USSD_MODIFIED_TO_USSD = 23;           /* USSD request modified to different USSD request */
67     int SS_MODIFIED_TO_DIAL = 24;             /* SS request modified to DIAL */
68     int SS_MODIFIED_TO_USSD = 25;             /* SS request modified to USSD */
69     int SUBSCRIPTION_NOT_SUPPORTED = 26;      /* Subscription not supported */
70     int SS_MODIFIED_TO_SS = 27;               /* SS request modified to different SS request */
71     int SIM_ALREADY_POWERED_OFF = 29;         /* SAP: 0x03, Error card aleready powered off */
72     int SIM_ALREADY_POWERED_ON = 30;          /* SAP: 0x05, Error card already powered on */
73     int SIM_DATA_NOT_AVAILABLE = 31;          /* SAP: 0x06, Error data not available */
74     int SIM_SAP_CONNECT_FAILURE = 32;
75     int SIM_SAP_MSG_SIZE_TOO_LARGE = 33;
76     int SIM_SAP_MSG_SIZE_TOO_SMALL = 34;
77     int SIM_SAP_CONNECT_OK_CALL_ONGOING = 35;
78     int LCE_NOT_SUPPORTED = 36;               /* Link Capacity Estimation (LCE) not supported */
79     int NO_MEMORY = 37;                       /* Not sufficient memory to process the request */
80     int INTERNAL_ERR = 38;                    /* Hit unexpected vendor internal error scenario */
81     int SYSTEM_ERR = 39;                      /* Hit platform or system error */
82     int MODEM_ERR = 40;                       /* Hit unexpected modem error */
83     int INVALID_STATE = 41;                   /* Unexpected request for the current state */
84     int NO_RESOURCES = 42;                    /* Not sufficient resource to process the request */
85     int SIM_ERR = 43;                         /* Received error from SIM card */
86     int INVALID_ARGUMENTS = 44;               /* Received invalid arguments in request */
87     int INVALID_SIM_STATE = 45;               /* Can not process the request in current SIM state */
88     int INVALID_MODEM_STATE = 46;             /* Can not process the request in current Modem state */
89     int INVALID_CALL_ID = 47;                 /* Received invalid call id in request */
90     int NO_SMS_TO_ACK = 48;                   /* ACK received when there is no SMS to ack */
91     int NETWORK_ERR = 49;                     /* Received error from network */
92     int REQUEST_RATE_LIMITED = 50;            /* Operation denied due to overly-frequent requests */
93     int SIM_BUSY = 51;                        /* SIM is busy */
94     int SIM_FULL = 52;                        /* The target EF is full */
95     int NETWORK_REJECT = 53;                  /* Request is rejected by network */
96     int OPERATION_NOT_ALLOWED = 54;           /* Not allowed the request now */
97     int EMPTY_RECORD = 55;                    /* The request record is empty */
98     int INVALID_SMS_FORMAT = 56;              /* Invalid sms format */
99     int ENCODING_ERR = 57;                    /* Message not encoded properly */
100     int INVALID_SMSC_ADDRESS = 58;            /* SMSC address specified is invalid */
101     int NO_SUCH_ENTRY = 59;                   /* No such entry present to perform the request */
102     int NETWORK_NOT_READY = 60;               /* Network is not ready to perform the request */
103     int NOT_PROVISIONED = 61;                 /* Device doesnot have this value provisioned */
104     int NO_SUBSCRIPTION = 62;                 /* Device doesnot have subscription */
105     int NO_NETWORK_FOUND = 63;                /* Network cannot be found */
106     int DEVICE_IN_USE = 64;                   /* Operation cannot be performed because the device
107                                                  is currently in use */
108     int ABORTED = 65;                         /* Operation aborted */
109     int INVALID_RESPONSE = 66;                /* Invalid response sent by vendor code */
110 
111     // Below is list of OEM specific error codes which can by used by OEMs in case they don't want to
112     // reveal particular replacement for Generic failure
113     int OEM_ERROR_1 = 501;
114     int OEM_ERROR_2 = 502;
115     int OEM_ERROR_3 = 503;
116     int OEM_ERROR_4 = 504;
117     int OEM_ERROR_5 = 505;
118     int OEM_ERROR_6 = 506;
119     int OEM_ERROR_7 = 507;
120     int OEM_ERROR_8 = 508;
121     int OEM_ERROR_9 = 509;
122     int OEM_ERROR_10 = 510;
123     int OEM_ERROR_11 = 511;
124     int OEM_ERROR_12 = 512;
125     int OEM_ERROR_13 = 513;
126     int OEM_ERROR_14 = 514;
127     int OEM_ERROR_15 = 515;
128     int OEM_ERROR_16 = 516;
129     int OEM_ERROR_17 = 517;
130     int OEM_ERROR_18 = 518;
131     int OEM_ERROR_19 = 519;
132     int OEM_ERROR_20 = 520;
133     int OEM_ERROR_21 = 521;
134     int OEM_ERROR_22 = 522;
135     int OEM_ERROR_23 = 523;
136     int OEM_ERROR_24 = 524;
137     int OEM_ERROR_25 = 525;
138 
139     /* NETWORK_MODE_* See ril.h RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE */
140     int NETWORK_MODE_WCDMA_PREF     = 0; /* GSM/WCDMA (WCDMA preferred) */
141     int NETWORK_MODE_GSM_ONLY       = 1; /* GSM only */
142     int NETWORK_MODE_WCDMA_ONLY     = 2; /* WCDMA only */
143     int NETWORK_MODE_GSM_UMTS       = 3; /* GSM/WCDMA (auto mode, according to PRL)
144                                             AVAILABLE Application Settings menu*/
145     int NETWORK_MODE_CDMA           = 4; /* CDMA and EvDo (auto mode, according to PRL)
146                                             AVAILABLE Application Settings menu*/
147     int NETWORK_MODE_CDMA_NO_EVDO   = 5; /* CDMA only */
148     int NETWORK_MODE_EVDO_NO_CDMA   = 6; /* EvDo only */
149     int NETWORK_MODE_GLOBAL         = 7; /* GSM/WCDMA, CDMA, and EvDo (auto mode, according to PRL)
150                                             AVAILABLE Application Settings menu*/
151     int NETWORK_MODE_LTE_CDMA_EVDO  = 8; /* LTE, CDMA and EvDo */
152     int NETWORK_MODE_LTE_GSM_WCDMA  = 9; /* LTE, GSM/WCDMA */
153     int NETWORK_MODE_LTE_CDMA_EVDO_GSM_WCDMA = 10; /* LTE, CDMA, EvDo, GSM/WCDMA */
154     int NETWORK_MODE_LTE_ONLY       = 11; /* LTE Only mode. */
155     int NETWORK_MODE_LTE_WCDMA      = 12; /* LTE/WCDMA */
156     int NETWORK_MODE_TDSCDMA_ONLY            = 13; /* TD-SCDMA only */
157     int NETWORK_MODE_TDSCDMA_WCDMA           = 14; /* TD-SCDMA and WCDMA */
158     int NETWORK_MODE_LTE_TDSCDMA             = 15; /* TD-SCDMA and LTE */
159     int NETWORK_MODE_TDSCDMA_GSM             = 16; /* TD-SCDMA and GSM */
160     int NETWORK_MODE_LTE_TDSCDMA_GSM         = 17; /* TD-SCDMA,GSM and LTE */
161     int NETWORK_MODE_TDSCDMA_GSM_WCDMA       = 18; /* TD-SCDMA, GSM/WCDMA */
162     int NETWORK_MODE_LTE_TDSCDMA_WCDMA       = 19; /* TD-SCDMA, WCDMA and LTE */
163     int NETWORK_MODE_LTE_TDSCDMA_GSM_WCDMA   = 20; /* TD-SCDMA, GSM/WCDMA and LTE */
164     int NETWORK_MODE_TDSCDMA_CDMA_EVDO_GSM_WCDMA  = 21; /*TD-SCDMA,EvDo,CDMA,GSM/WCDMA*/
165     int NETWORK_MODE_LTE_TDSCDMA_CDMA_EVDO_GSM_WCDMA = 22; /* TD-SCDMA/LTE/GSM/WCDMA, CDMA, and EvDo */
166     int PREFERRED_NETWORK_MODE = Integer.parseInt(TelephonyManager.getTelephonyProperty(0,
167             "ro.telephony.default_network", Integer.toString(NETWORK_MODE_WCDMA_PREF)));
168 
169     int BAND_MODE_UNSPECIFIED = 0;      //"unspecified" (selected by baseband automatically)
170     int BAND_MODE_EURO = 1;             //"EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
171     int BAND_MODE_USA = 2;              //"US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
172     int BAND_MODE_JPN = 3;              //"JPN band" (WCDMA-800 / WCDMA-IMT-2000)
173     int BAND_MODE_AUS = 4;              //"AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
174     int BAND_MODE_AUS_2 = 5;            //"AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
175     int BAND_MODE_CELL_800 = 6;         //"Cellular" (800-MHz Band)
176     int BAND_MODE_PCS = 7;              //"PCS" (1900-MHz Band)
177     int BAND_MODE_JTACS = 8;            //"Band Class 3" (JTACS Band)
178     int BAND_MODE_KOREA_PCS = 9;        //"Band Class 4" (Korean PCS Band)
179     int BAND_MODE_5_450M = 10;          //"Band Class 5" (450-MHz Band)
180     int BAND_MODE_IMT2000 = 11;         //"Band Class 6" (2-GMHz IMT2000 Band)
181     int BAND_MODE_7_700M_2 = 12;        //"Band Class 7" (Upper 700-MHz Band)
182     int BAND_MODE_8_1800M = 13;         //"Band Class 8" (1800-MHz Band)
183     int BAND_MODE_9_900M = 14;          //"Band Class 9" (900-MHz Band)
184     int BAND_MODE_10_800M_2 = 15;       //"Band Class 10" (Secondary 800-MHz Band)
185     int BAND_MODE_EURO_PAMR_400M = 16;  //"Band Class 11" (400-MHz European PAMR Band)
186     int BAND_MODE_AWS = 17;             //"Band Class 15" (AWS Band)
187     int BAND_MODE_USA_2500M = 18;       //"Band Class 16" (US 2.5-GHz Band)
188 
189     int CDMA_CELL_BROADCAST_SMS_DISABLED = 1;
190     int CDMA_CELL_BROADCAST_SMS_ENABLED  = 0;
191 
192     int NO_PHONE = 0;
193     int GSM_PHONE = 1;
194     int CDMA_PHONE = 2;
195     int SIP_PHONE  = 3;
196     int THIRD_PARTY_PHONE = 4;
197     int IMS_PHONE = 5;
198     int CDMA_LTE_PHONE = 6;
199 
200     int LTE_ON_CDMA_UNKNOWN = -1;
201     int LTE_ON_CDMA_FALSE = 0;
202     int LTE_ON_CDMA_TRUE = 1;
203 
204     int CDM_TTY_MODE_DISABLED = 0;
205     int CDM_TTY_MODE_ENABLED = 1;
206 
207     int CDM_TTY_FULL_MODE = 1;
208     int CDM_TTY_HCO_MODE = 2;
209     int CDM_TTY_VCO_MODE = 3;
210 
211     /* Setup a packet data connection. See ril.h RIL_REQUEST_SETUP_DATA_CALL */
212     int SETUP_DATA_TECH_CDMA      = 0;
213     int SETUP_DATA_TECH_GSM       = 1;
214 
215     int SETUP_DATA_AUTH_NONE      = 0;
216     int SETUP_DATA_AUTH_PAP       = 1;
217     int SETUP_DATA_AUTH_CHAP      = 2;
218     int SETUP_DATA_AUTH_PAP_CHAP  = 3;
219 
220     String SETUP_DATA_PROTOCOL_IP     = "IP";
221     String SETUP_DATA_PROTOCOL_IPV6   = "IPV6";
222     String SETUP_DATA_PROTOCOL_IPV4V6 = "IPV4V6";
223 
224     /* NV config radio reset types. */
225     int NV_CONFIG_RELOAD_RESET = 1;
226     int NV_CONFIG_ERASE_RESET = 2;
227     int NV_CONFIG_FACTORY_RESET = 3;
228 
229     /* LCE service related constants. */
230     int LCE_NOT_AVAILABLE = -1;
231     int LCE_STOPPED = 0;
232     int LCE_ACTIVE = 1;
233 
234 /*
235 cat include/telephony/ril.h | \
236    egrep '^#define' | \
237    sed -re 's/^#define +([^ ]+)* +([^ ]+)/    int \1 = \2;/' \
238    >>java/android/com.android.internal.telephony/gsm/RILConstants.java
239 */
240 
241     /**
242      * No restriction at all including voice/SMS/USSD/SS/AV64
243      * and packet data.
244      */
245     int RIL_RESTRICTED_STATE_NONE = 0x00;
246     /**
247      * Block emergency call due to restriction.
248      * But allow all normal voice/SMS/USSD/SS/AV64.
249      */
250     int RIL_RESTRICTED_STATE_CS_EMERGENCY = 0x01;
251     /**
252      * Block all normal voice/SMS/USSD/SS/AV64 due to restriction.
253      * Only Emergency call allowed.
254      */
255     int RIL_RESTRICTED_STATE_CS_NORMAL = 0x02;
256     /**
257      * Block all voice/SMS/USSD/SS/AV64
258      * including emergency call due to restriction.
259      */
260     int RIL_RESTRICTED_STATE_CS_ALL = 0x04;
261     /**
262      * Block packet data access due to restriction.
263      */
264     int RIL_RESTRICTED_STATE_PS_ALL = 0x10;
265 
266     /** Data profile for RIL_REQUEST_SETUP_DATA_CALL */
267     public static final int DATA_PROFILE_DEFAULT   = 0;
268     public static final int DATA_PROFILE_TETHERED  = 1;
269     public static final int DATA_PROFILE_IMS       = 2;
270     public static final int DATA_PROFILE_FOTA      = 3;
271     public static final int DATA_PROFILE_CBS       = 4;
272     public static final int DATA_PROFILE_OEM_BASE  = 1000;
273     public static final int DATA_PROFILE_INVALID   = 0xFFFFFFFF;
274 
275     int RIL_REQUEST_GET_SIM_STATUS = 1;
276     int RIL_REQUEST_ENTER_SIM_PIN = 2;
277     int RIL_REQUEST_ENTER_SIM_PUK = 3;
278     int RIL_REQUEST_ENTER_SIM_PIN2 = 4;
279     int RIL_REQUEST_ENTER_SIM_PUK2 = 5;
280     int RIL_REQUEST_CHANGE_SIM_PIN = 6;
281     int RIL_REQUEST_CHANGE_SIM_PIN2 = 7;
282     int RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION = 8;
283     int RIL_REQUEST_GET_CURRENT_CALLS = 9;
284     int RIL_REQUEST_DIAL = 10;
285     int RIL_REQUEST_GET_IMSI = 11;
286     int RIL_REQUEST_HANGUP = 12;
287     int RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND = 13;
288     int RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND = 14;
289     int RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE = 15;
290     int RIL_REQUEST_CONFERENCE = 16;
291     int RIL_REQUEST_UDUB = 17;
292     int RIL_REQUEST_LAST_CALL_FAIL_CAUSE = 18;
293     int RIL_REQUEST_SIGNAL_STRENGTH = 19;
294     int RIL_REQUEST_VOICE_REGISTRATION_STATE = 20;
295     int RIL_REQUEST_DATA_REGISTRATION_STATE = 21;
296     int RIL_REQUEST_OPERATOR = 22;
297     int RIL_REQUEST_RADIO_POWER = 23;
298     int RIL_REQUEST_DTMF = 24;
299     int RIL_REQUEST_SEND_SMS = 25;
300     int RIL_REQUEST_SEND_SMS_EXPECT_MORE = 26;
301     int RIL_REQUEST_SETUP_DATA_CALL = 27;
302     int RIL_REQUEST_SIM_IO = 28;
303     int RIL_REQUEST_SEND_USSD = 29;
304     int RIL_REQUEST_CANCEL_USSD = 30;
305     int RIL_REQUEST_GET_CLIR = 31;
306     int RIL_REQUEST_SET_CLIR = 32;
307     int RIL_REQUEST_QUERY_CALL_FORWARD_STATUS = 33;
308     int RIL_REQUEST_SET_CALL_FORWARD = 34;
309     int RIL_REQUEST_QUERY_CALL_WAITING = 35;
310     int RIL_REQUEST_SET_CALL_WAITING = 36;
311     int RIL_REQUEST_SMS_ACKNOWLEDGE = 37;
312     int RIL_REQUEST_GET_IMEI = 38;
313     int RIL_REQUEST_GET_IMEISV = 39;
314     int RIL_REQUEST_ANSWER = 40;
315     int RIL_REQUEST_DEACTIVATE_DATA_CALL = 41;
316     int RIL_REQUEST_QUERY_FACILITY_LOCK = 42;
317     int RIL_REQUEST_SET_FACILITY_LOCK = 43;
318     int RIL_REQUEST_CHANGE_BARRING_PASSWORD = 44;
319     int RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE = 45;
320     int RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC = 46;
321     int RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL = 47;
322     int RIL_REQUEST_QUERY_AVAILABLE_NETWORKS = 48;
323     int RIL_REQUEST_DTMF_START = 49;
324     int RIL_REQUEST_DTMF_STOP = 50;
325     int RIL_REQUEST_BASEBAND_VERSION = 51;
326     int RIL_REQUEST_SEPARATE_CONNECTION = 52;
327     int RIL_REQUEST_SET_MUTE = 53;
328     int RIL_REQUEST_GET_MUTE = 54;
329     int RIL_REQUEST_QUERY_CLIP = 55;
330     int RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE = 56;
331     int RIL_REQUEST_DATA_CALL_LIST = 57;
332     int RIL_REQUEST_RESET_RADIO = 58;
333     int RIL_REQUEST_OEM_HOOK_RAW = 59;
334     int RIL_REQUEST_OEM_HOOK_STRINGS = 60;
335     int RIL_REQUEST_SCREEN_STATE = 61;
336     int RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION = 62;
337     int RIL_REQUEST_WRITE_SMS_TO_SIM = 63;
338     int RIL_REQUEST_DELETE_SMS_ON_SIM = 64;
339     int RIL_REQUEST_SET_BAND_MODE = 65;
340     int RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE = 66;
341     int RIL_REQUEST_STK_GET_PROFILE = 67;
342     int RIL_REQUEST_STK_SET_PROFILE = 68;
343     int RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND = 69;
344     int RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE = 70;
345     int RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM = 71;
346     int RIL_REQUEST_EXPLICIT_CALL_TRANSFER = 72;
347     int RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE = 73;
348     int RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE = 74;
349     int RIL_REQUEST_GET_NEIGHBORING_CELL_IDS = 75;
350     int RIL_REQUEST_SET_LOCATION_UPDATES = 76;
351     int RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE = 77;
352     int RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE = 78;
353     int RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE = 79;
354     int RIL_REQUEST_SET_TTY_MODE = 80;
355     int RIL_REQUEST_QUERY_TTY_MODE = 81;
356     int RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE = 82;
357     int RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE = 83;
358     int RIL_REQUEST_CDMA_FLASH = 84;
359     int RIL_REQUEST_CDMA_BURST_DTMF = 85;
360     int RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY = 86;
361     int RIL_REQUEST_CDMA_SEND_SMS = 87;
362     int RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE = 88;
363     int RIL_REQUEST_GSM_GET_BROADCAST_CONFIG = 89;
364     int RIL_REQUEST_GSM_SET_BROADCAST_CONFIG = 90;
365     int RIL_REQUEST_GSM_BROADCAST_ACTIVATION = 91;
366     int RIL_REQUEST_CDMA_GET_BROADCAST_CONFIG = 92;
367     int RIL_REQUEST_CDMA_SET_BROADCAST_CONFIG = 93;
368     int RIL_REQUEST_CDMA_BROADCAST_ACTIVATION = 94;
369     int RIL_REQUEST_CDMA_SUBSCRIPTION = 95;
370     int RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM = 96;
371     int RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM = 97;
372     int RIL_REQUEST_DEVICE_IDENTITY = 98;
373     int RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE = 99;
374     int RIL_REQUEST_GET_SMSC_ADDRESS = 100;
375     int RIL_REQUEST_SET_SMSC_ADDRESS = 101;
376     int RIL_REQUEST_REPORT_SMS_MEMORY_STATUS = 102;
377     int RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING = 103;
378     int RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE = 104;
379     int RIL_REQUEST_ISIM_AUTHENTICATION = 105;
380     int RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU = 106;
381     int RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS = 107;
382     int RIL_REQUEST_VOICE_RADIO_TECH = 108;
383     int RIL_REQUEST_GET_CELL_INFO_LIST = 109;
384     int RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE = 110;
385     int RIL_REQUEST_SET_INITIAL_ATTACH_APN = 111;
386     int RIL_REQUEST_IMS_REGISTRATION_STATE = 112;
387     int RIL_REQUEST_IMS_SEND_SMS = 113;
388     int RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC = 114;
389     int RIL_REQUEST_SIM_OPEN_CHANNEL = 115;
390     int RIL_REQUEST_SIM_CLOSE_CHANNEL = 116;
391     int RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL = 117;
392     int RIL_REQUEST_NV_READ_ITEM = 118;
393     int RIL_REQUEST_NV_WRITE_ITEM = 119;
394     int RIL_REQUEST_NV_WRITE_CDMA_PRL = 120;
395     int RIL_REQUEST_NV_RESET_CONFIG = 121;
396     int RIL_REQUEST_SET_UICC_SUBSCRIPTION = 122;
397     int RIL_REQUEST_ALLOW_DATA = 123;
398     int RIL_REQUEST_GET_HARDWARE_CONFIG = 124;
399     int RIL_REQUEST_SIM_AUTHENTICATION = 125;
400     int RIL_REQUEST_GET_DC_RT_INFO = 126;
401     int RIL_REQUEST_SET_DC_RT_INFO_RATE = 127;
402     int RIL_REQUEST_SET_DATA_PROFILE = 128;
403     int RIL_REQUEST_SHUTDOWN = 129;
404     int RIL_REQUEST_GET_RADIO_CAPABILITY = 130;
405     int RIL_REQUEST_SET_RADIO_CAPABILITY = 131;
406     int RIL_REQUEST_START_LCE = 132;
407     int RIL_REQUEST_STOP_LCE = 133;
408     int RIL_REQUEST_PULL_LCEDATA = 134;
409     int RIL_REQUEST_GET_ACTIVITY_INFO = 135;
410     int RIL_REQUEST_SET_ALLOWED_CARRIERS = 136;
411     int RIL_REQUEST_GET_ALLOWED_CARRIERS = 137;
412     int RIL_REQUEST_SEND_DEVICE_STATE = 138;
413     int RIL_REQUEST_SET_UNSOLICITED_RESPONSE_FILTER = 139;
414     int RIL_REQUEST_SET_SIM_CARD_POWER = 140;
415     int RIL_REQUEST_SET_CARRIER_INFO_IMSI_ENCRYPTION = 141;
416     int RIL_REQUEST_START_NETWORK_SCAN = 142;
417     int RIL_REQUEST_STOP_NETWORK_SCAN = 143;
418     int RIL_REQUEST_GET_SLOT_STATUS = 144;
419     int RIL_REQUEST_SET_LOGICAL_TO_PHYSICAL_SLOT_MAPPING = 145;
420     int RIL_REQUEST_START_KEEPALIVE = 146;
421     int RIL_REQUEST_STOP_KEEPALIVE = 147;
422     int RIL_REQUEST_SET_SIGNAL_STRENGTH_REPORTING_CRITERIA = 148;
423     int RIL_REQUEST_SET_LINK_CAPACITY_REPORTING_CRITERIA = 149;
424 
425     int RIL_RESPONSE_ACKNOWLEDGEMENT = 800;
426 
427     int RIL_UNSOL_RESPONSE_BASE = 1000;
428     int RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED = 1000;
429     int RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED = 1001;
430     int RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED = 1002;
431     int RIL_UNSOL_RESPONSE_NEW_SMS = 1003;
432     int RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT = 1004;
433     int RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM = 1005;
434     int RIL_UNSOL_ON_USSD = 1006;
435     int RIL_UNSOL_ON_USSD_REQUEST = 1007;
436     int RIL_UNSOL_NITZ_TIME_RECEIVED = 1008;
437     int RIL_UNSOL_SIGNAL_STRENGTH = 1009;
438     int RIL_UNSOL_DATA_CALL_LIST_CHANGED = 1010;
439     int RIL_UNSOL_SUPP_SVC_NOTIFICATION = 1011;
440     int RIL_UNSOL_STK_SESSION_END = 1012;
441     int RIL_UNSOL_STK_PROACTIVE_COMMAND = 1013;
442     int RIL_UNSOL_STK_EVENT_NOTIFY = 1014;
443     int RIL_UNSOL_STK_CALL_SETUP = 1015;
444     int RIL_UNSOL_SIM_SMS_STORAGE_FULL = 1016;
445     int RIL_UNSOL_SIM_REFRESH = 1017;
446     int RIL_UNSOL_CALL_RING = 1018;
447     int RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED = 1019;
448     int RIL_UNSOL_RESPONSE_CDMA_NEW_SMS = 1020;
449     int RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS = 1021;
450     int RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL = 1022;
451     int RIL_UNSOL_RESTRICTED_STATE_CHANGED = 1023;
452     int RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE = 1024;
453     int RIL_UNSOL_CDMA_CALL_WAITING = 1025;
454     int RIL_UNSOL_CDMA_OTA_PROVISION_STATUS = 1026;
455     int RIL_UNSOL_CDMA_INFO_REC = 1027;
456     int RIL_UNSOL_OEM_HOOK_RAW = 1028;
457     int RIL_UNSOL_RINGBACK_TONE = 1029;
458     int RIL_UNSOL_RESEND_INCALL_MUTE = 1030;
459     int RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED = 1031;
460     int RIL_UNSOl_CDMA_PRL_CHANGED = 1032;
461     int RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE = 1033;
462     int RIL_UNSOL_RIL_CONNECTED = 1034;
463     int RIL_UNSOL_VOICE_RADIO_TECH_CHANGED = 1035;
464     int RIL_UNSOL_CELL_INFO_LIST = 1036;
465     int RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED = 1037;
466     int RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED = 1038;
467     int RIL_UNSOL_SRVCC_STATE_NOTIFY = 1039;
468     int RIL_UNSOL_HARDWARE_CONFIG_CHANGED = 1040;
469     int RIL_UNSOL_DC_RT_INFO_CHANGED = 1041;
470     int RIL_UNSOL_RADIO_CAPABILITY = 1042;
471     int RIL_UNSOL_ON_SS = 1043;
472     int RIL_UNSOL_STK_CC_ALPHA_NOTIFY = 1044;
473     int RIL_UNSOL_LCEDATA_RECV = 1045;
474     int RIL_UNSOL_PCO_DATA = 1046;
475     int RIL_UNSOL_MODEM_RESTART = 1047;
476     int RIL_UNSOL_CARRIER_INFO_IMSI_ENCRYPTION = 1048;
477     int RIL_UNSOL_NETWORK_SCAN_RESULT = 1049;
478     int RIL_UNSOL_ICC_SLOT_STATUS = 1050;
479     int RIL_UNSOL_KEEPALIVE_STATUS = 1051;
480     int RIL_UNSOL_PHYSICAL_CHANNEL_CONFIG = 1052;
481 }
482