2020-07-23 00:53:58 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package android.hardware.radio@1.6;
|
|
|
|
|
2020-07-24 09:46:58 +02:00
|
|
|
import @1.0::RadioResponseInfo;
|
2020-07-23 00:53:58 +02:00
|
|
|
import @1.5::IRadioResponse;
|
2020-07-24 09:46:58 +02:00
|
|
|
import @1.6::SetupDataCallResult;
|
2020-07-23 00:53:58 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface declaring response functions to solicited radio requests.
|
|
|
|
*/
|
|
|
|
interface IRadioResponse extends @1.5::IRadioResponse {
|
2020-07-24 09:46:58 +02:00
|
|
|
/**
|
|
|
|
* @param info Response info struct containing response type, serial no. and error
|
|
|
|
* @param dcResponse SetupDataCallResult defined in types.hal
|
|
|
|
*
|
|
|
|
* Valid errors returned:
|
|
|
|
* RadioError:NONE must be returned on both success and failure of setup with the
|
|
|
|
* DataCallResponse.status containing the actual status
|
|
|
|
* For all other errors the DataCallResponse is ignored.
|
|
|
|
* RadioError:RADIO_NOT_AVAILABLE
|
|
|
|
* RadioError:OP_NOT_ALLOWED_BEFORE_REG_TO_NW
|
|
|
|
* RadioError:OP_NOT_ALLOWED_DURING_VOICE_CALL
|
|
|
|
* RadioError:INVALID_ARGUMENTS
|
|
|
|
* RadioError:INTERNAL_ERR
|
|
|
|
* RadioError:NO_RESOURCES if the vendor is unable handle due to resources
|
|
|
|
* are full.
|
|
|
|
* RadioError:SIM_ABSENT
|
|
|
|
*/
|
|
|
|
oneway setupDataCallResponse_1_6(RadioResponseInfo info, SetupDataCallResult dcResponse);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param info Response info struct containing response type, serial no. and error
|
|
|
|
* @param dcResponse List of SetupDataCallResult as defined in types.hal
|
|
|
|
*
|
|
|
|
* Valid errors returned:
|
|
|
|
* RadioError:NONE
|
|
|
|
* RadioError:RADIO_NOT_AVAILABLE
|
|
|
|
* RadioError:INTERNAL_ERR
|
|
|
|
* RadioError:SIM_ABSENT
|
|
|
|
*/
|
|
|
|
oneway getDataCallListResponse_1_6(RadioResponseInfo info, vec<SetupDataCallResult> dcResponse);
|
2020-07-23 00:53:58 +02:00
|
|
|
};
|