/* * This file is auto-generated. DO NOT MODIFY. * Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 3 --hash 30b0bc0e84679bc3b5ccb3a52da34c47cda6b7eb --stability vintf --min_sdk_version current -pout/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio_interface/3/preprocessed.aidl --ninja -d out/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio.messaging-V3-java-source/gen/android/hardware/radio/messaging/IRadioMessagingIndication.java.d -o out/soong/.intermediates/hardware/interfaces/radio/aidl/android.hardware.radio.messaging-V3-java-source/gen -Nhardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.messaging/3 hardware/interfaces/radio/aidl/aidl_api/android.hardware.radio.messaging/3/android/hardware/radio/messaging/IRadioMessagingIndication.aidl */ package android.hardware.radio.messaging; /** @hide */ public interface IRadioMessagingIndication 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 = 3; public static final String HASH = "30b0bc0e84679bc3b5ccb3a52da34c47cda6b7eb"; /** Default implementation for IRadioMessagingIndication. */ public static class Default implements android.hardware.radio.messaging.IRadioMessagingIndication { @Override public void cdmaNewSms(int type, android.hardware.radio.messaging.CdmaSmsMessage msg) throws android.os.RemoteException { } @Override public void cdmaRuimSmsStorageFull(int type) throws android.os.RemoteException { } @Override public void newBroadcastSms(int type, byte[] data) throws android.os.RemoteException { } @Override public void newSms(int type, byte[] pdu) throws android.os.RemoteException { } @Override public void newSmsOnSim(int type, int recordNumber) throws android.os.RemoteException { } @Override public void newSmsStatusReport(int type, byte[] pdu) throws android.os.RemoteException { } @Override public void simSmsStorageFull(int type) 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.radio.messaging.IRadioMessagingIndication { /** 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.hardware.radio.messaging.IRadioMessagingIndication interface, * generating a proxy if needed. */ public static android.hardware.radio.messaging.IRadioMessagingIndication asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof android.hardware.radio.messaging.IRadioMessagingIndication))) { return ((android.hardware.radio.messaging.IRadioMessagingIndication)iin); } return new android.hardware.radio.messaging.IRadioMessagingIndication.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_cdmaNewSms: { int _arg0; _arg0 = data.readInt(); android.hardware.radio.messaging.CdmaSmsMessage _arg1; _arg1 = data.readTypedObject(android.hardware.radio.messaging.CdmaSmsMessage.CREATOR); data.enforceNoDataAvail(); this.cdmaNewSms(_arg0, _arg1); break; } case TRANSACTION_cdmaRuimSmsStorageFull: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.cdmaRuimSmsStorageFull(_arg0); break; } case TRANSACTION_newBroadcastSms: { int _arg0; _arg0 = data.readInt(); byte[] _arg1; _arg1 = data.createByteArray(); data.enforceNoDataAvail(); this.newBroadcastSms(_arg0, _arg1); break; } case TRANSACTION_newSms: { int _arg0; _arg0 = data.readInt(); byte[] _arg1; _arg1 = data.createByteArray(); data.enforceNoDataAvail(); this.newSms(_arg0, _arg1); break; } case TRANSACTION_newSmsOnSim: { int _arg0; _arg0 = data.readInt(); int _arg1; _arg1 = data.readInt(); data.enforceNoDataAvail(); this.newSmsOnSim(_arg0, _arg1); break; } case TRANSACTION_newSmsStatusReport: { int _arg0; _arg0 = data.readInt(); byte[] _arg1; _arg1 = data.createByteArray(); data.enforceNoDataAvail(); this.newSmsStatusReport(_arg0, _arg1); break; } case TRANSACTION_simSmsStorageFull: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.simSmsStorageFull(_arg0); break; } default: { return super.onTransact(code, data, reply, flags); } } return true; } private static class Proxy implements android.hardware.radio.messaging.IRadioMessagingIndication { 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 cdmaNewSms(int type, android.hardware.radio.messaging.CdmaSmsMessage msg) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); _data.writeTypedObject(msg, 0); boolean _status = mRemote.transact(Stub.TRANSACTION_cdmaNewSms, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method cdmaNewSms is unimplemented."); } } finally { _data.recycle(); } } @Override public void cdmaRuimSmsStorageFull(int type) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); boolean _status = mRemote.transact(Stub.TRANSACTION_cdmaRuimSmsStorageFull, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method cdmaRuimSmsStorageFull is unimplemented."); } } finally { _data.recycle(); } } @Override public void newBroadcastSms(int type, byte[] data) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); _data.writeByteArray(data); boolean _status = mRemote.transact(Stub.TRANSACTION_newBroadcastSms, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method newBroadcastSms is unimplemented."); } } finally { _data.recycle(); } } @Override public void newSms(int type, byte[] pdu) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); _data.writeByteArray(pdu); boolean _status = mRemote.transact(Stub.TRANSACTION_newSms, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method newSms is unimplemented."); } } finally { _data.recycle(); } } @Override public void newSmsOnSim(int type, int recordNumber) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); _data.writeInt(recordNumber); boolean _status = mRemote.transact(Stub.TRANSACTION_newSmsOnSim, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method newSmsOnSim is unimplemented."); } } finally { _data.recycle(); } } @Override public void newSmsStatusReport(int type, byte[] pdu) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); _data.writeByteArray(pdu); boolean _status = mRemote.transact(Stub.TRANSACTION_newSmsStatusReport, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method newSmsStatusReport is unimplemented."); } } finally { _data.recycle(); } } @Override public void simSmsStorageFull(int type) throws android.os.RemoteException { android.os.Parcel _data = android.os.Parcel.obtain(asBinder()); try { _data.writeInterfaceToken(DESCRIPTOR); _data.writeInt(type); boolean _status = mRemote.transact(Stub.TRANSACTION_simSmsStorageFull, _data, null, android.os.IBinder.FLAG_ONEWAY); if (!_status) { throw new android.os.RemoteException("Method simSmsStorageFull is unimplemented."); } } finally { _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_cdmaNewSms = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_cdmaRuimSmsStorageFull = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_newBroadcastSms = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_newSms = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_newSmsOnSim = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_newSmsStatusReport = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); static final int TRANSACTION_simSmsStorageFull = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6); static final int TRANSACTION_getInterfaceVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777214); static final int TRANSACTION_getInterfaceHash = (android.os.IBinder.FIRST_CALL_TRANSACTION + 16777213); } /** @hide */ public static final java.lang.String DESCRIPTOR = "android$hardware$radio$messaging$IRadioMessagingIndication".replace('$', '.'); public void cdmaNewSms(int type, android.hardware.radio.messaging.CdmaSmsMessage msg) throws android.os.RemoteException; public void cdmaRuimSmsStorageFull(int type) throws android.os.RemoteException; public void newBroadcastSms(int type, byte[] data) throws android.os.RemoteException; public void newSms(int type, byte[] pdu) throws android.os.RemoteException; public void newSmsOnSim(int type, int recordNumber) throws android.os.RemoteException; public void newSmsStatusReport(int type, byte[] pdu) throws android.os.RemoteException; public void simSmsStorageFull(int type) throws android.os.RemoteException; public int getInterfaceVersion() throws android.os.RemoteException; public String getInterfaceHash() throws android.os.RemoteException; }