/*
 * This file is auto-generated.  DO NOT MODIFY.
 * Original file: /var/tmp/code-browser-generator/android_android_9.0.0_r358833596918674107602/combined/android/media/IMediaHTTPConnection.aidl
 */
package android.media;
/** MUST STAY IN SYNC WITH NATIVE CODE at libmedia/IMediaHTTPConnection.{cpp,h} */
@hide
/** @hide */
public interface IMediaHTTPConnection extends android.os.IInterface {
Local-side IPC implementation stub class.
/** Local-side IPC implementation stub class. */
public static abstract class Stub extends android.os.Binder implements android.media.IMediaHTTPConnection { private static final java.lang.String DESCRIPTOR = "android.media.IMediaHTTPConnection";
Construct the stub at attach it to the interface.
/** Construct the stub at attach it to the interface. */
public Stub() { this.attachInterface(this, DESCRIPTOR); }
Cast an IBinder object into an android.media.IMediaHTTPConnection interface, generating a proxy if needed.
/** * Cast an IBinder object into an android.media.IMediaHTTPConnection interface, * generating a proxy if needed. */
public static android.media.IMediaHTTPConnection asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof android.media.IMediaHTTPConnection))) { return ((android.media.IMediaHTTPConnection)iin); } return new android.media.IMediaHTTPConnection.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; switch (code) { case INTERFACE_TRANSACTION: { reply.writeString(descriptor); return true; } case TRANSACTION_connect: { data.enforceInterface(descriptor); java.lang.String _arg0; _arg0 = data.readString(); java.lang.String _arg1; _arg1 = data.readString(); android.os.IBinder _result = this.connect(_arg0, _arg1); reply.writeNoException(); reply.writeStrongBinder(_result); return true; } case TRANSACTION_disconnect: { data.enforceInterface(descriptor); this.disconnect(); reply.writeNoException(); return true; } case TRANSACTION_readAt: { data.enforceInterface(descriptor); long _arg0; _arg0 = data.readLong(); int _arg1; _arg1 = data.readInt(); int _result = this.readAt(_arg0, _arg1); reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_getSize: { data.enforceInterface(descriptor); long _result = this.getSize(); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getMIMEType: { data.enforceInterface(descriptor); java.lang.String _result = this.getMIMEType(); reply.writeNoException(); reply.writeString(_result); return true; } case TRANSACTION_getUri: { data.enforceInterface(descriptor); java.lang.String _result = this.getUri(); reply.writeNoException(); reply.writeString(_result); return true; } default: { return super.onTransact(code, data, reply, flags); } } } private static class Proxy implements android.media.IMediaHTTPConnection { private android.os.IBinder mRemote; Proxy(android.os.IBinder remote) { mRemote = remote; } @Override public android.os.IBinder asBinder() { return mRemote; } public java.lang.String getInterfaceDescriptor() { return DESCRIPTOR; } @Override public android.os.IBinder connect(java.lang.String uri, java.lang.String headers) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); android.os.IBinder _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeString(uri); _data.writeString(headers); mRemote.transact(Stub.TRANSACTION_connect, _data, _reply, 0); _reply.readException(); _result = _reply.readStrongBinder(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public void disconnect() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_disconnect, _data, _reply, 0); _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public int readAt(long offset, int size) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); int _result; try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeLong(offset); _data.writeInt(size); mRemote.transact(Stub.TRANSACTION_readAt, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public long getSize() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); long _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getSize, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String getMIMEType() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getMIMEType, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } @Override public java.lang.String getUri() throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(); android.os.Parcel _reply = android.os.Parcel.obtain(); java.lang.String _result; try { _data.writeInterfaceToken(DESCRIPTOR); mRemote.transact(Stub.TRANSACTION_getUri, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } } static final int TRANSACTION_connect = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_disconnect = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_readAt = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_getSize = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_getMIMEType = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_getUri = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); } public android.os.IBinder connect(java.lang.String uri, java.lang.String headers) throws android.os.RemoteException; public void disconnect() throws android.os.RemoteException; public int readAt(long offset, int size) throws android.os.RemoteException; public long getSize() throws android.os.RemoteException; public java.lang.String getMIMEType() throws android.os.RemoteException; public java.lang.String getUri() throws android.os.RemoteException; }