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,58 @@
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;
}