/* * This file is auto-generated. DO NOT MODIFY. * Using: out/host/linux-x86/bin/aidl --lang=java --structured --version 2 --hash fc957f1d3d261d065ff5e5415f2d21caa79c310f -t --stability vintf --min_sdk_version platform_apis --ninja -d out/soong/.intermediates/hardware/interfaces/gnss/aidl/android.hardware.gnss-V2-java-source/gen/android/hardware/gnss/IGnssConfiguration.java.d -o out/soong/.intermediates/hardware/interfaces/gnss/aidl/android.hardware.gnss-V2-java-source/gen -Nhardware/interfaces/gnss/aidl/aidl_api/android.hardware.gnss/2 hardware/interfaces/gnss/aidl/aidl_api/android.hardware.gnss/2/android/hardware/gnss/IGnssConfiguration.aidl */ package android.hardware.gnss; /** @hide */ public interface IGnssConfiguration 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 = "fc957f1d3d261d065ff5e5415f2d21caa79c310f"; /** Default implementation for IGnssConfiguration. */ public static class Default implements android.hardware.gnss.IGnssConfiguration { @Override public void setSuplVersion(int version) throws android.os.RemoteException { } @Override public void setSuplMode(int mode) throws android.os.RemoteException { } @Override public void setLppProfile(int lppProfile) throws android.os.RemoteException { } @Override public void setGlonassPositioningProtocol(int protocol) throws android.os.RemoteException { } @Override public void setEmergencySuplPdn(boolean enable) throws android.os.RemoteException { } @Override public void setEsExtensionSec(int emergencyExtensionSeconds) throws android.os.RemoteException { } @Override public void setBlocklist(android.hardware.gnss.BlocklistedSource[] blocklist) 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.gnss.IGnssConfiguration { /** 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.gnss.IGnssConfiguration interface, * generating a proxy if needed. */ public static android.hardware.gnss.IGnssConfiguration asInterface(android.os.IBinder obj) { if ((obj==null)) { return null; } android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR); if (((iin!=null)&&(iin instanceof android.hardware.gnss.IGnssConfiguration))) { return ((android.hardware.gnss.IGnssConfiguration)iin); } return new android.hardware.gnss.IGnssConfiguration.Stub.Proxy(obj); } @Override public android.os.IBinder asBinder() { return this; } /** @hide */ public static java.lang.String getDefaultTransactionName(int transactionCode) { switch (transactionCode) { case TRANSACTION_setSuplVersion: { return "setSuplVersion"; } case TRANSACTION_setSuplMode: { return "setSuplMode"; } case TRANSACTION_setLppProfile: { return "setLppProfile"; } case TRANSACTION_setGlonassPositioningProtocol: { return "setGlonassPositioningProtocol"; } case TRANSACTION_setEmergencySuplPdn: { return "setEmergencySuplPdn"; } case TRANSACTION_setEsExtensionSec: { return "setEsExtensionSec"; } case TRANSACTION_setBlocklist: { return "setBlocklist"; } case TRANSACTION_getInterfaceVersion: { return "getInterfaceVersion"; } case TRANSACTION_getInterfaceHash: { return "getInterfaceHash"; } default: { return null; } } } /** @hide */ public java.lang.String getTransactionName(int transactionCode) { return this.getDefaultTransactionName(transactionCode); } @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_setSuplVersion: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.setSuplVersion(_arg0); reply.writeNoException(); break; } case TRANSACTION_setSuplMode: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.setSuplMode(_arg0); reply.writeNoException(); break; } case TRANSACTION_setLppProfile: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.setLppProfile(_arg0); reply.writeNoException(); break; } case TRANSACTION_setGlonassPositioningProtocol: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.setGlonassPositioningProtocol(_arg0); reply.writeNoException(); break; } case TRANSACTION_setEmergencySuplPdn: { boolean _arg0; _arg0 = data.readBoolean(); data.enforceNoDataAvail(); this.setEmergencySuplPdn(_arg0); reply.writeNoException(); break; } case TRANSACTION_setEsExtensionSec: { int _arg0; _arg0 = data.readInt(); data.enforceNoDataAvail(); this.setEsExtensionSec(_arg0); reply.writeNoException(); break; } case TRANSACTION_setBlocklist: { android.hardware.gnss.BlocklistedSource[] _arg0; _arg0 = data.createTypedArray(android.hardware.gnss.BlocklistedSource.CREATOR); data.enforceNoDataAvail(); this.setBlocklist(_arg0); reply.writeNoException(); break; } default: { return super.onTransact(code, data, reply, flags); } } return true; } private static class Proxy implements android.hardware.gnss.IGnssConfiguration { 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 setSuplVersion(int version) 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(version); boolean _status = mRemote.transact(Stub.TRANSACTION_setSuplVersion, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setSuplVersion is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setSuplMode(int mode) 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(mode); boolean _status = mRemote.transact(Stub.TRANSACTION_setSuplMode, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setSuplMode is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setLppProfile(int lppProfile) 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(lppProfile); boolean _status = mRemote.transact(Stub.TRANSACTION_setLppProfile, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setLppProfile is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setGlonassPositioningProtocol(int protocol) 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(protocol); boolean _status = mRemote.transact(Stub.TRANSACTION_setGlonassPositioningProtocol, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setGlonassPositioningProtocol is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setEmergencySuplPdn(boolean enable) 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.writeBoolean(enable); boolean _status = mRemote.transact(Stub.TRANSACTION_setEmergencySuplPdn, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setEmergencySuplPdn is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setEsExtensionSec(int emergencyExtensionSeconds) 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(emergencyExtensionSeconds); boolean _status = mRemote.transact(Stub.TRANSACTION_setEsExtensionSec, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setEsExtensionSec is unimplemented."); } _reply.readException(); } finally { _reply.recycle(); _data.recycle(); } } @Override public void setBlocklist(android.hardware.gnss.BlocklistedSource[] blocklist) 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.writeTypedArray(blocklist, 0); boolean _status = mRemote.transact(Stub.TRANSACTION_setBlocklist, _data, _reply, 0); if (!_status) { throw new android.os.RemoteException("Method setBlocklist 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_setSuplVersion = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0); static final int TRANSACTION_setSuplMode = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1); static final int TRANSACTION_setLppProfile = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2); static final int TRANSACTION_setGlonassPositioningProtocol = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3); static final int TRANSACTION_setEmergencySuplPdn = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4); static final int TRANSACTION_setEsExtensionSec = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5); static final int TRANSACTION_setBlocklist = (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 int getMaxTransactionId() { return 16777214; } } /** @hide */ public static final java.lang.String DESCRIPTOR = "android$hardware$gnss$IGnssConfiguration".replace('$', '.'); public static final int SUPL_MODE_MSB = 1; public static final int SUPL_MODE_MSA = 2; public static final int LPP_PROFILE_USER_PLANE = 1; public static final int LPP_PROFILE_CONTROL_PLANE = 2; public static final int GLONASS_POS_PROTOCOL_RRC_CPLANE = 1; public static final int GLONASS_POS_PROTOCOL_RRLP_UPLANE = 2; public static final int GLONASS_POS_PROTOCOL_LPP_UPLANE = 4; public void setSuplVersion(int version) throws android.os.RemoteException; public void setSuplMode(int mode) throws android.os.RemoteException; public void setLppProfile(int lppProfile) throws android.os.RemoteException; public void setGlonassPositioningProtocol(int protocol) throws android.os.RemoteException; public void setEmergencySuplPdn(boolean enable) throws android.os.RemoteException; public void setEsExtensionSec(int emergencyExtensionSeconds) throws android.os.RemoteException; public void setBlocklist(android.hardware.gnss.BlocklistedSource[] blocklist) throws android.os.RemoteException; public int getInterfaceVersion() throws android.os.RemoteException; public String getInterfaceHash() throws android.os.RemoteException; }