Files
rr3-apk/decompiled-community/sources/com/google/android/gms/internal/ads/zzcyl.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

149 lines
4.5 KiB
Java

package com.google.android.gms.internal.ads;
import androidx.annotation.Nullable;
import com.google.android.gms.common.util.Clock;
import java.util.Collections;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;
/* loaded from: classes3.dex */
public final class zzcyl extends zzdbj {
private final ScheduledExecutorService zzb;
private final Clock zzc;
private long zzd;
private long zze;
private long zzf;
private long zzg;
private boolean zzh;
@Nullable
private ScheduledFuture zzi;
@Nullable
private ScheduledFuture zzj;
public zzcyl(ScheduledExecutorService scheduledExecutorService, Clock clock) {
super(Collections.emptySet());
this.zzd = -1L;
this.zze = -1L;
this.zzf = -1L;
this.zzg = -1L;
this.zzh = false;
this.zzb = scheduledExecutorService;
this.zzc = clock;
}
private final synchronized void zzf(long j) {
try {
ScheduledFuture scheduledFuture = this.zzi;
if (scheduledFuture != null && !scheduledFuture.isDone()) {
this.zzi.cancel(false);
}
this.zzd = this.zzc.elapsedRealtime() + j;
this.zzi = this.zzb.schedule(new zzcyi(this, null), j, TimeUnit.MILLISECONDS);
} catch (Throwable th) {
throw th;
}
}
private final synchronized void zzg(long j) {
try {
ScheduledFuture scheduledFuture = this.zzj;
if (scheduledFuture != null && !scheduledFuture.isDone()) {
this.zzj.cancel(false);
}
this.zze = this.zzc.elapsedRealtime() + j;
this.zzj = this.zzb.schedule(new zzcyj(this, null), j, TimeUnit.MILLISECONDS);
} catch (Throwable th) {
throw th;
}
}
public final synchronized void zza() {
this.zzh = false;
zzf(0L);
}
public final synchronized void zzb() {
try {
if (this.zzh) {
return;
}
ScheduledFuture scheduledFuture = this.zzi;
if (scheduledFuture == null || scheduledFuture.isCancelled()) {
this.zzf = -1L;
} else {
this.zzi.cancel(false);
this.zzf = this.zzd - this.zzc.elapsedRealtime();
}
ScheduledFuture scheduledFuture2 = this.zzj;
if (scheduledFuture2 == null || scheduledFuture2.isCancelled()) {
this.zzg = -1L;
} else {
this.zzj.cancel(false);
this.zzg = this.zze - this.zzc.elapsedRealtime();
}
this.zzh = true;
} catch (Throwable th) {
throw th;
}
}
public final synchronized void zzc() {
ScheduledFuture scheduledFuture;
ScheduledFuture scheduledFuture2;
try {
if (this.zzh) {
if (this.zzf > 0 && (scheduledFuture2 = this.zzi) != null && scheduledFuture2.isCancelled()) {
zzf(this.zzf);
}
if (this.zzg > 0 && (scheduledFuture = this.zzj) != null && scheduledFuture.isCancelled()) {
zzg(this.zzg);
}
this.zzh = false;
}
} catch (Throwable th) {
throw th;
}
}
public final synchronized void zzd(int i) {
if (i > 0) {
long millis = TimeUnit.SECONDS.toMillis(i);
if (this.zzh) {
long j = this.zzf;
if (j <= 0 || millis >= j) {
millis = j;
}
this.zzf = millis;
return;
}
long elapsedRealtime = this.zzc.elapsedRealtime();
long j2 = this.zzd;
if (elapsedRealtime > j2 || j2 - elapsedRealtime > millis) {
zzf(millis);
}
}
}
public final synchronized void zze(int i) {
if (i > 0) {
long millis = TimeUnit.SECONDS.toMillis(i);
if (this.zzh) {
long j = this.zzg;
if (j <= 0 || millis >= j) {
millis = j;
}
this.zzg = millis;
return;
}
long elapsedRealtime = this.zzc.elapsedRealtime();
long j2 = this.zze;
if (elapsedRealtime > j2 || j2 - elapsedRealtime > millis) {
zzg(millis);
}
}
}
}