Loading media/java/android/media/tv/extension/scan/IFavoriteNetwork.aidl 0 → 100644 +36 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.media.tv.extension.scan.IFavoriteNetworkListener; import android.os.Bundle; /** * Country: Norway * Broadcast Type: BROADCAST_TYPE_DVB_T * (Operator: RiksTV) * * @hide */ interface IFavoriteNetwork { // Get the favorite network information,If there are no conflicts, the array of Bundle is empty. Bundle[] getFavoriteNetworks(); // Select and set one of two or more favorite networks detected by the service scan. int setFavoriteNetwork(in Bundle favoriteNetworkSettings); // Set the listener to be invoked when two or more favorite networks are detected. int setListener(in IFavoriteNetworkListener listener); } media/java/android/media/tv/extension/scan/IFavoriteNetworkListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.os.Bundle; /** * @hide */ oneway interface IFavoriteNetworkListener { void onDetectFavoriteNetwork(in Bundle detectFavoriteNetworks); } media/java/android/media/tv/extension/scan/IHDPlusInfo.aidl 0 → 100644 +25 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; /** * @hide */ interface IHDPlusInfo { // Specifying a HDPlusInfo and start a network scan. int setHDPlusInfo(String isBlindScanContinue, String isHDMode); } media/java/android/media/tv/extension/scan/ILcnConflict.aidl 0 → 100644 +35 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.media.tv.extension.scan.ILcnConflictListener; import android.os.Bundle; /** * Country: Italy, France * Broadcast Type: BROADCAST_TYPE_DVB_T * * @hide */ interface ILcnConflict { // Get the LCN conflict groups information, If there are no conflicts, the array of Bundle is empty. Bundle[] getLcnConflictGroups(); // Resolve LCN conflicts caused by service scans. int resolveLcnConflict(in Bundle[] lcnConflictSettings); // Set the listener to be invoked the LCN conflict event. int setListener(in ILcnConflictListener listener); } media/java/android/media/tv/extension/scan/ILcnConflictListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.os.Bundle; /** * @hide */ oneway interface ILcnConflictListener { void onDetectLcnConflict(in Bundle detectLcnConflicts); } Loading
media/java/android/media/tv/extension/scan/IFavoriteNetwork.aidl 0 → 100644 +36 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.media.tv.extension.scan.IFavoriteNetworkListener; import android.os.Bundle; /** * Country: Norway * Broadcast Type: BROADCAST_TYPE_DVB_T * (Operator: RiksTV) * * @hide */ interface IFavoriteNetwork { // Get the favorite network information,If there are no conflicts, the array of Bundle is empty. Bundle[] getFavoriteNetworks(); // Select and set one of two or more favorite networks detected by the service scan. int setFavoriteNetwork(in Bundle favoriteNetworkSettings); // Set the listener to be invoked when two or more favorite networks are detected. int setListener(in IFavoriteNetworkListener listener); }
media/java/android/media/tv/extension/scan/IFavoriteNetworkListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.os.Bundle; /** * @hide */ oneway interface IFavoriteNetworkListener { void onDetectFavoriteNetwork(in Bundle detectFavoriteNetworks); }
media/java/android/media/tv/extension/scan/IHDPlusInfo.aidl 0 → 100644 +25 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; /** * @hide */ interface IHDPlusInfo { // Specifying a HDPlusInfo and start a network scan. int setHDPlusInfo(String isBlindScanContinue, String isHDMode); }
media/java/android/media/tv/extension/scan/ILcnConflict.aidl 0 → 100644 +35 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.media.tv.extension.scan.ILcnConflictListener; import android.os.Bundle; /** * Country: Italy, France * Broadcast Type: BROADCAST_TYPE_DVB_T * * @hide */ interface ILcnConflict { // Get the LCN conflict groups information, If there are no conflicts, the array of Bundle is empty. Bundle[] getLcnConflictGroups(); // Resolve LCN conflicts caused by service scans. int resolveLcnConflict(in Bundle[] lcnConflictSettings); // Set the listener to be invoked the LCN conflict event. int setListener(in ILcnConflictListener listener); }
media/java/android/media/tv/extension/scan/ILcnConflictListener.aidl 0 → 100644 +26 −0 Original line number Diff line number Diff line /* * Copyright (C) 2024 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.media.tv.extension.scan; import android.os.Bundle; /** * @hide */ oneway interface ILcnConflictListener { void onDetectLcnConflict(in Bundle detectLcnConflicts); }