blob: 54af30fcc35eb3b3571d0aec02d7713a6dc5e891 [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 Wasilczyk21348172017-04-20 14:02:42 -070020import android.hardware.radio.RadioManager;
Tomasz Wasilczykc9a1ac72017-05-17 21:29:28 -070021import android.hardware.radio.RadioMetadata;
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070022
23/** {@hide} */
24oneway interface ITunerCallback {
25 void onError(int status);
26 void onConfigurationChanged(in RadioManager.BandConfig config);
Tomasz Wasilczyk162d14a2017-08-03 18:10:45 -070027 void onCurrentProgramInfoChanged(in RadioManager.ProgramInfo info);
Tomasz Wasilczykc9a1ac72017-05-17 21:29:28 -070028 void onTrafficAnnouncement(boolean active);
29 void onEmergencyAnnouncement(boolean active);
30 void onAntennaState(boolean connected);
31 void onBackgroundScanAvailabilityChange(boolean isAvailable);
32 void onBackgroundScanComplete();
33 void onProgramListChanged();
Tomasz Wasilczyk436128f2018-01-08 16:46:09 -080034 void onProgramListUpdated(in ProgramList.Chunk chunk);
Tomasz Wasilczyk8e932c62017-11-17 16:18:40 +000035
36 /**
37 * @param parameters Vendor-specific key-value pairs, must be Map<String, String>
38 */
39 void onParametersUpdated(in Map parameters);
Tomasz Wasilczyk21348172017-04-20 14:02:42 -070040}