• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2023 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 #include <libminradio/response.h>
18 
19 namespace android::hardware::radio::minimal {
20 
21 namespace aidl = ::aidl::android::hardware::radio;
22 
noError(int32_t serial)23 aidl::RadioResponseInfo noError(int32_t serial) {
24     return {
25             .type = aidl::RadioResponseType::SOLICITED,
26             .serial = serial,
27             .error = aidl::RadioError::NONE,
28     };
29 }
30 
notSupported(int32_t serial)31 aidl::RadioResponseInfo notSupported(int32_t serial) {
32     return {
33             .type = aidl::RadioResponseType::SOLICITED,
34             .serial = serial,
35             .error = aidl::RadioError::REQUEST_NOT_SUPPORTED,
36     };
37 }
38 
errorResponse(int32_t serial,aidl::RadioError error)39 aidl::RadioResponseInfo errorResponse(int32_t serial, aidl::RadioError error) {
40     return {
41             .type = aidl::RadioResponseType::SOLICITED,
42             .serial = serial,
43             .error = error,
44     };
45 }
46 
47 }  // namespace android::hardware::radio::minimal
48