Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/thrid/okio/BufferedSink.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

59 lines
1.7 KiB
Java

package com.mbridge.msdk.thrid.okio;
import java.io.IOException;
import java.io.OutputStream;
import java.nio.channels.WritableByteChannel;
import java.nio.charset.Charset;
/* loaded from: classes4.dex */
public interface BufferedSink extends Sink, WritableByteChannel {
Buffer buffer();
BufferedSink emit() throws IOException;
BufferedSink emitCompleteSegments() throws IOException;
@Override // com.mbridge.msdk.thrid.okio.Sink, java.io.Flushable
void flush() throws IOException;
OutputStream outputStream();
BufferedSink write(ByteString byteString) throws IOException;
BufferedSink write(Source source, long j) throws IOException;
BufferedSink write(byte[] bArr) throws IOException;
BufferedSink write(byte[] bArr, int i, int i2) throws IOException;
long writeAll(Source source) throws IOException;
BufferedSink writeByte(int i) throws IOException;
BufferedSink writeDecimalLong(long j) throws IOException;
BufferedSink writeHexadecimalUnsignedLong(long j) throws IOException;
BufferedSink writeInt(int i) throws IOException;
BufferedSink writeIntLe(int i) throws IOException;
BufferedSink writeLong(long j) throws IOException;
BufferedSink writeLongLe(long j) throws IOException;
BufferedSink writeShort(int i) throws IOException;
BufferedSink writeShortLe(int i) throws IOException;
BufferedSink writeString(String str, int i, int i2, Charset charset) throws IOException;
BufferedSink writeString(String str, Charset charset) throws IOException;
BufferedSink writeUtf8(String str) throws IOException;
BufferedSink writeUtf8(String str, int i, int i2) throws IOException;
BufferedSink writeUtf8CodePoint(int i) throws IOException;
}