android.location.IGnssStatusListener Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of androidstub Show documentation
Show all versions of androidstub Show documentation
provide android hidden api definition ,helper for android super framework development
package android.location;
public interface IGnssStatusListener extends android.os.IInterface {
void onGnssStarted() throws android.os.RemoteException;
void onGnssStopped() throws android.os.RemoteException;
void onFirstFix(int ttff) throws android.os.RemoteException;
void onSvStatusChanged(int svCount, int[] svidWithFlags, float[] cn0s, float[] elevations, float[] azimuths, float[] carrierFreqs, float[] basebandCn0s) throws android.os.RemoteException;
void onNmeaReceived(long timestamp, java.lang.String nmea) throws android.os.RemoteException;
static class Default implements android.location.IGnssStatusListener {
public Default() { /* compiled code */ }
public void onGnssStarted() throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onGnssStopped() throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onFirstFix(int ttff) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onSvStatusChanged(int svCount, int[] svidWithFlags, float[] cn0s, float[] elevations, float[] azimuths, float[] carrierFreqs, float[] basebandCn0s) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onNmeaReceived(long timestamp, java.lang.String nmea) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public android.os.IBinder asBinder() {
throw new RuntimeException("Stub!");
}
}
static abstract class Stub extends android.os.Binder implements android.location.IGnssStatusListener {
static final int TRANSACTION_onGnssStarted = 1;
static final int TRANSACTION_onGnssStopped = 2;
static final int TRANSACTION_onFirstFix = 3;
static final int TRANSACTION_onSvStatusChanged = 4;
static final int TRANSACTION_onNmeaReceived = 5;
public Stub() {
throw new RuntimeException("Stub!");
}
public static android.location.IGnssStatusListener asInterface(android.os.IBinder obj) {
throw new RuntimeException("Stub!");
}
public android.os.IBinder asBinder() {
throw new RuntimeException("Stub!");
}
public static java.lang.String getDefaultTransactionName(int transactionCode) {
throw new RuntimeException("Stub!");
}
public java.lang.String getTransactionName(int transactionCode) {
throw new RuntimeException("Stub!");
}
public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public static boolean setDefaultImpl(android.location.IGnssStatusListener impl) {
throw new RuntimeException("Stub!");
}
public static android.location.IGnssStatusListener getDefaultImpl() {
throw new RuntimeException("Stub!");
}
private static class Proxy implements android.location.IGnssStatusListener {
public static android.location.IGnssStatusListener sDefaultImpl;
Proxy(android.os.IBinder remote) {
throw new RuntimeException("Stub!");
}
public android.os.IBinder asBinder() {
throw new RuntimeException("Stub!");
}
public java.lang.String getInterfaceDescriptor() {
throw new RuntimeException("Stub!");
}
public void onGnssStarted() throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onGnssStopped() throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onFirstFix(int ttff) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onSvStatusChanged(int svCount, int[] svidWithFlags, float[] cn0s, float[] elevations, float[] azimuths, float[] carrierFreqs, float[] basebandCn0s) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
public void onNmeaReceived(long timestamp, java.lang.String nmea) throws android.os.RemoteException {
throw new RuntimeException("Stub!");
}
}
}
}