1 /*
2  * Copyright (C) 2021 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.telecom;
18 
19 import android.telecom.BluetoothCallQualityReport;
20 import android.telecom.CallAudioState;
21 import android.telecom.DisconnectCause;
22 import android.telecom.ParcelableCall;
23 import android.telephony.CallQuality;
24 import com.android.internal.telecom.ICallDiagnosticServiceAdapter;
25 
26 /**
27  * Internal remote interface for a call diagnostic service.
28  * @see android.telecom.CallDiagnosticService
29  * @hide
30  */
31 oneway interface ICallDiagnosticService {
setAdapter(in ICallDiagnosticServiceAdapter adapter)32     void setAdapter(in ICallDiagnosticServiceAdapter adapter);
initializeDiagnosticCall(in ParcelableCall call)33     void initializeDiagnosticCall(in ParcelableCall call);
updateCall(in ParcelableCall call)34     void updateCall(in ParcelableCall call);
updateCallAudioState(in CallAudioState callAudioState)35     void updateCallAudioState(in CallAudioState callAudioState);
removeDiagnosticCall(in String callId)36     void removeDiagnosticCall(in String callId);
receiveDeviceToDeviceMessage(in String callId, int message, int value)37     void receiveDeviceToDeviceMessage(in String callId, int message, int value);
callQualityChanged(in String callId, in CallQuality callQuality)38     void callQualityChanged(in String callId, in CallQuality callQuality);
receiveBluetoothCallQualityReport(in BluetoothCallQualityReport qualityReport)39     void receiveBluetoothCallQualityReport(in BluetoothCallQualityReport qualityReport);
notifyCallDisconnected(in String callId, in DisconnectCause disconnectCause)40     void notifyCallDisconnected(in String callId, in DisconnectCause disconnectCause);
41 }
42