Files
rr3-apk/decompiled-community/sources/com/fyber/inneractive/sdk/util/h0.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

42 lines
1.3 KiB
Java

package com.fyber.inneractive.sdk.util;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.concurrent.atomic.AtomicInteger;
/* loaded from: classes2.dex */
public final class h0 extends BufferedInputStream {
public final /* synthetic */ AtomicInteger a;
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public h0(InputStream inputStream, AtomicInteger atomicInteger) {
super(inputStream);
this.a = atomicInteger;
}
@Override // java.io.BufferedInputStream, java.io.FilterInputStream, java.io.InputStream
public final synchronized int read(byte[] bArr, int i, int i2) throws IOException {
int read;
read = super.read(bArr, i, i2);
if (read != -1) {
this.a.getAndAdd(read);
}
return read;
}
@Override // java.io.BufferedInputStream, java.io.FilterInputStream, java.io.InputStream
public final synchronized void reset() throws IOException {
this.a.set(0);
super.reset();
}
@Override // java.io.BufferedInputStream, java.io.FilterInputStream, java.io.InputStream
public final synchronized long skip(long j) throws IOException {
long skip;
skip = super.skip(j);
this.a.addAndGet((int) skip);
return skip;
}
}