348 lines
13 KiB
Java
348 lines
13 KiB
Java
/*
|
|
* This file is auto-generated. DO NOT MODIFY.
|
|
* Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 1 --hash 894069bcfe4f35ceb2088278ddf87c83adee8014 --stability vintf --min_sdk_version current --ninja -d out/soong/.intermediates/frameworks/base/omapi/aidl/android.se.omapi-V1-java-source/gen/android/se/omapi/ISecureElementChannel.java.d -o out/soong/.intermediates/frameworks/base/omapi/aidl/android.se.omapi-V1-java-source/gen -Nframeworks/base/omapi/aidl/aidl_api/android.se.omapi/1 frameworks/base/omapi/aidl/aidl_api/android.se.omapi/1/android/se/omapi/ISecureElementChannel.aidl
|
|
*/
|
|
package android.se.omapi;
|
|
/** @hide */
|
|
public interface ISecureElementChannel 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 = 1;
|
|
public static final String HASH = "894069bcfe4f35ceb2088278ddf87c83adee8014";
|
|
/** Default implementation for ISecureElementChannel. */
|
|
public static class Default implements android.se.omapi.ISecureElementChannel
|
|
{
|
|
@Override public void close() throws android.os.RemoteException
|
|
{
|
|
}
|
|
@Override public boolean isClosed() throws android.os.RemoteException
|
|
{
|
|
return false;
|
|
}
|
|
@Override public boolean isBasicChannel() throws android.os.RemoteException
|
|
{
|
|
return false;
|
|
}
|
|
@Override public byte[] getSelectResponse() throws android.os.RemoteException
|
|
{
|
|
return null;
|
|
}
|
|
@Override public byte[] transmit(byte[] command) throws android.os.RemoteException
|
|
{
|
|
return null;
|
|
}
|
|
@Override public boolean selectNext() throws android.os.RemoteException
|
|
{
|
|
return false;
|
|
}
|
|
@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.se.omapi.ISecureElementChannel
|
|
{
|
|
/** Construct the stub at attach it to the interface. */
|
|
@SuppressWarnings("this-escape")
|
|
public Stub()
|
|
{
|
|
this.markVintfStability();
|
|
this.attachInterface(this, DESCRIPTOR);
|
|
}
|
|
/**
|
|
* Cast an IBinder object into an android.se.omapi.ISecureElementChannel interface,
|
|
* generating a proxy if needed.
|
|
*/
|
|
public static android.se.omapi.ISecureElementChannel asInterface(android.os.IBinder obj)
|
|
{
|
|
if ((obj==null)) {
|
|
return null;
|
|
}
|
|
android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
|
|
if (((iin!=null)&&(iin instanceof android.se.omapi.ISecureElementChannel))) {
|
|
return ((android.se.omapi.ISecureElementChannel)iin);
|
|
}
|
|
return new android.se.omapi.ISecureElementChannel.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);
|
|
}
|
|
if (code == INTERFACE_TRANSACTION) {
|
|
reply.writeString(descriptor);
|
|
return true;
|
|
}
|
|
else if (code == TRANSACTION_getInterfaceVersion) {
|
|
reply.writeNoException();
|
|
reply.writeInt(getInterfaceVersion());
|
|
return true;
|
|
}
|
|
else if (code == TRANSACTION_getInterfaceHash) {
|
|
reply.writeNoException();
|
|
reply.writeString(getInterfaceHash());
|
|
return true;
|
|
}
|
|
switch (code)
|
|
{
|
|
case TRANSACTION_close:
|
|
{
|
|
this.close();
|
|
reply.writeNoException();
|
|
break;
|
|
}
|
|
case TRANSACTION_isClosed:
|
|
{
|
|
boolean _result = this.isClosed();
|
|
reply.writeNoException();
|
|
reply.writeBoolean(_result);
|
|
break;
|
|
}
|
|
case TRANSACTION_isBasicChannel:
|
|
{
|
|
boolean _result = this.isBasicChannel();
|
|
reply.writeNoException();
|
|
reply.writeBoolean(_result);
|
|
break;
|
|
}
|
|
case TRANSACTION_getSelectResponse:
|
|
{
|
|
byte[] _result = this.getSelectResponse();
|
|
reply.writeNoException();
|
|
reply.writeByteArray(_result);
|
|
break;
|
|
}
|
|
case TRANSACTION_transmit:
|
|
{
|
|
byte[] _arg0;
|
|
_arg0 = data.createByteArray();
|
|
data.enforceNoDataAvail();
|
|
byte[] _result = this.transmit(_arg0);
|
|
reply.writeNoException();
|
|
reply.writeByteArray(_result);
|
|
break;
|
|
}
|
|
case TRANSACTION_selectNext:
|
|
{
|
|
boolean _result = this.selectNext();
|
|
reply.writeNoException();
|
|
reply.writeBoolean(_result);
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
return super.onTransact(code, data, reply, flags);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
private static class Proxy implements android.se.omapi.ISecureElementChannel
|
|
{
|
|
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 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 boolean isClosed() throws android.os.RemoteException
|
|
{
|
|
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
|
|
android.os.Parcel _reply = android.os.Parcel.obtain();
|
|
boolean _result;
|
|
try {
|
|
_data.writeInterfaceToken(DESCRIPTOR);
|
|
boolean _status = mRemote.transact(Stub.TRANSACTION_isClosed, _data, _reply, 0);
|
|
if (!_status) {
|
|
throw new android.os.RemoteException("Method isClosed is unimplemented.");
|
|
}
|
|
_reply.readException();
|
|
_result = _reply.readBoolean();
|
|
}
|
|
finally {
|
|
_reply.recycle();
|
|
_data.recycle();
|
|
}
|
|
return _result;
|
|
}
|
|
@Override public boolean isBasicChannel() throws android.os.RemoteException
|
|
{
|
|
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
|
|
android.os.Parcel _reply = android.os.Parcel.obtain();
|
|
boolean _result;
|
|
try {
|
|
_data.writeInterfaceToken(DESCRIPTOR);
|
|
boolean _status = mRemote.transact(Stub.TRANSACTION_isBasicChannel, _data, _reply, 0);
|
|
if (!_status) {
|
|
throw new android.os.RemoteException("Method isBasicChannel is unimplemented.");
|
|
}
|
|
_reply.readException();
|
|
_result = _reply.readBoolean();
|
|
}
|
|
finally {
|
|
_reply.recycle();
|
|
_data.recycle();
|
|
}
|
|
return _result;
|
|
}
|
|
@Override public byte[] getSelectResponse() throws android.os.RemoteException
|
|
{
|
|
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
|
|
android.os.Parcel _reply = android.os.Parcel.obtain();
|
|
byte[] _result;
|
|
try {
|
|
_data.writeInterfaceToken(DESCRIPTOR);
|
|
boolean _status = mRemote.transact(Stub.TRANSACTION_getSelectResponse, _data, _reply, 0);
|
|
if (!_status) {
|
|
throw new android.os.RemoteException("Method getSelectResponse is unimplemented.");
|
|
}
|
|
_reply.readException();
|
|
_result = _reply.createByteArray();
|
|
}
|
|
finally {
|
|
_reply.recycle();
|
|
_data.recycle();
|
|
}
|
|
return _result;
|
|
}
|
|
@Override public byte[] transmit(byte[] command) throws android.os.RemoteException
|
|
{
|
|
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
|
|
android.os.Parcel _reply = android.os.Parcel.obtain();
|
|
byte[] _result;
|
|
try {
|
|
_data.writeInterfaceToken(DESCRIPTOR);
|
|
_data.writeByteArray(command);
|
|
boolean _status = mRemote.transact(Stub.TRANSACTION_transmit, _data, _reply, 0);
|
|
if (!_status) {
|
|
throw new android.os.RemoteException("Method transmit is unimplemented.");
|
|
}
|
|
_reply.readException();
|
|
_result = _reply.createByteArray();
|
|
}
|
|
finally {
|
|
_reply.recycle();
|
|
_data.recycle();
|
|
}
|
|
return _result;
|
|
}
|
|
@Override public boolean selectNext() throws android.os.RemoteException
|
|
{
|
|
android.os.Parcel _data = android.os.Parcel.obtain(asBinder());
|
|
android.os.Parcel _reply = android.os.Parcel.obtain();
|
|
boolean _result;
|
|
try {
|
|
_data.writeInterfaceToken(DESCRIPTOR);
|
|
boolean _status = mRemote.transact(Stub.TRANSACTION_selectNext, _data, _reply, 0);
|
|
if (!_status) {
|
|
throw new android.os.RemoteException("Method selectNext is unimplemented.");
|
|
}
|
|
_reply.readException();
|
|
_result = _reply.readBoolean();
|
|
}
|
|
finally {
|
|
_reply.recycle();
|
|
_data.recycle();
|
|
}
|
|
return _result;
|
|
}
|
|
@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;
|
|
}
|
|
}
|
|
/** @hide */
|
|
public static final java.lang.String DESCRIPTOR = "android$se$omapi$ISecureElementChannel".replace('$', '.');
|
|
static final int TRANSACTION_close = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
|
|
static final int TRANSACTION_isClosed = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
|
|
static final int TRANSACTION_isBasicChannel = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
|
|
static final int TRANSACTION_getSelectResponse = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
|
|
static final int TRANSACTION_transmit = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
|
|
static final int TRANSACTION_selectNext = (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 void close() throws android.os.RemoteException;
|
|
public boolean isClosed() throws android.os.RemoteException;
|
|
public boolean isBasicChannel() throws android.os.RemoteException;
|
|
public byte[] getSelectResponse() throws android.os.RemoteException;
|
|
public byte[] transmit(byte[] command) throws android.os.RemoteException;
|
|
public boolean selectNext() throws android.os.RemoteException;
|
|
public int getInterfaceVersion() throws android.os.RemoteException;
|
|
public String getInterfaceHash() throws android.os.RemoteException;
|
|
}
|