blob: b32daa5a7609751d2f9dace4cbeb108f928c47a8 [file] [log] [blame]
Tomasz Wasilczyk21348172017-04-20 14:02:42 -07001/**
2 * Copyright (C) 2017 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;
18
Tomasz Wasilczyk436128f2018-01-08 16:46:09 -080019import android.hardware.radio.ProgramList;
Tomasz Wasilczyk3b4465e2018-01-14 21:47:44 -080020import android.hardware.radio.ProgramSelector;
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070021import android.hardware.radio.RadioManager;
Tomasz Wasilczykc9a1ac72017-05-17 21:29:28 -070022import android.hardware.radio.RadioMetadata;
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070023
24/** {@hide} */
25oneway interface ITunerCallback {
26 void onError(int status);
Tomasz Wasilczyk3b4465e2018-01-14 21:47:44 -080027 void onTuneFailed(int result, in ProgramSelector selector);
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070028 void onConfigurationChanged(in RadioManager.BandConfig config);
Tomasz Wasilczyk162d14a2017-08-03 18:10:45 -070029 void onCurrentProgramInfoChanged(in RadioManager.ProgramInfo info);
Tomasz Wasilczykc9a1ac72017-05-17 21:29:28 -070030 void onTrafficAnnouncement(boolean active);
31 void onEmergencyAnnouncement(boolean active);
32 void onAntennaState(boolean connected);
33 void onBackgroundScanAvailabilityChange(boolean isAvailable);
34 void onBackgroundScanComplete();
35 void onProgramListChanged();
Tomasz Wasilczyk436128f2018-01-08 16:46:09 -080036 void onProgramListUpdated(in ProgramList.Chunk chunk);
Tomasz Wasilczyk8e932c62017-11-17 16:18:40 +000037
38 /**
39 * @param parameters Vendor-specific key-value pairs, must be Map<String, String>
40 */
41 void onParametersUpdated(in Map parameters);
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070042}