ril_unsol_commands.h revision f4c4d36c410a3501d282dd7de1c7c3350734f27e
1/* //device/libs/telephony/ril_unsol_commands.h
2**
3** Copyright 2006, The Android Open Source Project
4**
5** Licensed under the Apache License, Version 2.0 (the "License");
6** you may not use this file except in compliance with the License.
7** You may obtain a copy of the License at
8**
9**     http://www.apache.org/licenses/LICENSE-2.0
10**
11** Unless required by applicable law or agreed to in writing, software
12** distributed under the License is distributed on an "AS IS" BASIS,
13** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14** See the License for the specific language governing permissions and
15** limitations under the License.
16*/
17    {RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED, responseVoid, WAKE_PARTIAL},
18    {RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED, responseVoid, WAKE_PARTIAL},
19    {RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED, responseVoid, WAKE_PARTIAL},
20    {RIL_UNSOL_RESPONSE_NEW_SMS, responseString, WAKE_PARTIAL},
21    {RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT, responseString, WAKE_PARTIAL},
22    {RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM, responseInts, WAKE_PARTIAL},
23    {RIL_UNSOL_ON_USSD, responseStrings, WAKE_PARTIAL},
24    {RIL_UNSOL_ON_USSD_REQUEST, responseVoid, DONT_WAKE},
25    {RIL_UNSOL_NITZ_TIME_RECEIVED, responseString, WAKE_PARTIAL},
26    {RIL_UNSOL_SIGNAL_STRENGTH, responseInts, DONT_WAKE},
27    {RIL_UNSOL_DATA_CALL_LIST_CHANGED, responseDataCallList, WAKE_PARTIAL},
28    {RIL_UNSOL_SUPP_SVC_NOTIFICATION, responseSsn, WAKE_PARTIAL},
29    {RIL_UNSOL_STK_SESSION_END, responseVoid, WAKE_PARTIAL},
30    {RIL_UNSOL_STK_PROACTIVE_COMMAND, responseString, WAKE_PARTIAL},
31    {RIL_UNSOL_STK_EVENT_NOTIFY, responseString, WAKE_PARTIAL},
32    {RIL_UNSOL_STK_CALL_SETUP, responseInts, WAKE_PARTIAL},
33    {RIL_UNSOL_SIM_SMS_STORAGE_FULL, responseVoid, WAKE_PARTIAL},
34    {RIL_UNSOL_SIM_REFRESH, responseInts, WAKE_PARTIAL},
35    {RIL_UNSOL_CALL_RING, responseVoid, WAKE_PARTIAL},
36
37    /* import unsolicited CDMA notifications, need change response type
38     * of CDMA_NEW_SMS when do real CDMA merge
39     */
40    {RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED, responseVoid, WAKE_PARTIAL},
41    {RIL_UNSOL_RESPONSE_CDMA_NEW_SMS, responseVoid, WAKE_PARTIAL},
42    {RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS, responseString, WAKE_PARTIAL},
43    {RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL, responseVoid, WAKE_PARTIAL},
44    /* end of import unsolicited CDMA notifications */
45    {RIL_UNSOL_RESTRICTED_STATE_CHANGED, responseInts, WAKE_PARTIAL}
46
47