blob: b367386f34925850e92e88a69a78e5ea6bf7a622 [file] [log] [blame]
/*
* This file is auto-generated. DO NOT MODIFY.
*/
package android.hardware.tv.tuner;
/** @hide */
public interface ILnb extends android.os.IInterface
{
/**
* The version of this interface that the caller is built against.
* This might be different from what {@link #getInterfaceVersion()
* getInterfaceVersion} returns as that is the version of the interface
* that the remote object is implementing.
*/
public static final int VERSION = 2;
public static final String HASH = "f8d74c149f04e76b6d622db2bd8e465dae24b08c";
/** Default implementation for ILnb. */
public static class Default implements android.hardware.tv.tuner.ILnb
{
@Override public void setCallback(android.hardware.tv.tuner.ILnbCallback callback) throws android.os.RemoteException
{
}
@Override public void setVoltage(int voltage) throws android.os.RemoteException
{
}
@Override public void setTone(int tone) throws android.os.RemoteException
{
}
@Override public void setSatellitePosition(int position) throws android.os.RemoteException
{
}
@Override public void sendDiseqcMessage(byte[] diseqcMessage) throws android.os.RemoteException
{
}
@Override public void close() throws android.os.RemoteException
{
}
@Override
public int getInterfaceVersion() {
return 0;
}
@Override
public String getInterfaceHash() {
return "";
}
@Override
public android.os.IBinder asBinder() {
return null;
}
}
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements android.hardware.tv.tuner.ILnb
{
/** Construct the stub at attach it to the interface. */
public Stub()
{
this.markVintfStability();
this.attachInterface(this, DESCRIPTOR);
}
/**
* Cast an IBinder object into an android.hardware.tv.tuner.ILnb interface,
* generating a proxy if needed.
*/
public static android.hardware.tv.tuner.ILnb asInterface(android.os.IBinder obj)
{
if ((obj==null)) {
return null;
}
android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
if (((iin!=null)&&(iin instanceof android.hardware.tv.tuner.ILnb))) {
return ((android.hardware.tv.tuner.ILnb)iin);
}
return new android.hardware.tv.tuner.ILnb.Stub.Proxy(obj);
}
@Override public android.os.IBinder asBinder()
{
return this;
}
@Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
{
java.lang.String descriptor = DESCRIPTOR;
if (code >= android.os.IBinder.FIRST_CALL_TRANSACTION && code <= android.os.IBinder.LAST_CALL_TRANSACTION) {
data.enforceInterface(descriptor);
}
switch (code)
{
case INTERFACE_TRANSACTION:
{
reply.writeString(descriptor);
return true;
}
case TRANSACTION_getInterfaceVersion:
{
reply.writeNoException();
reply.writeInt(getInterfaceVersion());
return true;
}
case TRANSACTION_getInterfaceHash:
{
reply.writeNoException();
reply.writeString(getInterfaceHash());
return true;
}
}
switch (code)
{
case TRANSACTION_setCallback:
{
android.hardware.tv.tuner.ILnbCallback _arg0;
_arg0 = android.hardware.tv.tuner.ILnbCallback.Stub.asInterface(data.readStrongBinder());
data.enforceNoDataAvail();
this.setCallback(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_setVoltage:
{
int _arg0;
_arg0 = data.readInt();
data.enforceNoDataAvail();
this.setVoltage(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_setTone:
{
int _arg0;
_arg0 = data.readInt();
data.enforceNoDataAvail();
this.setTone(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_setSatellitePosition:
{
int _arg0;
_arg0 = data.readInt();
data.enforceNoDataAvail();
this.setSatellitePosition(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_sendDiseqcMessage:
{
byte[] _arg0;
_arg0 = data.createByteArray();
data.enforceNoDataAvail();
this.sendDiseqcMessage(_arg0);
reply.writeNoException();
break;
}
case TRANSACTION_close:
{
this.close();
reply.writeNoException();
break;
}
default:
{
return super.onTransact(code, data, reply, flags);
}
}
return true;
}
private static class Proxy implements android.hardware.tv.tuner.ILnb
{
private android.os.IBinder mRemote;
Proxy(android.os.IBinder remote)
{
mRemote = remote;
}
private int mCachedVersion = -1;
private String mCachedHash = "-1";
@Override public android.os.IBinder asBinder()
{
return mRemote;
}
public java.lang.String getInterfaceDescriptor()
{
return DESCRIPTOR;
}
@Override public void setCallback(android.hardware.tv.tuner.ILnbCallback callback) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeStrongInterface(callback);
boolean _status = mRemote.transact(Stub.TRANSACTION_setCallback, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method setCallback is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void setVoltage(int voltage) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(voltage);
boolean _status = mRemote.transact(Stub.TRANSACTION_setVoltage, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method setVoltage is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void setTone(int tone) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(tone);
boolean _status = mRemote.transact(Stub.TRANSACTION_setTone, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method setTone is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void setSatellitePosition(int position) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeInt(position);
boolean _status = mRemote.transact(Stub.TRANSACTION_setSatellitePosition, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method setSatellitePosition is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void sendDiseqcMessage(byte[] diseqcMessage) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
_data.writeByteArray(diseqcMessage);
boolean _status = mRemote.transact(Stub.TRANSACTION_sendDiseqcMessage, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method sendDiseqcMessage is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override public void close() throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
android.os.Parcel _reply = android.os.Parcel.obtain();
try {
_data.writeInterfaceToken(DESCRIPTOR);
boolean _status = mRemote.transact(Stub.TRANSACTION_close, _data, _reply, 0);
if (!_status) {
throw new android.os.RemoteException("Method close is unimplemented.");
}
_reply.readException();
}
finally {
_reply.recycle();
_data.recycle();
}
}
@Override
public int getInterfaceVersion() throws android.os.RemoteException {
if (mCachedVersion == -1) {
android.os.Parcel data = android.os.Parcel.obtain(asBinder());
android.os.Parcel reply = android.os.Parcel.obtain();
try {
data.writeInterfaceToken(DESCRIPTOR);
boolean _status = mRemote.transact(Stub.TRANSACTION_getInterfaceVersion, data, reply, 0);
reply.readException();
mCachedVersion = reply.readInt();
} finally {
reply.recycle();
data.recycle();
}
}
return mCachedVersion;
}
@Override
public synchronized String getInterfaceHash() throws android.os.RemoteException {
if ("-1".equals(mCachedHash)) {
android.os.Parcel data = android.os.Parcel.obtain(asBinder());
android.os.Parcel reply = android.os.Parcel.obtain();
try {
data.writeInterfaceToken(DESCRIPTOR);
boolean _status = mRemote.transact(Stub.TRANSACTION_getInterfaceHash, data, reply, 0);
reply.readException();
mCachedHash = reply.readString();
} finally {
reply.recycle();
data.recycle();
}
}
return mCachedHash;
}
}
static final int TRANSACTION_setCallback = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
static final int TRANSACTION_setVoltage = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
static final int TRANSACTION_setTone = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
static final int TRANSACTION_setSatellitePosition = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
static final int TRANSACTION_sendDiseqcMessage = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
static final int TRANSACTION_close = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5);
static final int TRANSACTION_getInterfaceVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777214);
static final int TRANSACTION_getInterfaceHash = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777213);
}
public static final java.lang.String DESCRIPTOR = "android$hardware$tv$tuner$ILnb".replace('$', '.');
public void setCallback(android.hardware.tv.tuner.ILnbCallback callback) throws android.os.RemoteException;
public void setVoltage(int voltage) throws android.os.RemoteException;
public void setTone(int tone) throws android.os.RemoteException;
public void setSatellitePosition(int position) throws android.os.RemoteException;
public void sendDiseqcMessage(byte[] diseqcMessage) throws android.os.RemoteException;
public void close() throws android.os.RemoteException;
public int getInterfaceVersion() throws android.os.RemoteException;
public String getInterfaceHash() throws android.os.RemoteException;
}