Add Discord community version (64-bit only)

- 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
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractCookieAttributeHandler implements CookieAttributeHandler {
public AbstractCookieAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,29 @@
package org.apache.http.impl.cookie;
import java.util.Collection;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieSpec;
@Deprecated
/* loaded from: classes5.dex */
public abstract class AbstractCookieSpec implements CookieSpec {
public AbstractCookieSpec() {
throw new RuntimeException("Stub!");
}
public void registerAttribHandler(String str, CookieAttributeHandler cookieAttributeHandler) {
throw new RuntimeException("Stub!");
}
public CookieAttributeHandler findAttribHandler(String str) {
throw new RuntimeException("Stub!");
}
public CookieAttributeHandler getAttribHandler(String str) {
throw new RuntimeException("Stub!");
}
public Collection<CookieAttributeHandler> getAttribHandlers() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,130 @@
package org.apache.http.impl.cookie;
import java.util.Date;
import org.apache.http.cookie.ClientCookie;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicClientCookie implements SetCookie, ClientCookie {
public BasicClientCookie(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getName() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getValue() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setValue(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getComment() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setComment(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getCommentURL() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public Date getExpiryDate() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setExpiryDate(Date date) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public boolean isPersistent() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getDomain() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setDomain(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public String getPath() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setPath(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public boolean isSecure() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setSecure(boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public int[] getPorts() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie
public void setVersion(int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.Cookie
public boolean isExpired(Date date) {
throw new RuntimeException("Stub!");
}
public void setAttribute(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.ClientCookie
public String getAttribute(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.ClientCookie
public boolean containsAttribute(String str) {
throw new RuntimeException("Stub!");
}
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
public String toString() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,53 @@
package org.apache.http.impl.cookie;
import java.util.Date;
import org.apache.http.cookie.SetCookie2;
@Deprecated
/* loaded from: classes5.dex */
public class BasicClientCookie2 extends BasicClientCookie implements SetCookie2 {
public BasicClientCookie2(String str, String str2) {
super(null, null);
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicClientCookie, org.apache.http.cookie.Cookie
public int[] getPorts() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie2
public void setPorts(int[] iArr) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicClientCookie, org.apache.http.cookie.Cookie
public String getCommentURL() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie2
public void setCommentURL(String str) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.SetCookie2
public void setDiscard(boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicClientCookie, org.apache.http.cookie.Cookie
public boolean isPersistent() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicClientCookie, org.apache.http.cookie.Cookie
public boolean isExpired(Date date) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicClientCookie
public Object clone() throws CloneNotSupportedException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicCommentHandler extends AbstractCookieAttributeHandler {
public BasicCommentHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicDomainHandler implements CookieAttributeHandler {
public BasicDomainHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicExpiresHandler extends AbstractCookieAttributeHandler {
public BasicExpiresHandler(String[] strArr) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,17 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicMaxAgeHandler extends AbstractCookieAttributeHandler {
public BasicMaxAgeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicPathHandler implements CookieAttributeHandler {
public BasicPathHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,24 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class BasicSecureHandler extends AbstractCookieAttributeHandler {
public BasicSecureHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.AbstractCookieAttributeHandler, org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,50 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public class BestMatchSpec implements CookieSpec {
public BestMatchSpec(String[] strArr, boolean z) {
throw new RuntimeException("Stub!");
}
public BestMatchSpec() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Header> formatCookies(List<Cookie> list) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public Header getVersionHeader() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.CookieSpecFactory;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class BestMatchSpecFactory implements CookieSpecFactory {
public BestMatchSpecFactory() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpecFactory
public CookieSpec newInstance(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,41 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public class BrowserCompatSpec extends CookieSpecBase {
protected static final String[] DATE_PATTERNS = null;
public BrowserCompatSpec(String[] strArr) {
throw new RuntimeException("Stub!");
}
public BrowserCompatSpec() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Header> formatCookies(List<Cookie> list) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public Header getVersionHeader() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.CookieSpecFactory;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class BrowserCompatSpecFactory implements CookieSpecFactory {
public BrowserCompatSpecFactory() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpecFactory
public CookieSpec newInstance(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,37 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.HeaderElement;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public abstract class CookieSpecBase extends AbstractCookieSpec {
public CookieSpecBase() {
throw new RuntimeException("Stub!");
}
public static String getDefaultPath(CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
public static String getDefaultDomain(CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
public List<Cookie> parse(HeaderElement[] headerElementArr, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,13 @@
package org.apache.http.impl.cookie;
@Deprecated
/* loaded from: classes5.dex */
public class DateParseException extends Exception {
public DateParseException() {
throw new RuntimeException("Stub!");
}
public DateParseException(String str) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,37 @@
package org.apache.http.impl.cookie;
import java.util.Date;
import java.util.TimeZone;
@Deprecated
/* loaded from: classes5.dex */
public final class DateUtils {
public static final TimeZone GMT = null;
public static final String PATTERN_ASCTIME = "EEE MMM d HH:mm:ss yyyy";
public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
public static final String PATTERN_RFC1123 = "EEE, dd MMM yyyy HH:mm:ss zzz";
public DateUtils() {
throw new RuntimeException("Stub!");
}
public static Date parseDate(String str) throws DateParseException {
throw new RuntimeException("Stub!");
}
public static Date parseDate(String str, String[] strArr) throws DateParseException {
throw new RuntimeException("Stub!");
}
public static Date parseDate(String str, String[] strArr, Date date) throws DateParseException {
throw new RuntimeException("Stub!");
}
public static String formatDate(Date date) {
throw new RuntimeException("Stub!");
}
public static String formatDate(Date date, String str) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,23 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public class NetscapeDomainHandler extends BasicDomainHandler {
public NetscapeDomainHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicDomainHandler, org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.BasicDomainHandler, org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,20 @@
package org.apache.http.impl.cookie;
import org.apache.http.HeaderElement;
import org.apache.http.ParseException;
import org.apache.http.message.ParserCursor;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class NetscapeDraftHeaderParser {
public static final NetscapeDraftHeaderParser DEFAULT = null;
public NetscapeDraftHeaderParser() {
throw new RuntimeException("Stub!");
}
public HeaderElement parseHeader(CharArrayBuffer charArrayBuffer, ParserCursor parserCursor) throws ParseException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,41 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
@Deprecated
/* loaded from: classes5.dex */
public class NetscapeDraftSpec extends CookieSpecBase {
protected static final String EXPIRES_PATTERN = "EEE, dd-MMM-yyyy HH:mm:ss z";
public NetscapeDraftSpec(String[] strArr) {
throw new RuntimeException("Stub!");
}
public NetscapeDraftSpec() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Header> formatCookies(List<Cookie> list) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public Header getVersionHeader() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.CookieSpecFactory;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class NetscapeDraftSpecFactory implements CookieSpecFactory {
public NetscapeDraftSpecFactory() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpecFactory
public CookieSpec newInstance(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2109DomainHandler implements CookieAttributeHandler {
public RFC2109DomainHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,53 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2109Spec extends CookieSpecBase {
public RFC2109Spec(String[] strArr, boolean z) {
throw new RuntimeException("Stub!");
}
public RFC2109Spec() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.CookieSpecBase, org.apache.http.cookie.CookieSpec
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public List<Header> formatCookies(List<Cookie> list) {
throw new RuntimeException("Stub!");
}
public void formatParamAsVer(CharArrayBuffer charArrayBuffer, String str, String str2, int i) {
throw new RuntimeException("Stub!");
}
public void formatCookieAsVer(CharArrayBuffer charArrayBuffer, Cookie cookie, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpec
public Header getVersionHeader() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.CookieSpecFactory;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2109SpecFactory implements CookieSpecFactory {
public RFC2109SpecFactory() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpecFactory
public CookieSpec newInstance(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,24 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2109VersionHandler extends AbstractCookieAttributeHandler {
public RFC2109VersionHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.AbstractCookieAttributeHandler, org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965CommentUrlAttributeHandler implements CookieAttributeHandler {
public RFC2965CommentUrlAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965DiscardAttributeHandler implements CookieAttributeHandler {
public RFC2965DiscardAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,34 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965DomainAttributeHandler implements CookieAttributeHandler {
public RFC2965DomainAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
public boolean domainMatch(String str, String str2) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965PortAttributeHandler implements CookieAttributeHandler {
public RFC2965PortAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,50 @@
package org.apache.http.impl.cookie;
import java.util.List;
import org.apache.http.Header;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.util.CharArrayBuffer;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965Spec extends RFC2109Spec {
public RFC2965Spec() {
throw new RuntimeException("Stub!");
}
public RFC2965Spec(String[] strArr, boolean z) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.RFC2109Spec, org.apache.http.cookie.CookieSpec
public List<Cookie> parse(Header header, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.RFC2109Spec, org.apache.http.impl.cookie.CookieSpecBase, org.apache.http.cookie.CookieSpec
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.CookieSpecBase, org.apache.http.cookie.CookieSpec
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.RFC2109Spec
public void formatCookieAsVer(CharArrayBuffer charArrayBuffer, Cookie cookie, int i) {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.RFC2109Spec, org.apache.http.cookie.CookieSpec
public int getVersion() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.impl.cookie.RFC2109Spec, org.apache.http.cookie.CookieSpec
public Header getVersionHeader() {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,18 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.CookieSpec;
import org.apache.http.cookie.CookieSpecFactory;
import org.apache.http.params.HttpParams;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965SpecFactory implements CookieSpecFactory {
public RFC2965SpecFactory() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieSpecFactory
public CookieSpec newInstance(HttpParams httpParams) {
throw new RuntimeException("Stub!");
}
}

View File

@@ -0,0 +1,30 @@
package org.apache.http.impl.cookie;
import org.apache.http.cookie.Cookie;
import org.apache.http.cookie.CookieAttributeHandler;
import org.apache.http.cookie.CookieOrigin;
import org.apache.http.cookie.MalformedCookieException;
import org.apache.http.cookie.SetCookie;
@Deprecated
/* loaded from: classes5.dex */
public class RFC2965VersionAttributeHandler implements CookieAttributeHandler {
public RFC2965VersionAttributeHandler() {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void parse(SetCookie setCookie, String str) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public void validate(Cookie cookie, CookieOrigin cookieOrigin) throws MalformedCookieException {
throw new RuntimeException("Stub!");
}
@Override // org.apache.http.cookie.CookieAttributeHandler
public boolean match(Cookie cookie, CookieOrigin cookieOrigin) {
throw new RuntimeException("Stub!");
}
}