Files
rr3-apk/decompiled/sources/com/google/android/gms/internal/p000authapi/zba.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

40 lines
986 B
Java

package com.google.android.gms.internal.p000authapi;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
/* loaded from: classes3.dex */
public class zba implements IInterface {
private final IBinder zba;
private final String zbb;
public zba(IBinder iBinder, String str) {
this.zba = iBinder;
this.zbb = str;
}
@Override // android.os.IInterface
public final IBinder asBinder() {
return this.zba;
}
public final Parcel zba() {
Parcel obtain = Parcel.obtain();
obtain.writeInterfaceToken(this.zbb);
return obtain;
}
public final void zbb(int i, Parcel parcel) throws RemoteException {
Parcel obtain = Parcel.obtain();
try {
this.zba.transact(i, parcel, obtain, 0);
obtain.readException();
} finally {
parcel.recycle();
obtain.recycle();
}
}
}