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,101 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.HeaderIterator;
import org.apache.http.HttpMessage;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractHttpMessage implements HttpMessage {
protected HeaderGroup headergroup;
protected HttpParams params;
public AbstractHttpMessage(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
public AbstractHttpMessage() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public boolean containsHeader(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public Header[] getHeaders(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public Header getFirstHeader(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public Header getLastHeader(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public Header[] getAllHeaders() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void addHeader(Header header) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void addHeader(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void setHeader(Header header) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void setHeader(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void setHeaders(Header[] headerArr) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void removeHeader(Header header) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void removeHeaders(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public HeaderIterator headerIterator() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public HeaderIterator headerIterator(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public HttpParams getParams() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public void setParams(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,36 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.HeaderElement;
import org.apache.http.ParseException;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeader implements Header {
public BasicHeader(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public String getValue() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public HeaderElement[] getElements() throws ParseException {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,62 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderElement implements HeaderElement {
public BasicHeaderElement(String str, String str2, NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public BasicHeaderElement(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public String getValue() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public NameValuePair[] getParameters() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public int getParameterCount() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public NameValuePair getParameter(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElement
public NameValuePair getParameterByName(String str) {
throw new RuntimeException("Stub!");
}
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public int hashCode() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,38 @@
package org.apache.http.message;
import java.util.NoSuchElementException;
import org.apache.http.HeaderElement;
import org.apache.http.HeaderElementIterator;
import org.apache.http.HeaderIterator;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderElementIterator implements HeaderElementIterator {
public BasicHeaderElementIterator(HeaderIterator headerIterator, HeaderValueParser headerValueParser) {
throw new RuntimeException("Stub!");
}
public BasicHeaderElementIterator(HeaderIterator headerIterator) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElementIterator, java.util.Iterator
public boolean hasNext() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderElementIterator
public HeaderElement nextElement() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final Object next() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public void remove() throws UnsupportedOperationException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,45 @@
package org.apache.http.message;
import java.util.NoSuchElementException;
import org.apache.http.Header;
import org.apache.http.HeaderIterator;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderIterator implements HeaderIterator {
protected final Header[] allHeaders = null;
protected int currentIndex;
protected String headerName;
public BasicHeaderIterator(Header[] headerArr, String str) {
throw new RuntimeException("Stub!");
}
public int findNext(int i) {
throw new RuntimeException("Stub!");
}
public boolean filterHeader(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderIterator, java.util.Iterator
public boolean hasNext() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderIterator
public Header nextHeader() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final Object next() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public void remove() throws UnsupportedOperationException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,81 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderValueFormatter implements HeaderValueFormatter {
public static final BasicHeaderValueFormatter DEFAULT = null;
public static final String SEPARATORS = " ;,:@()<>\\\"/[]?={}\t";
public static final String UNSAFE_CHARS = "\"\\";
public BasicHeaderValueFormatter() {
throw new RuntimeException("Stub!");
}
public static final String formatElements(HeaderElement[] headerElementArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatElements(CharArrayBuffer charArrayBuffer, HeaderElement[] headerElementArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateElementsLen(HeaderElement[] headerElementArr) {
throw new RuntimeException("Stub!");
}
public static final String formatHeaderElement(HeaderElement headerElement, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatHeaderElement(CharArrayBuffer charArrayBuffer, HeaderElement headerElement, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateHeaderElementLen(HeaderElement headerElement) {
throw new RuntimeException("Stub!");
}
public static final String formatParameters(NameValuePair[] nameValuePairArr, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatParameters(CharArrayBuffer charArrayBuffer, NameValuePair[] nameValuePairArr, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateParametersLen(NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public static final String formatNameValuePair(NameValuePair nameValuePair, boolean z, HeaderValueFormatter headerValueFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueFormatter
public CharArrayBuffer formatNameValuePair(CharArrayBuffer charArrayBuffer, NameValuePair nameValuePair, boolean z) {
throw new RuntimeException("Stub!");
}
public int estimateNameValuePairLen(NameValuePair nameValuePair) {
throw new RuntimeException("Stub!");
}
public void doFormatValue(CharArrayBuffer charArrayBuffer, String str, boolean z) {
throw new RuntimeException("Stub!");
}
public boolean isSeparator(char c) {
throw new RuntimeException("Stub!");
}
public boolean isUnsafe(char c) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,64 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.ParseException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHeaderValueParser implements HeaderValueParser {
public static final BasicHeaderValueParser DEFAULT = null;
public BasicHeaderValueParser() {
throw new RuntimeException("Stub!");
}
public static final HeaderElement[] parseElements(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public HeaderElement[] parseElements(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public static final HeaderElement parseHeaderElement(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public HeaderElement parseHeaderElement(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public HeaderElement createHeaderElement(String str, String str2, NameValuePair[] nameValuePairArr) {
throw new RuntimeException("Stub!");
}
public static final NameValuePair[] parseParameters(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public NameValuePair[] parseParameters(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public static final NameValuePair parseNameValuePair(String str, HeaderValueParser headerValueParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.HeaderValueParser
public NameValuePair parseNameValuePair(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public NameValuePair parseNameValuePair(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor, char[] cArr) {
throw new RuntimeException("Stub!");
}
public NameValuePair createNameValuePair(String str, String str2) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,40 @@
package org.apache.http.message;
import org.apache.http.HttpEntity;
import org.apache.http.HttpEntityEnclosingRequest;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHttpEntityEnclosingRequest extends BasicHttpRequest implements HttpEntityEnclosingRequest {
public BasicHttpEntityEnclosingRequest(String str, String str2) {
super(null);
throw new RuntimeException("Stub!");
}
public BasicHttpEntityEnclosingRequest(String str, String str2, ProtocolVersion protocolVersion) {
super(null);
throw new RuntimeException("Stub!");
}
public BasicHttpEntityEnclosingRequest(RequestLine requestLine) {
super(null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpEntityEnclosingRequest
public HttpEntity getEntity() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpEntityEnclosingRequest
public void setEntity(HttpEntity httpEntity) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpEntityEnclosingRequest
public boolean expectContinue() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,31 @@
package org.apache.http.message;
import org.apache.http.HttpRequest;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHttpRequest extends AbstractHttpMessage implements HttpRequest {
public BasicHttpRequest(String str, String str2) {
throw new RuntimeException("Stub!");
}
public BasicHttpRequest(String str, String str2, ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public BasicHttpRequest(RequestLine requestLine) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public ProtocolVersion getProtocolVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpRequest
public RequestLine getRequestLine() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,83 @@
package org.apache.http.message;
import java.util.Locale;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ProtocolVersion;
import org.apache.http.ReasonPhraseCatalog;
import org.apache.http.StatusLine;
@Deprecated
/* loaded from: classes5.dex */
public class BasicHttpResponse extends AbstractHttpMessage implements HttpResponse {
public BasicHttpResponse(StatusLine statusLine, ReasonPhraseCatalog reasonPhraseCatalog, Locale locale) {
throw new RuntimeException("Stub!");
}
public BasicHttpResponse(StatusLine statusLine) {
throw new RuntimeException("Stub!");
}
public BasicHttpResponse(ProtocolVersion protocolVersion, int i, String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpMessage
public ProtocolVersion getProtocolVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public StatusLine getStatusLine() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public HttpEntity getEntity() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public Locale getLocale() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setStatusLine(StatusLine statusLine) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setStatusLine(ProtocolVersion protocolVersion, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setStatusLine(ProtocolVersion protocolVersion, int i, String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setStatusCode(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setReasonPhrase(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setEntity(HttpEntity httpEntity) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HttpResponse
public void setLocale(Locale locale) {
throw new RuntimeException("Stub!");
}
public String getReason(int i) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,73 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
import org.apache.http.StatusLine;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicLineFormatter implements LineFormatter {
public static final BasicLineFormatter DEFAULT = null;
public BasicLineFormatter() {
throw new RuntimeException("Stub!");
}
public CharArrayBuffer initBuffer(CharArrayBuffer charArrayBuffer) {
throw new RuntimeException("Stub!");
}
public static final String formatProtocolVersion(ProtocolVersion protocolVersion, LineFormatter lineFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineFormatter
public CharArrayBuffer appendProtocolVersion(CharArrayBuffer charArrayBuffer, ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public int estimateProtocolVersionLen(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public static final String formatRequestLine(RequestLine requestLine, LineFormatter lineFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineFormatter
public CharArrayBuffer formatRequestLine(CharArrayBuffer charArrayBuffer, RequestLine requestLine) {
throw new RuntimeException("Stub!");
}
public void doFormatRequestLine(CharArrayBuffer charArrayBuffer, RequestLine requestLine) {
throw new RuntimeException("Stub!");
}
public static final String formatStatusLine(StatusLine statusLine, LineFormatter lineFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineFormatter
public CharArrayBuffer formatStatusLine(CharArrayBuffer charArrayBuffer, StatusLine statusLine) {
throw new RuntimeException("Stub!");
}
public void doFormatStatusLine(CharArrayBuffer charArrayBuffer, StatusLine statusLine) {
throw new RuntimeException("Stub!");
}
public static final String formatHeader(Header header, LineFormatter lineFormatter) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineFormatter
public CharArrayBuffer formatHeader(CharArrayBuffer charArrayBuffer, Header header) {
throw new RuntimeException("Stub!");
}
public void doFormatHeader(CharArrayBuffer charArrayBuffer, Header header) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,80 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.ParseException;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
import org.apache.http.StatusLine;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BasicLineParser implements LineParser {
public static final BasicLineParser DEFAULT = null;
protected final ProtocolVersion protocol;
public BasicLineParser(ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public BasicLineParser() {
throw new RuntimeException("Stub!");
}
public static final ProtocolVersion parseProtocolVersion(String str, LineParser lineParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineParser
public ProtocolVersion parseProtocolVersion(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException {
throw new RuntimeException("Stub!");
}
public ProtocolVersion createProtocolVersion(int i, int i2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineParser
public boolean hasProtocolVersion(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
public static final RequestLine parseRequestLine(String str, LineParser lineParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineParser
public RequestLine parseRequestLine(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException {
throw new RuntimeException("Stub!");
}
public RequestLine createRequestLine(String str, String str2, ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
public static final StatusLine parseStatusLine(String str, LineParser lineParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineParser
public StatusLine parseStatusLine(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException {
throw new RuntimeException("Stub!");
}
public StatusLine createStatusLine(ProtocolVersion protocolVersion, int i, String str) {
throw new RuntimeException("Stub!");
}
public static final Header parseHeader(String str, LineParser lineParser) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.message.LineParser
public Header parseHeader(CharArrayBuffer charArrayBuffer) throws ParseException {
throw new RuntimeException("Stub!");
}
public void skipWhitespace(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,47 @@
package org.apache.http.message;
import java.util.List;
import java.util.NoSuchElementException;
import org.apache.http.Header;
import org.apache.http.HeaderIterator;
@Deprecated
/* loaded from: classes5.dex */
public class BasicListHeaderIterator implements HeaderIterator {
protected final List allHeaders;
protected int currentIndex;
protected String headerName;
protected int lastIndex;
public BasicListHeaderIterator(List list, String str) {
throw new RuntimeException("Stub!");
}
public int findNext(int i) {
throw new RuntimeException("Stub!");
}
public boolean filterHeader(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderIterator, java.util.Iterator
public boolean hasNext() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.HeaderIterator
public Header nextHeader() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final Object next() throws NoSuchElementException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public void remove() throws UnsupportedOperationException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,37 @@
package org.apache.http.message;
import org.apache.http.NameValuePair;
@Deprecated
/* loaded from: classes5.dex */
public class BasicNameValuePair implements NameValuePair {
public BasicNameValuePair(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.NameValuePair
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.NameValuePair
public String getValue() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public boolean equals(Object obj) {
throw new RuntimeException("Stub!");
}
public int hashCode() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,35 @@
package org.apache.http.message;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
@Deprecated
/* loaded from: classes5.dex */
public class BasicRequestLine implements RequestLine {
public BasicRequestLine(String str, String str2, ProtocolVersion protocolVersion) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.RequestLine
public String getMethod() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.RequestLine
public ProtocolVersion getProtocolVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.RequestLine
public String getUri() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,35 @@
package org.apache.http.message;
import org.apache.http.ProtocolVersion;
import org.apache.http.StatusLine;
@Deprecated
/* loaded from: classes5.dex */
public class BasicStatusLine implements StatusLine {
public BasicStatusLine(ProtocolVersion protocolVersion, int i, String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.StatusLine
public int getStatusCode() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.StatusLine
public ProtocolVersion getProtocolVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.StatusLine
public String getReasonPhrase() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,76 @@
package org.apache.http.message;
import java.util.NoSuchElementException;
import org.apache.http.HeaderIterator;
import org.apache.http.ParseException;
import org.apache.http.TokenIterator;
@Deprecated
/* loaded from: classes5.dex */
public class BasicTokenIterator implements TokenIterator {
public static final String HTTP_SEPARATORS = " ,;=()<>@:\\\"/[]?{}\t";
protected String currentHeader;
protected String currentToken;
protected final HeaderIterator headerIt;
protected int searchPos;
public BasicTokenIterator(HeaderIterator headerIterator) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.TokenIterator, java.util.Iterator
public boolean hasNext() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.TokenIterator
public String nextToken() throws NoSuchElementException, ParseException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final Object next() throws NoSuchElementException, ParseException {
throw new RuntimeException("Stub!");
}
@Override // java.util.Iterator
public final void remove() throws UnsupportedOperationException {
throw new RuntimeException("Stub!");
}
public int findNext(int i) throws ParseException {
throw new RuntimeException("Stub!");
}
public String createToken(String str, int i, int i2) {
throw new RuntimeException("Stub!");
}
public int findTokenStart(int i) {
throw new RuntimeException("Stub!");
}
public int findTokenSeparator(int i) {
throw new RuntimeException("Stub!");
}
public int findTokenEnd(int i) {
throw new RuntimeException("Stub!");
}
public boolean isTokenSeparator(char c) {
throw new RuntimeException("Stub!");
}
public boolean isWhitespace(char c) {
throw new RuntimeException("Stub!");
}
public boolean isTokenChar(char c) {
throw new RuntimeException("Stub!");
}
public boolean isHttpSeparator(char c) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,47 @@
package org.apache.http.message;
import org.apache.http.FormattedHeader;
import org.apache.http.HeaderElement;
import org.apache.http.ParseException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class BufferedHeader implements FormattedHeader {
public BufferedHeader(CharArrayBuffer charArrayBuffer) throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public String getValue() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.Header
public HeaderElement[] getElements() throws ParseException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.FormattedHeader
public int getValuePos() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.FormattedHeader
public CharArrayBuffer getBuffer() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,72 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.HeaderIterator;
@Deprecated
/* loaded from: classes5.dex */
public class HeaderGroup {
public HeaderGroup() {
throw new RuntimeException("Stub!");
}
public void clear() {
throw new RuntimeException("Stub!");
}
public void addHeader(Header header) {
throw new RuntimeException("Stub!");
}
public void removeHeader(Header header) {
throw new RuntimeException("Stub!");
}
public void updateHeader(Header header) {
throw new RuntimeException("Stub!");
}
public void setHeaders(Header[] headerArr) {
throw new RuntimeException("Stub!");
}
public Header getCondensedHeader(String str) {
throw new RuntimeException("Stub!");
}
public Header[] getHeaders(String str) {
throw new RuntimeException("Stub!");
}
public Header getFirstHeader(String str) {
throw new RuntimeException("Stub!");
}
public Header getLastHeader(String str) {
throw new RuntimeException("Stub!");
}
public Header[] getAllHeaders() {
throw new RuntimeException("Stub!");
}
public boolean containsHeader(String str) {
throw new RuntimeException("Stub!");
}
public HeaderIterator iterator() {
throw new RuntimeException("Stub!");
}
public HeaderIterator iterator(String str) {
throw new RuntimeException("Stub!");
}
public HeaderGroup copy() {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public interface HeaderValueFormatter {
CharArrayBuffer formatElements(CharArrayBuffer charArrayBuffer, HeaderElement[] headerElementArr, boolean z);
CharArrayBuffer formatHeaderElement(CharArrayBuffer charArrayBuffer, HeaderElement headerElement, boolean z);
CharArrayBuffer formatNameValuePair(CharArrayBuffer charArrayBuffer, NameValuePair nameValuePair, boolean z);
CharArrayBuffer formatParameters(CharArrayBuffer charArrayBuffer, NameValuePair[] nameValuePairArr, boolean z);
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.message;
import org.apache.http.HeaderElement;
import org.apache.http.NameValuePair;
import org.apache.http.ParseException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public interface HeaderValueParser {
HeaderElement[] parseElements(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
HeaderElement parseHeaderElement(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
NameValuePair parseNameValuePair(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
NameValuePair[] parseParameters(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
}

View File

@@ -0,0 +1,19 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
import org.apache.http.StatusLine;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public interface LineFormatter {
CharArrayBuffer appendProtocolVersion(CharArrayBuffer charArrayBuffer, ProtocolVersion protocolVersion);
CharArrayBuffer formatHeader(CharArrayBuffer charArrayBuffer, Header header);
CharArrayBuffer formatRequestLine(CharArrayBuffer charArrayBuffer, RequestLine requestLine);
CharArrayBuffer formatStatusLine(CharArrayBuffer charArrayBuffer, StatusLine statusLine);
}

View File

@@ -0,0 +1,22 @@
package org.apache.http.message;
import org.apache.http.Header;
import org.apache.http.ParseException;
import org.apache.http.ProtocolVersion;
import org.apache.http.RequestLine;
import org.apache.http.StatusLine;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public interface LineParser {
boolean hasProtocolVersion(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor);
Header parseHeader(CharArrayBuffer charArrayBuffer) throws ParseException;
ProtocolVersion parseProtocolVersion(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
RequestLine parseRequestLine(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
StatusLine parseStatusLine(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException;
}

View File

@@ -0,0 +1,33 @@
package org.apache.http.message;
@Deprecated
/* loaded from: classes5.dex */
public class ParserCursor {
public ParserCursor(int i, int i2) {
throw new RuntimeException("Stub!");
}
public int getLowerBound() {
throw new RuntimeException("Stub!");
}
public int getUpperBound() {
throw new RuntimeException("Stub!");
}
public int getPos() {
throw new RuntimeException("Stub!");
}
public void updatePos(int i) {
throw new RuntimeException("Stub!");
}
public boolean atEnd() {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}