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,95 @@
package org.apache.http.impl;
import java.io.IOException;
import org.apache.http.HttpClientConnection;
import org.apache.http.HttpConnectionMetrics;
import org.apache.http.HttpEntityEnclosingRequest;
import org.apache.http.HttpException;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseFactory;
import org.apache.http.impl.entity.EntityDeserializer;
import org.apache.http.impl.entity.EntitySerializer;
import org.apache.http.io.HttpMessageParser;
import org.apache.http.io.HttpMessageWriter;
import org.apache.http.io.SessionInputBuffer;
import org.apache.http.io.SessionOutputBuffer;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractHttpClientConnection implements HttpClientConnection {
public abstract void assertOpen() throws IllegalStateException;
public AbstractHttpClientConnection() {
throw new RuntimeException("Stub!");
}
public EntityDeserializer createEntityDeserializer() {
throw new RuntimeException("Stub!");
}
public EntitySerializer createEntitySerializer() {
throw new RuntimeException("Stub!");
}
public HttpResponseFactory createHttpResponseFactory() {
throw new RuntimeException("Stub!");
}
public HttpMessageParser createResponseParser(SessionInputBuffer sessionInputBuffer, HttpResponseFactory httpResponseFactory, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public HttpMessageWriter createRequestWriter(SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public void init(SessionInputBuffer sessionInputBuffer, SessionOutputBuffer sessionOutputBuffer, HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public boolean isResponseAvailable(int i) throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void sendRequestHeader(HttpRequest httpRequest) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void sendRequestEntity(HttpEntityEnclosingRequest httpEntityEnclosingRequest) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
public void doFlush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void flush() throws IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public HttpResponse receiveResponseHeader() throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpClientConnection
public void receiveResponseEntity(HttpResponse httpResponse) throws HttpException, IOException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public boolean isStale() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpConnection
public HttpConnectionMetrics getMetrics() {
throw new RuntimeException("Stub!");
}
}