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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
package com.google.android.gms.internal.ads;
import android.os.Parcel;
import android.os.Parcelable;
import androidx.annotation.Nullable;
import com.ironsource.mediationsdk.logger.IronSourceError;
import com.mbridge.msdk.playercommon.exoplayer2.metadata.id3.ChapterFrame;
import java.util.Arrays;
import java.util.Objects;
/* loaded from: classes3.dex */
public final class zzafx extends zzagh {
public static final Parcelable.Creator<zzafx> CREATOR = new zzafw();
public final String zza;
public final int zzb;
public final int zzc;
public final long zzd;
public final long zze;
private final zzagh[] zzg;
public zzafx(Parcel parcel) {
super(ChapterFrame.ID);
String readString = parcel.readString();
int i = zzei.zza;
this.zza = readString;
this.zzb = parcel.readInt();
this.zzc = parcel.readInt();
this.zzd = parcel.readLong();
this.zze = parcel.readLong();
int readInt = parcel.readInt();
this.zzg = new zzagh[readInt];
for (int i2 = 0; i2 < readInt; i2++) {
this.zzg[i2] = (zzagh) parcel.readParcelable(zzagh.class.getClassLoader());
}
}
@Override // com.google.android.gms.internal.ads.zzagh, android.os.Parcelable
public final int describeContents() {
return 0;
}
public final boolean equals(@Nullable Object obj) {
if (this == obj) {
return true;
}
if (obj != null && zzafx.class == obj.getClass()) {
zzafx zzafxVar = (zzafx) obj;
if (this.zzb == zzafxVar.zzb && this.zzc == zzafxVar.zzc && this.zzd == zzafxVar.zzd && this.zze == zzafxVar.zze && Objects.equals(this.zza, zzafxVar.zza) && Arrays.equals(this.zzg, zzafxVar.zzg)) {
return true;
}
}
return false;
}
public final int hashCode() {
String str = this.zza;
return ((((((((this.zzb + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + this.zzc) * 31) + ((int) this.zzd)) * 31) + ((int) this.zze)) * 31) + (str != null ? str.hashCode() : 0);
}
@Override // android.os.Parcelable
public final void writeToParcel(Parcel parcel, int i) {
parcel.writeString(this.zza);
parcel.writeInt(this.zzb);
parcel.writeInt(this.zzc);
parcel.writeLong(this.zzd);
parcel.writeLong(this.zze);
parcel.writeInt(this.zzg.length);
for (zzagh zzaghVar : this.zzg) {
parcel.writeParcelable(zzaghVar, 0);
}
}
public zzafx(String str, int i, int i2, long j, long j2, zzagh[] zzaghVarArr) {
super(ChapterFrame.ID);
this.zza = str;
this.zzb = i;
this.zzc = i2;
this.zzd = j;
this.zze = j2;
this.zzg = zzaghVarArr;
}
}