blob: f2c06b7af1853064cc8eedcd8c4a2e1baf9f7b93 [file] [log] [blame]
Jayachandran C262b6062020-07-22 15:53:58 -07001/*
2 * Copyright (C) 2020 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
17package android.hardware.radio@1.6;
18
allenwtsu1c3dcd32020-09-25 17:58:01 +080019import @1.0::SendSmsResult;
Yomna Nassere8bfa9c2020-11-17 22:00:55 +000020import @1.4::RadioAccessFamily;
Jayachandran C262b6062020-07-22 15:53:58 -070021import @1.5::IRadioResponse;
Sarah Chine52a3942021-02-12 11:55:15 -080022import @1.5::RadioAccessSpecifier;
Shinsuke Ishiokaede1e952018-08-17 18:02:29 +090023import @1.6::Call;
Mingming Caida0d9832020-11-05 17:56:57 -080024import @1.6::CellInfo;
Hui Wangfb202502020-11-13 04:30:18 +000025import @1.6::RegStateResult;
Mingming Caida0d9832020-11-05 17:56:57 -080026import @1.6::RadioResponseInfo;
Jayachandran C9bc276b2020-07-24 00:46:58 -070027import @1.6::SetupDataCallResult;
Mingming Cai20a2f422020-12-03 12:18:48 -080028import @1.6::SignalStrength;
Hongbo Zengb1ea8db2021-02-02 23:01:12 +080029import @1.6::SlicingConfig;
Mengjun Leng48966f02021-03-16 10:09:20 +080030import @1.6::PhonebookCapacity;
Jayachandran C262b6062020-07-22 15:53:58 -070031
32/**
33 * Interface declaring response functions to solicited radio requests.
34 */
35interface IRadioResponse extends @1.5::IRadioResponse {
Jayachandran C9bc276b2020-07-24 00:46:58 -070036 /**
37 * @param info Response info struct containing response type, serial no. and error
Tim Line29df602020-09-26 22:43:24 +080038 *
39 * Valid errors returned:
40 * RadioError:NONE
41 * RadioError:INTERNAL_ERR
42 * RadioError:INVALID_ARGUMENTS
43 * RadioError:RF_HARDWARE_ISSUE
44 * RadioError:NO_RF_CALIBRATION_INFO
45 */
46 oneway setRadioPowerResponse_1_6(RadioResponseInfo info);
47
48 /**
49 * @param info Response info struct containing response type, serial no. and error
Jayachandran C9bc276b2020-07-24 00:46:58 -070050 * @param dcResponse SetupDataCallResult defined in types.hal
51 *
52 * Valid errors returned:
53 * RadioError:NONE must be returned on both success and failure of setup with the
54 * DataCallResponse.status containing the actual status
55 * For all other errors the DataCallResponse is ignored.
56 * RadioError:RADIO_NOT_AVAILABLE
57 * RadioError:OP_NOT_ALLOWED_BEFORE_REG_TO_NW
58 * RadioError:OP_NOT_ALLOWED_DURING_VOICE_CALL
59 * RadioError:INVALID_ARGUMENTS
60 * RadioError:INTERNAL_ERR
61 * RadioError:NO_RESOURCES if the vendor is unable handle due to resources
62 * are full.
63 * RadioError:SIM_ABSENT
64 */
65 oneway setupDataCallResponse_1_6(RadioResponseInfo info, SetupDataCallResult dcResponse);
66
67 /**
68 * @param info Response info struct containing response type, serial no. and error
69 * @param dcResponse List of SetupDataCallResult as defined in types.hal
70 *
71 * Valid errors returned:
72 * RadioError:NONE
73 * RadioError:RADIO_NOT_AVAILABLE
74 * RadioError:INTERNAL_ERR
75 * RadioError:SIM_ABSENT
76 */
77 oneway getDataCallListResponse_1_6(RadioResponseInfo info, vec<SetupDataCallResult> dcResponse);
allenwtsu1c3dcd32020-09-25 17:58:01 +080078
79 /**
80 * @param info Response info struct containing response type, serial no. and error
81 * @param sms Response to sms sent as defined by SendSmsResult in types.hal
82 *
83 * Valid errors returned:
84 * RadioError:NONE
85 * RadioError:RADIO_NOT_AVAILABLE
86 * RadioError:SMS_SEND_FAIL_RETRY
87 * RadioError:NETWORK_REJECT
88 * RadioError:INVALID_STATE
89 * RadioError:INVALID_ARGUMENTS
90 * RadioError:NO_MEMORY
91 * RadioError:REQUEST_RATE_LIMITED
92 * RadioError:INVALID_SMS_FORMAT
93 * RadioError:SYSTEM_ERR
94 * RadioError:ENCODING_ERR
95 * RadioError:INVALID_SMSC_ADDRESS
96 * RadioError:MODEM_ERR
97 * RadioError:NETWORK_ERR
98 * RadioError:INTERNAL_ERR
99 * RadioError:REQUEST_NOT_SUPPORTED
100 * RadioError:INVALID_MODEM_STATE
101 * RadioError:NETWORK_NOT_READY
102 * RadioError:OPERATION_NOT_ALLOWED
103 * RadioError:NO_RESOURCES
104 * RadioError:CANCELLED
105 * RadioError:SIM_ABSENT
106 * RadioError:ACCESS_BARRED
107 * RadioError:BLOCKED_DUE_TO_CALL
108 */
109 oneway sendSmsResponse_1_6(RadioResponseInfo info, SendSmsResult sms);
110
111 /**
112 * @param info Response info struct containing response type, serial no. and error
113 * @param sms Response to sms sent as defined by SendSmsResult in types.hal
114 *
115 * Valid errors returned:
116 * RadioError:NONE
117 * RadioError:RADIO_NOT_AVAILABLE
118 * RadioError:SMS_SEND_FAIL_RETRY
119 * RadioError:NETWORK_REJECT
120 * RadioError:INVALID_STATE
121 * RadioError:INVALID_ARGUMENTS
122 * RadioError:NO_MEMORY
123 * RadioError:REQUEST_RATE_LIMITED
124 * RadioError:INVALID_SMS_FORMAT
125 * RadioError:SYSTEM_ERR
126 * RadioError:FDN_CHECK_FAILURE
127 * RadioError:ENCODING_ERR
128 * RadioError:INVALID_SMSC_ADDRESS
129 * RadioError:MODEM_ERR
130 * RadioError:NETWORK_ERR
131 * RadioError:INTERNAL_ERR
132 * RadioError:REQUEST_NOT_SUPPORTED
133 * RadioError:INVALID_MODEM_STATE
134 * RadioError:NETWORK_NOT_READY
135 * RadioError:OPERATION_NOT_ALLOWED
136 * RadioError:NO_RESOURCES
137 * RadioError:CANCELLED
138 * RadioError:SIM_ABSENT
139 * RadioError:ACCESS_BARRED
140 * RadioError:BLOCKED_DUE_TO_CALL
141 */
142 oneway sendSMSExpectMoreResponse_1_6(RadioResponseInfo info, SendSmsResult sms);
143
144 /**
145 * @param info Response info struct containing response type, serial no. and error
146 * @param sms Sms result struct as defined by SendSmsResult in types.hal
147 *
148 * Valid errors returned:
149 * RadioError:NONE
150 * RadioError:RADIO_NOT_AVAILABLE
151 * RadioError:INVALID_ARGUMENTS
152 * RadioError:SMS_SEND_FAIL_RETRY
153 * RadioError:NETWORK_REJECT
154 * RadioError:INVALID_STATE
155 * RadioError:NO_MEMORY
156 * RadioError:REQUEST_RATE_LIMITED
157 * RadioError:INVALID_SMS_FORMAT
158 * RadioError:SYSTEM_ERR
159 * RadioError:FDN_CHECK_FAILURE
160 * RadioError:MODEM_ERR
161 * RadioError:NETWORK_ERR
162 * RadioError:ENCODING_ERR
163 * RadioError:INVALID_SMSC_ADDRESS
164 * RadioError:INTERNAL_ERR
165 * RadioError:SYSTEM_ERR
166 * RadioError:REQUEST_NOT_SUPPORTED
167 * RadioError:OPERATION_NOT_ALLOWED
168 * RadioError:ENCODING_ERR
169 * RadioError:NO_RESOURCES
170 * RadioError:CANCELLED
171 * RadioError:SIM_ABSENT
172 * RadioError:SIMULTANEOUS_SMS_AND_CALL_NOT_ALLOWED
173 * RadioError:ACCESS_BARRED
174 * RadioError:BLOCKED_DUE_TO_CALL
175 */
176 oneway sendCdmaSmsResponse_1_6(RadioResponseInfo info, SendSmsResult sms);
177
178 /**
179 * @param info Response info struct containing response type, serial no. and error
180 * @param sms Response to sms sent as defined by SendSmsResult in types.hal
181 *
182 * Valid errors returned:
183 * RadioError:NONE
184 * RadioError:RADIO_NOT_AVAILABLE
185 * RadioError:SMS_SEND_FAIL_RETRY
186 * RadioError:NETWORK_REJECT
187 * RadioError:INVALID_STATE
188 * RadioError:INVALID_ARGUMENTS
189 * RadioError:NO_MEMORY
190 * RadioError:REQUEST_RATE_LIMITED
191 * RadioError:INVALID_SMS_FORMAT
192 * RadioError:SYSTEM_ERR
193 * RadioError:FDN_CHECK_FAILURE
194 * RadioError:ENCODING_ERR
195 * RadioError:INVALID_SMSC_ADDRESS
196 * RadioError:MODEM_ERR
197 * RadioError:NETWORK_ERR
198 * RadioError:INTERNAL_ERR
199 * RadioError:REQUEST_NOT_SUPPORTED
200 * RadioError:INVALID_MODEM_STATE
201 * RadioError:NETWORK_NOT_READY
202 * RadioError:OPERATION_NOT_ALLOWED
203 * RadioError:NO_RESOURCES
204 * RadioError:CANCELLED
205 * RadioError:SIM_ABSENT
206 * RadioError:SIMULTANEOUS_SMS_AND_CALL_NOT_ALLOWED
207 * RadioError:ACCESS_BARRED
208 * RadioError:BLOCKED_DUE_TO_CALL
209 */
210 oneway sendCdmaSmsExpectMoreResponse_1_6(RadioResponseInfo info, SendSmsResult sms);
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700211
212 /**
213 * @param info Response info struct containing response type, serial no. and error
214 *
215 * Valid errors returned:
216 * RadioError:NONE
217 * RadioError:RADIO_NOT_AVAILABLE
Jordan Liue4f5f022020-10-21 16:28:40 -0700218 * RadioError:INVALID_ARGUMENTS
219 * RadioError:SIM_ERR (indicates a timeout or other issue making the SIM unresponsive)
220 *
221 * Note that this differs from setSimCardPowerResponse_1_1 in that the response
222 * should only be sent once the request from setSimCardPower_1_6 is complete
223 * (the SIM has finished powering on or off).
224 */
225 oneway setSimCardPowerResponse_1_6(RadioResponseInfo info);
226
227 /**
228 * @param info Response info struct containing response type, serial no. and error
229 *
230 * Valid errors returned:
231 * RadioError:NONE
232 * RadioError:RADIO_NOT_AVAILABLE
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700233 * RadioError:INTERNAL_ERR
Sooraj Sasindran4b272a52021-03-11 16:50:00 -0800234 * RadioError:REQUEST_NOT_SUPPORTED
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700235 */
Sooraj Sasindrane9525fd2020-11-03 20:46:57 -0800236 oneway setNrDualConnectivityStateResponse(RadioResponseInfo info);
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700237
238 /**
239 * @param info Response info struct containing response type, serial no. and error
240 *
241 * @param isEnabled Indicates whether NR dual connectivity is enabled or not, True if enabled
242 * else false.
243 * Valid errors returned:
244 * RadioError:NONE
245 * RadioError:RADIO_NOT_AVAILABLE
246 * RadioError:INTERNAL_ERR
Sooraj Sasindran4b272a52021-03-11 16:50:00 -0800247 * RadioError:REQUEST_NOT_SUPPORTED
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700248 */
249 oneway isNrDualConnectivityEnabledResponse(RadioResponseInfo info, bool isEnabled);
Daniel Bright15cc34a2020-10-26 11:34:53 -0700250
251 /**
252 * @param info Response info struct containing response type, serial no. and error
Daniel Bright3c72fba2020-11-03 14:56:23 -0800253 * @param id The allocated id. On an error, this is set to 0.
Daniel Bright15cc34a2020-10-26 11:34:53 -0700254 *
255 * Valid errors returned:
256 * RadioError:NONE
257 * RadioError:RADIO_NOT_AVAILABLE
258 * RadioError:INTERNAL_ERR
259 * RadioError:NO_RESOURCES- Indicates that no pdu session ids are available
260 * RadioError:REQUEST_NOT_SUPPORTED
261 */
262 oneway allocatePduSessionIdResponse(RadioResponseInfo info, int32_t id);
263
264 /**
265 * @param info Response info struct containing response type, serial no. and error
266 *
267 * Valid errors returned:
268 * RadioError:NONE
269 * RadioError:RADIO_NOT_AVAILABLE
270 * RadioError:INTERNAL_ERR
271 * RadioError:NO_RESOURCES
272 * RadioError:REQUEST_NOT_SUPPORTED
273 */
274 oneway releasePduSessionIdResponse(RadioResponseInfo info);
275
276 /**
277 * @param info Response info struct containing response type, serial no. and error
278 *
279 * Valid errors returned:
280 * RadioError:NONE
281 * RadioError:RADIO_NOT_AVAILABLE
282 * RadioError:INTERNAL_ERR
283 * RadioError:NO_RESOURCES
284 * RadioError:REQUEST_NOT_SUPPORTED
285 * RadioError:INVALID_CALL_ID
286 */
Daniel Bright3c72fba2020-11-03 14:56:23 -0800287 oneway startHandoverResponse(RadioResponseInfo info);
Daniel Bright15cc34a2020-10-26 11:34:53 -0700288
289 /**
290 * @param info Response info struct containing response type, serial no. and error
291 * @param dcResponse Attributes of data call
292 *
293 * Valid errors returned:
294 * RadioError:NONE
295 * RadioError:RADIO_NOT_AVAILABLE
296 * RadioError:INTERNAL_ERR
297 * RadioError:NO_RESOURCES
298 * RadioError:REQUEST_NOT_SUPPORTED
299 * RadioError:INVALID_CALL_ID
300 */
301 oneway cancelHandoverResponse(RadioResponseInfo info);
Thiébaud Weksteen5ae16f32020-08-21 16:46:07 +0200302
303 /**
SongFerngWangf92b61c2021-01-26 03:08:48 +0800304 * Callback of IRadio.setAllowedNetworkTypesBitmap(int, bitfield<RadioAccessFamily>)
Thiébaud Weksteen5ae16f32020-08-21 16:46:07 +0200305 *
306 * Valid errors returned:
307 * RadioError:NONE
308 * RadioError:RADIO_NOT_AVAILABLE
309 * RadioError:OPERATION_NOT_ALLOWED
310 * RadioError:MODE_NOT_SUPPORTED
311 * RadioError:INTERNAL_ERR
312 * RadioError:INVALID_ARGUMENTS
313 * RadioError:MODEM_ERR
314 * RadioError:REQUEST_NOT_SUPPORTED
315 * RadioError:NO_RESOURCES
316 */
SongFerngWangf92b61c2021-01-26 03:08:48 +0800317 oneway setAllowedNetworkTypesBitmapResponse(RadioResponseInfo info);
Jack Nudelman5cd94142020-09-24 14:23:35 -0700318
319 /**
SongFerngWangf92b61c2021-01-26 03:08:48 +0800320 * Callback of IRadio.getAllowedNetworkTypesBitmap(int, bitfield<RadioAccessFamily>)
321 * @param info Response info struct containing response type, serial no. and error
322 * @param networkTypeBitmap a 32-bit bitmap of RadioAccessFamily.
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000323 *
324 * Valid errors returned:
325 * RadioError:NONE
326 * RadioError:RADIO_NOT_AVAILABLE
327 * RadioError:OPERATION_NOT_ALLOWED
328 * RadioError:MODE_NOT_SUPPORTED
329 * RadioError:INTERNAL_ERR
330 * RadioError:INVALID_ARGUMENTS
331 * RadioError:MODEM_ERR
332 * RadioError:REQUEST_NOT_SUPPORTED
333 * RadioError:NO_RESOURCES
334 */
SongFerngWangf92b61c2021-01-26 03:08:48 +0800335 oneway getAllowedNetworkTypesBitmapResponse(
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000336 RadioResponseInfo info, bitfield<RadioAccessFamily> networkTypeBitmap);
337
338 /**
Jack Nudelman5cd94142020-09-24 14:23:35 -0700339 * @param info Response info struct containing response type, serial no. and error
340 *
341 * Valid errors returned:
342 * RadioError:NONE
343 * RadioError:RADIO_NOT_AVAILABLE
344 * RadioError:MODEM_ERR
345 * RadioError:INVALID_ARGUMENTS
Jack Nudelmanace22722021-03-04 08:23:36 -0800346 * RadioError:REQUEST_NOT_SUPPORTED
Jack Nudelman5cd94142020-09-24 14:23:35 -0700347 */
348 oneway setDataThrottlingResponse(RadioResponseInfo info);
Sarah Chinf69abcf2020-11-18 13:40:15 -0800349
350 /**
351 * @param info Response info struct containing response type, serial no. and error
Sarah Chine52a3942021-02-12 11:55:15 -0800352 * @param specifiers List of RadioAccessSpecifiers that are scanned.
Sarah Chinf69abcf2020-11-18 13:40:15 -0800353 *
354 * Valid errors returned:
355 * RadioError:NONE
356 * RadioError:RADIO_NOT_AVAILABLE
357 * RadioError:INTERNAL_ERR
358 * RadioError:INVALID_ARGUMENTS
359 */
Sarah Chine52a3942021-02-12 11:55:15 -0800360 oneway getSystemSelectionChannelsResponse(
361 RadioResponseInfo info, vec<RadioAccessSpecifier> specifiers);
Hui Wangfb202502020-11-13 04:30:18 +0000362
363 /**
Mingming Caida0d9832020-11-05 17:56:57 -0800364 * This is identical to getCellInfoListResponse_1_5 but uses an updated version of CellInfo.
365 *
366 * @param info Response info struct containing response type, serial no. and error
367 * @param cellInfo List of current cell information known to radio
368 *
369 * Valid errors returned:
370 * RadioError:NONE
371 * RadioError:RADIO_NOT_AVAILABLE
372 * RadioError:INTERNAL_ERR
373 */
374 oneway getCellInfoListResponse_1_6(RadioResponseInfo info, vec<CellInfo> cellInfo);
375
376 /**
Mingming Cai20a2f422020-12-03 12:18:48 -0800377 * This is identical to getSignalStrengthResponse_1_4 but uses an updated version of
378 * SignalStrength.
379 *
380 * @param signalStrength Current signal strength
381 *
382 * Valid errors returned:
383 * RadioError:NONE
384 * RadioError:RADIO_NOT_AVAILABLE
385 * RadioError:INTERNAL_ERR
386 */
387 oneway getSignalStrengthResponse_1_6(RadioResponseInfo info, SignalStrength signalStrength);
388
389 /**
Hui Wangfb202502020-11-13 04:30:18 +0000390 * @param info Response info struct containing response type, serial no. and error
391 * @param voiceRegResponse Current Voice registration response as defined by RegStateResult
392 * in types.hal
393 *
394 * Valid errors returned:
395 * RadioError:NONE
396 * RadioError:RADIO_NOT_AVAILABLE
397 * RadioError:INTERNAL_ERR
398 */
399 oneway getVoiceRegistrationStateResponse_1_6(RadioResponseInfo info,
400 RegStateResult voiceRegResponse);
401
402 /**
403 * @param info Response info struct containing response type, serial no. and error
404 * @param dataRegResponse Current Data registration response as defined by RegStateResult in
405 * types.hal
406 *
407 * Valid errors returned:
408 * RadioError:NONE
409 * RadioError:RADIO_NOT_AVAILABLE
410 * RadioError:INTERNAL_ERR
411 * RadioError:NOT_PROVISIONED
412 */
413 oneway getDataRegistrationStateResponse_1_6(RadioResponseInfo info,
414 RegStateResult dataRegResponse);
Shinsuke Ishiokaede1e952018-08-17 18:02:29 +0900415
416 /**
417 * @param calls Current call list
418 * RadioError:NO_MEMORY
419 * RadioError:INTERNAL_ERR
420 * RadioError:SYSTEM_ERR
421 * RadioError:INVALID_ARGUMENTS
422 * RadioError:REQUEST_NOT_SUPPORTED
423 * RadioError:NO_RESOURCES
424 * RadioError:CANCELLED
425 */
426 oneway getCurrentCallsResponse_1_6(RadioResponseInfo info, vec<Call> calls);
Hongbo Zengb1ea8db2021-02-02 23:01:12 +0800427
428 /**
429 * @param info Response info struct containing response type, serial no. and error
430 * @param slicingConfig Current slicing configuration
431 *
432 * Valid errors returned:
433 * RadioError:NONE
434 * RadioError:RADIO_NOT_AVAILABLE
435 * RadioError:INTERNAL_ERR
436 * RadioError:MODEM_ERR
437 */
438 oneway getSlicingConfigResponse(RadioResponseInfo info,
439 SlicingConfig slicingConfig);
Mengjun Leng48966f02021-03-16 10:09:20 +0800440
441 /**
442 * @param info Response info struct containing response type, serial no. and error
443 * Valid errors returned:
444 * RadioError:NONE
445 * RadioError:RADIO_NOT_AVAILABLE
446 * RadioError:REQUEST_NOT_SUPPORTED
447 * RadioError:INVALID_ARGUMENTS
448 * RadioError:INVALID_SIM_STATE
449 * RadioError:MODEM_ERR
450 * RadioError:INTERNAL_ERR
451 * REQUEST_NOT_SUPPORTED may only be returned on devices that don't support this API,
452 * indicated by the HAL capability CAPABILITY_SIM_PHONEBOOK_IN_MODEM.
453 */
454 oneway getSimPhonebookRecordsResponse(RadioResponseInfo info);
455
456 /**
457 * @param info Response info struct containing response type, serial no. and error
458 * @param capacity Response capacity enum indicating response processing status
459 *
460 * Valid errors returned:
461 * RadioError:NONE
462 * RadioError:RADIO_NOT_AVAILABLE
463 * RadioError:REQUEST_NOT_SUPPORTED
464 * RadioError:INVALID_ARGUMENTS
465 * RadioError:INVALID_SIM_STATE
466 * RadioError:MODEM_ERR
467 * RadioError:INTERNAL_ERR
468 * REQUEST_NOT_SUPPORTED may only be returned on devices that don't support this API,
469 * indicated by the HAL capability CAPABILITY_SIM_PHONEBOOK_IN_MODEM.
470 */
471 oneway getSimPhonebookCapacityResponse(RadioResponseInfo info, PhonebookCapacity capacity);
472
473 /**
474 * @param info Response info struct containing response type, serial no. and error
475 * @param updatedRecordIndex The index of the updated or inserted record in the phonebook and
476 * the minimum value is 1
477 *
478 * Valid errors returned:
479 * RadioError:NONE
480 * RadioError:RADIO_NOT_AVAILABLE
481 * RadioError:REQUEST_NOT_SUPPORTED
482 * RadioError:INVALID_ARGUMENTS
483 * RadioError:INVALID_SIM_STATE
484 * RadioError:MODEM_ERR
485 * RadioError:INTERNAL_ERR
486 * RadioError:SIM_ERR
487 * RadioError:NO_SUCH_ENTRY
488 * RadioError:NO_RESOURCES
489 * REQUEST_NOT_SUPPORTED may only be returned on devices that don't support this API,
490 * indicated by the HAL capability CAPABILITY_SIM_PHONEBOOK_IN_MODEM.
491 */
492 oneway updateSimPhonebookRecordsResponse(RadioResponseInfo info, int32_t updatedRecordIndex);
Jayachandran C262b6062020-07-22 15:53:58 -0700493};