blob: 6de9c994c0927f50e62481492931df204fd1dd84 [file] [log] [blame]
/**
* Copyright (C) 2017 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 com.android.server.radio;
import android.hardware.radio.ITuner;
import android.hardware.radio.RadioManager;
import android.util.Slog;
class Tuner extends ITuner.Stub {
// TODO(b/36863239): rename to RadioService.Tuner when native service goes away
private static final String TAG = "RadioServiceJava.Tuner";
/**
* This field is used by native code, do not access or modify.
*/
private final long mNativeContext = nativeInit();
@Override
protected void finalize() throws Throwable {
nativeFinalize(mNativeContext);
super.finalize();
}
private native long nativeInit();
private native void nativeFinalize(long nativeContext);
@Override
public native void close();
@Override
public int getProgramInformation(RadioManager.ProgramInfo[] infoOut) {
Slog.d(TAG, "getProgramInformation()");
return RadioManager.STATUS_INVALID_OPERATION;
}
}