- 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
69 lines
2.4 KiB
Java
69 lines
2.4 KiB
Java
package org.apache.http.conn;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
import java.io.OutputStream;
|
|
import org.apache.http.HttpEntity;
|
|
import org.apache.http.entity.HttpEntityWrapper;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class BasicManagedEntity extends HttpEntityWrapper implements ConnectionReleaseTrigger, EofSensorWatcher {
|
|
protected final boolean attemptReuse;
|
|
protected ManagedClientConnection managedConn;
|
|
|
|
public BasicManagedEntity(HttpEntity httpEntity, ManagedClientConnection managedClientConnection, boolean z) {
|
|
super(null);
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.entity.HttpEntityWrapper, org.apache.http.HttpEntity
|
|
public boolean isRepeatable() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.entity.HttpEntityWrapper, org.apache.http.HttpEntity
|
|
public InputStream getContent() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.entity.HttpEntityWrapper, org.apache.http.HttpEntity
|
|
public void consumeContent() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.entity.HttpEntityWrapper, org.apache.http.HttpEntity
|
|
public void writeTo(OutputStream outputStream) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ConnectionReleaseTrigger
|
|
public void releaseConnection() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.ConnectionReleaseTrigger
|
|
public void abortConnection() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.EofSensorWatcher
|
|
public boolean eofDetected(InputStream inputStream) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.EofSensorWatcher
|
|
public boolean streamClosed(InputStream inputStream) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
@Override // org.apache.http.conn.EofSensorWatcher
|
|
public boolean streamAbort(InputStream inputStream) throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public void releaseManagedConnection() throws IOException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|