/* * This file is auto-generated. DO NOT MODIFY. * Original file: frameworks/base/core/java/android/net/IThrottleManager.aidl */ package android.net; /** * Interface that answers queries about data transfer amounts and throttling *//** {@hide} */ public interface IThrottleManager extends android.os.IInterface { /** Local-side IPC implementation stub class. */ public static abstract class Stub extends android.os.Binder implements android.net.IThrottleManager { private static final java.lang.String DESCRIPTOR = "android.net.IThrottleManager"; /** Construct the stub at attach it to the interface. */ public Stub() { this.attachInterface(this, DESCRIPTOR); } /** * Cast an IBinder object into an android.net.IThrottleManager interface, * generating a proxy if needed. */ public static android.net.IThrottleManager asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = (android.os.IInterface)obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof android.net.IThrottleManager))) { return ((android.net.IThrottleManager)iin); } return new android.net.IThrottleManager.Stub.Proxy(obj); } 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 { switch (code) { case INTERFACE_TRANSACTION: { reply.writeString(DESCRIPTOR); return true; } case TRANSACTION_getByteCount: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); int _arg1; _arg1 = data.readInt(); int _arg2; _arg2 = data.readInt(); int _arg3; _arg3 = data.readInt(); long _result = this.getByteCount(_arg0, _arg1, _arg2, _arg3); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getThrottle: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); int _result = this.getThrottle(_arg0); reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_getResetTime: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); long _result = this.getResetTime(_arg0); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getPeriodStartTime: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); long _result = this.getPeriodStartTime(_arg0); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getCliffThreshold: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); int _arg1; _arg1 = data.readInt(); long _result = this.getCliffThreshold(_arg0, _arg1); reply.writeNoException(); reply.writeLong(_result); return true; } case TRANSACTION_getCliffLevel: { data.enforceInterface(DESCRIPTOR); java.lang.String _arg0; _arg0 = data.readString(); int _arg1; _arg1 = data.readInt(); int _result = this.getCliffLevel(_arg0, _arg1); reply.writeNoException(); reply.writeInt(_result); return true; } case TRANSACTION_getHelpUri: { data.enforceInterface(DESCRIPTOR); java.lang.String _result = this.getHelpUri(); reply.writeNoException(); reply.writeString(_result); return true; } } return super.onTransact(code, data, reply, flags); } private static class Proxy implements android.net.IThrottleManager { private android.os.IBinder mRemote; Proxy(android.os.IBinder remote) { mRemote = remote; } public android.os.IBinder asBinder() { return mRemote; } public java.lang.String getInterfaceDescriptor() { return DESCRIPTOR; } public long getByteCount(java.lang.String iface, int dir, int period, int ago) 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); _data.writeString(iface); _data.writeInt(dir); _data.writeInt(period); _data.writeInt(ago); mRemote.transact(Stub.TRANSACTION_getByteCount, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public int getThrottle(java.lang.String iface) 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.writeString(iface); mRemote.transact(Stub.TRANSACTION_getThrottle, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public long getResetTime(java.lang.String iface) 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); _data.writeString(iface); mRemote.transact(Stub.TRANSACTION_getResetTime, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public long getPeriodStartTime(java.lang.String iface) 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); _data.writeString(iface); mRemote.transact(Stub.TRANSACTION_getPeriodStartTime, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public long getCliffThreshold(java.lang.String iface, int cliff) 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); _data.writeString(iface); _data.writeInt(cliff); mRemote.transact(Stub.TRANSACTION_getCliffThreshold, _data, _reply, 0); _reply.readException(); _result = _reply.readLong(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public int getCliffLevel(java.lang.String iface, int cliff) 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.writeString(iface); _data.writeInt(cliff); mRemote.transact(Stub.TRANSACTION_getCliffLevel, _data, _reply, 0); _reply.readException(); _result = _reply.readInt(); } finally { _reply.recycle(); _data.recycle(); } return _result; } public java.lang.String getHelpUri() 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_getHelpUri, _data, _reply, 0); _reply.readException(); _result = _reply.readString(); } finally { _reply.recycle(); _data.recycle(); } return _result; } } static final int TRANSACTION_getByteCount = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_getThrottle = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_getResetTime = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_getPeriodStartTime = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_getCliffThreshold = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_getCliffLevel = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); static final int TRANSACTION_getHelpUri = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6); } public long getByteCount(java.lang.String iface, int dir, int period, int ago) throws android.os.RemoteException; public int getThrottle(java.lang.String iface) throws android.os.RemoteException; public long getResetTime(java.lang.String iface) throws android.os.RemoteException; public long getPeriodStartTime(java.lang.String iface) throws android.os.RemoteException; public long getCliffThreshold(java.lang.String iface, int cliff) throws android.os.RemoteException; public int getCliffLevel(java.lang.String iface, int cliff) throws android.os.RemoteException; public java.lang.String getHelpUri() throws android.os.RemoteException; }