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,32 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.Header;
import org.apache.http.HttpException;
import org.apache.http.HttpMessage;
import org.apache.http.ParseException;
import org.apache.http.io.HttpMessageParser;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.message.LineParser;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractMessageParser implements HttpMessageParser {
protected final LineParser lineParser;
public abstract HttpMessage parseHead(SessionInputBuffer sessionInputBuffer) throws IOException, HttpException, ParseException;
public AbstractMessageParser(SessionInputBuffer sessionInputBuffer, LineParser lineParser, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public static Header[] parseHeaders(SessionInputBuffer sessionInputBuffer, int i, int i2, LineParser lineParser) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.HttpMessageParser
public HttpMessage parse() throws IOException, HttpException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,29 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.HttpException;
import org.apache.http.HttpMessage;
import org.apache.http.io.HttpMessageWriter;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.message.LineFormatter;
import org.apache.http.params.HttpParams;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractMessageWriter implements HttpMessageWriter {
protected final CharArrayBuffer lineBuf;
protected final LineFormatter lineFormatter;
protected final SessionOutputBuffer sessionBuffer;
public abstract void writeHeadLine(HttpMessage httpMessage) throws IOException;
public AbstractMessageWriter(SessionOutputBuffer sessionOutputBuffer, LineFormatter lineFormatter, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.HttpMessageWriter
public void write(HttpMessage httpMessage) throws IOException, HttpException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,58 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.InputStream;
import org.apache.http.io.HttpTransportMetrics;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.params.HttpParams;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractSessionInputBuffer implements SessionInputBuffer {
public AbstractSessionInputBuffer() {
throw new RuntimeException("Stub!");
}
public void init(InputStream inputStream, int i, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public int fillBuffer() throws IOException {
throw new RuntimeException("Stub!");
}
public boolean hasBufferedData() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public int read() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public int read(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public int read(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public int readLine(CharArrayBuffer charArrayBuffer) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public String readLine() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public HttpTransportMetrics getMetrics() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,59 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.http.io.HttpTransportMetrics;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.params.HttpParams;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractSessionOutputBuffer implements SessionOutputBuffer {
public AbstractSessionOutputBuffer() {
throw new RuntimeException("Stub!");
}
public void init(OutputStream outputStream, int i, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public void flushBuffer() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void write(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void write(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void write(int i) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void writeLine(String str) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public void writeLine(CharArrayBuffer charArrayBuffer) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionOutputBuffer
public HttpTransportMetrics getMetrics() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,38 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.InputStream;
import org.apache.http.Header;
import org.apache.http.io.SessionInputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class ChunkedInputStream extends InputStream {
public ChunkedInputStream(SessionInputBuffer sessionInputBuffer) {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
public Header[] getFooters() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,58 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.http.io.SessionOutputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class ChunkedOutputStream extends OutputStream {
public ChunkedOutputStream(SessionOutputBuffer sessionOutputBuffer, int i) throws IOException {
throw new RuntimeException("Stub!");
}
public ChunkedOutputStream(SessionOutputBuffer sessionOutputBuffer) throws IOException {
throw new RuntimeException("Stub!");
}
public void flushCache() throws IOException {
throw new RuntimeException("Stub!");
}
public void flushCacheWithAppend(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
public void writeClosingChunk() throws IOException {
throw new RuntimeException("Stub!");
}
public void finish() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(int i) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Flushable
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,38 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.InputStream;
import org.apache.http.io.SessionInputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class ContentLengthInputStream extends InputStream {
public ContentLengthInputStream(SessionInputBuffer sessionInputBuffer, long j) {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public long skip(long j) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,38 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.http.io.SessionOutputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class ContentLengthOutputStream extends OutputStream {
public ContentLengthOutputStream(SessionOutputBuffer sessionOutputBuffer, long j) {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Flushable
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(int i) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,24 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.HttpException;
import org.apache.http.HttpMessage;
import org.apache.http.HttpRequestFactory;
import org.apache.http.ParseException;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.message.LineParser;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class HttpRequestParser extends AbstractMessageParser {
public HttpRequestParser(SessionInputBuffer sessionInputBuffer, LineParser lineParser, HttpRequestFactory httpRequestFactory, HttpParams httpParams) {
super(null, null, null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.io.AbstractMessageParser
public HttpMessage parseHead(SessionInputBuffer sessionInputBuffer) throws IOException, HttpException, ParseException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,21 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.HttpMessage;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.message.LineFormatter;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class HttpRequestWriter extends AbstractMessageWriter {
public HttpRequestWriter(SessionOutputBuffer sessionOutputBuffer, LineFormatter lineFormatter, HttpParams httpParams) {
super(null, null, null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.io.AbstractMessageWriter
public void writeHeadLine(HttpMessage httpMessage) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,24 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.HttpException;
import org.apache.http.HttpMessage;
import org.apache.http.HttpResponseFactory;
import org.apache.http.ParseException;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.message.LineParser;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class HttpResponseParser extends AbstractMessageParser {
public HttpResponseParser(SessionInputBuffer sessionInputBuffer, LineParser lineParser, HttpResponseFactory httpResponseFactory, HttpParams httpParams) {
super(null, null, null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.io.AbstractMessageParser
public HttpMessage parseHead(SessionInputBuffer sessionInputBuffer) throws IOException, HttpException, ParseException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,21 @@
package org.apache.http.impl.io;
import java.io.IOException;
import org.apache.http.HttpMessage;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.message.LineFormatter;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class HttpResponseWriter extends AbstractMessageWriter {
public HttpResponseWriter(SessionOutputBuffer sessionOutputBuffer, LineFormatter lineFormatter, HttpParams httpParams) {
super(null, null, null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.io.AbstractMessageWriter
public void writeHeadLine(HttpMessage httpMessage) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,29 @@
package org.apache.http.impl.io;
import org.apache.http.io.HttpTransportMetrics;
@Deprecated
/* loaded from: classes5.dex */
public class HttpTransportMetricsImpl implements HttpTransportMetrics {
public HttpTransportMetricsImpl() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.HttpTransportMetrics
public long getBytesTransferred() {
throw new RuntimeException("Stub!");
}
public void setBytesTransferred(long j) {
throw new RuntimeException("Stub!");
}
public void incrementBytesTransferred(long j) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.HttpTransportMetrics
public void reset() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,33 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.InputStream;
import org.apache.http.io.SessionInputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class IdentityInputStream extends InputStream {
public IdentityInputStream(SessionInputBuffer sessionInputBuffer) {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int available() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.InputStream
public int read(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,38 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.io.OutputStream;
import org.apache.http.io.SessionOutputBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class IdentityOutputStream extends OutputStream {
public IdentityOutputStream(SessionOutputBuffer sessionOutputBuffer) {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Closeable, java.lang.AutoCloseable
public void close() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream, java.io.Flushable
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr, int i, int i2) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(byte[] bArr) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // java.io.OutputStream
public void write(int i) throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,22 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.net.Socket;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class SocketInputBuffer extends AbstractSessionInputBuffer {
public SocketInputBuffer(Socket socket, int i, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.io.SessionInputBuffer
public boolean isDataAvailable(int i) throws IOException {
throw new RuntimeException("Stub!");
}
public boolean isStale() throws IOException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,13 @@
package org.apache.http.impl.io;
import java.io.IOException;
import java.net.Socket;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class SocketOutputBuffer extends AbstractSessionOutputBuffer {
public SocketOutputBuffer(Socket socket, int i, HttpParams httpParams) throws IOException {
throw new RuntimeException("Stub!");
}
}