- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
70 lines
3.9 KiB
Java
70 lines
3.9 KiB
Java
package com.google.android.gms.identitycredentials.internal;
|
|
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import com.google.android.gms.common.api.Status;
|
|
import com.google.android.gms.identitycredentials.ClearRegistryResponse;
|
|
import com.google.android.gms.identitycredentials.PendingGetCredentialHandle;
|
|
import com.google.android.gms.identitycredentials.PendingImportCredentialsHandle;
|
|
import com.google.android.gms.identitycredentials.RegisterExportResponse;
|
|
import com.google.android.gms.identitycredentials.RegistrationResponse;
|
|
import com.google.android.gms.internal.identity_credentials.zzb;
|
|
import com.google.android.gms.internal.identity_credentials.zzc;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public interface IIdentityCredentialCallbacks extends IInterface {
|
|
|
|
public static abstract class Stub extends zzb implements IIdentityCredentialCallbacks {
|
|
public Stub() {
|
|
super("com.google.android.gms.identitycredentials.internal.IIdentityCredentialCallbacks");
|
|
}
|
|
|
|
@Override // com.google.android.gms.internal.identity_credentials.zzb
|
|
public boolean dispatchTransaction(int i, @NonNull Parcel parcel, @NonNull Parcel parcel2, int i2) throws RemoteException {
|
|
if (i == 1) {
|
|
Status status = (Status) zzc.zza(parcel, Status.CREATOR);
|
|
PendingGetCredentialHandle pendingGetCredentialHandle = (PendingGetCredentialHandle) zzc.zza(parcel, PendingGetCredentialHandle.CREATOR);
|
|
enforceNoDataAvail(parcel);
|
|
onGetCredential(status, pendingGetCredentialHandle);
|
|
} else if (i == 2) {
|
|
Status status2 = (Status) zzc.zza(parcel, Status.CREATOR);
|
|
RegistrationResponse registrationResponse = (RegistrationResponse) zzc.zza(parcel, RegistrationResponse.CREATOR);
|
|
enforceNoDataAvail(parcel);
|
|
onRegisterCredentials(status2, registrationResponse);
|
|
} else if (i == 3) {
|
|
Status status3 = (Status) zzc.zza(parcel, Status.CREATOR);
|
|
ClearRegistryResponse clearRegistryResponse = (ClearRegistryResponse) zzc.zza(parcel, ClearRegistryResponse.CREATOR);
|
|
enforceNoDataAvail(parcel);
|
|
onClearRegistry(status3, clearRegistryResponse);
|
|
} else if (i == 4) {
|
|
Status status4 = (Status) zzc.zza(parcel, Status.CREATOR);
|
|
PendingImportCredentialsHandle pendingImportCredentialsHandle = (PendingImportCredentialsHandle) zzc.zza(parcel, PendingImportCredentialsHandle.CREATOR);
|
|
enforceNoDataAvail(parcel);
|
|
onImportCredentials(status4, pendingImportCredentialsHandle);
|
|
} else {
|
|
if (i != 5) {
|
|
return false;
|
|
}
|
|
Status status5 = (Status) zzc.zza(parcel, Status.CREATOR);
|
|
RegisterExportResponse registerExportResponse = (RegisterExportResponse) zzc.zza(parcel, RegisterExportResponse.CREATOR);
|
|
enforceNoDataAvail(parcel);
|
|
onRegisterExport(status5, registerExportResponse);
|
|
}
|
|
return true;
|
|
}
|
|
}
|
|
|
|
void onClearRegistry(@NonNull Status status, @Nullable ClearRegistryResponse clearRegistryResponse) throws RemoteException;
|
|
|
|
void onGetCredential(@NonNull Status status, @Nullable PendingGetCredentialHandle pendingGetCredentialHandle) throws RemoteException;
|
|
|
|
void onImportCredentials(@NonNull Status status, @Nullable PendingImportCredentialsHandle pendingImportCredentialsHandle) throws RemoteException;
|
|
|
|
void onRegisterCredentials(@NonNull Status status, @Nullable RegistrationResponse registrationResponse) throws RemoteException;
|
|
|
|
void onRegisterExport(@NonNull Status status, @Nullable RegisterExportResponse registerExportResponse) throws RemoteException;
|
|
}
|