- 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
19 lines
757 B
Java
19 lines
757 B
Java
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;
|
|
}
|