40 lines
998 B
Java
40 lines
998 B
Java
package o;
|
|
|
|
import android.os.IBinder;
|
|
import android.os.IInterface;
|
|
import android.os.Parcel;
|
|
import android.os.RemoteException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class Aqf implements IInterface {
|
|
private final IBinder a;
|
|
private final String b;
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public final void NA_(Parcel parcel) throws RemoteException {
|
|
try {
|
|
this.a.transact(2, parcel, null, 1);
|
|
} finally {
|
|
parcel.recycle();
|
|
}
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public final Parcel a() {
|
|
Parcel obtain = Parcel.obtain();
|
|
obtain.writeInterfaceToken(this.b);
|
|
return obtain;
|
|
}
|
|
|
|
@Override // android.os.IInterface
|
|
public final IBinder asBinder() {
|
|
return this.a;
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: protected */
|
|
public Aqf(IBinder iBinder, String str) {
|
|
this.a = iBinder;
|
|
this.b = str;
|
|
}
|
|
}
|