Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package com.google.android.gms.internal.base;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
/* loaded from: classes.dex */
public class zaa implements IInterface {
private final IBinder a;
private final String b;
protected zaa(IBinder iBinder, String str) {
this.a = iBinder;
this.b = str;
}
protected final void a(int i, Parcel parcel) throws RemoteException {
Parcel obtain = Parcel.obtain();
try {
this.a.transact(i, parcel, obtain, 0);
obtain.readException();
} finally {
parcel.recycle();
obtain.recycle();
}
}
@Override // android.os.IInterface
public IBinder asBinder() {
return this.a;
}
protected final Parcel i() {
Parcel obtain = Parcel.obtain();
obtain.writeInterfaceToken(this.b);
return obtain;
}
}

View File

@@ -0,0 +1,38 @@
package com.google.android.gms.internal.base;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.Parcel;
import android.os.RemoteException;
/* loaded from: classes.dex */
public class zab extends Binder implements IInterface {
protected zab(String str) {
attachInterface(this, str);
}
protected boolean a(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
throw null;
}
@Override // android.os.IInterface
public IBinder asBinder() {
return this;
}
@Override // android.os.Binder
public boolean onTransact(int i, Parcel parcel, Parcel parcel2, int i2) throws RemoteException {
boolean z;
if (i > 16777215) {
z = super.onTransact(i, parcel, parcel2, i2);
} else {
parcel.enforceInterface(getInterfaceDescriptor());
z = false;
}
if (z) {
return true;
}
return a(i, parcel, parcel2, i2);
}
}

View File

@@ -0,0 +1,39 @@
package com.google.android.gms.internal.base;
import android.os.IInterface;
import android.os.Parcel;
import android.os.Parcelable;
/* loaded from: classes.dex */
public class zac {
static {
zac.class.getClassLoader();
}
private zac() {
}
public static <T extends Parcelable> T a(Parcel parcel, Parcelable.Creator<T> creator) {
if (parcel.readInt() == 0) {
return null;
}
return creator.createFromParcel(parcel);
}
public static void a(Parcel parcel, Parcelable parcelable) {
if (parcelable == null) {
parcel.writeInt(0);
} else {
parcel.writeInt(1);
parcelable.writeToParcel(parcel, 0);
}
}
public static void a(Parcel parcel, IInterface iInterface) {
if (iInterface == null) {
parcel.writeStrongBinder(null);
} else {
parcel.writeStrongBinder(iInterface.asBinder());
}
}
}

View File

@@ -0,0 +1,8 @@
package com.google.android.gms.internal.base;
import android.graphics.drawable.Drawable;
import androidx.collection.LruCache;
/* loaded from: classes.dex */
public final class zak extends LruCache<Object, Drawable> {
}

View File

@@ -0,0 +1,15 @@
package com.google.android.gms.internal.base;
import android.os.Handler;
import android.os.Looper;
/* loaded from: classes.dex */
public class zal extends Handler {
public zal(Looper looper) {
super(looper);
}
public zal(Looper looper, Handler.Callback callback) {
super(looper, callback);
}
}