HomeSort by relevance Sort by last modified time
    Searched refs:encoding (Results 76 - 100 of 567) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Validity.java 31 * The class encapsulates the ASN.1 DER encoding/decoding work
51 private byte[] encoding; field in class:Validity
84 if (encoding == null) {
85 encoding = ASN1.encode(this);
87 return encoding;
AlgorithmIdentifier.java 36 * The class encapsulates the ASN.1 DER encoding/decoding work
58 // the encoding of AlgorithmIdentifier value
59 private byte[] encoding; field in class:AlgorithmIdentifier
82 // @param encoding: byte[]
85 byte[] encoding) {
88 this.encoding = encoding;
128 if (encoding == null) {
129 encoding = ASN1.encode(this);
131 return encoding;
    [all...]
AuthorityKeyIdentifier.java 36 * The class encapsulates the ASN.1 DER encoding/decoding work
68 public static AuthorityKeyIdentifier decode(byte[] encoding)
71 (AuthorityKeyIdentifier) ASN1.decode(encoding);
72 aki.encoding = encoding;
77 if (encoding == null) {
78 encoding = ASN1.encode(this);
80 return encoding;
Certificate.java 33 * The class encapsulates the ASN.1 DER encoding/decoding work
57 private byte[] encoding; field in class:Certificate
80 // @param encoding: byte[]
84 byte[] signatureValue, byte[] encoding) {
86 this.encoding = encoding;
133 if (encoding == null) {
134 encoding = Certificate.ASN1.encode(this);
136 return encoding;
CertificateList.java 33 * The class encapsulates the ASN.1 DER encoding/decoding work
57 private byte[] encoding; field in class:CertificateList
80 // @param encoding: byte[]
84 byte[] signatureValue, byte[] encoding) {
86 this.encoding = encoding;
128 if (encoding == null) {
129 encoding = CertificateList.ASN1.encode(this);
131 return encoding;
SubjectPublicKeyInfo.java 38 * The class encapsulates the ASN.1 DER encoding/decoding work
63 private byte[] encoding; field in class:SubjectPublicKeyInfo
91 // @param encoding: byte[]
95 byte[] encoding) {
99 this.encoding = encoding;
131 if (encoding == null) {
132 encoding = ASN1.encode(this);
134 return encoding;
IssuingDistributionPoint.java 67 public static IssuingDistributionPoint decode(byte[] encoding)
70 (IssuingDistributionPoint) ASN1.decode(encoding);
71 idp.encoding = encoding;
151 if (encoding == null) {
152 encoding = ASN1.encode(this);
154 return encoding;
207 idp.encoding = in.getEncoded();
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon13609
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon13963
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon14317
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon14725
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon15099
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/hdlc/
ioctl.h 29 unsigned short encoding; member in struct:__anon15512
  /external/chromium/third_party/icu/source/test/intltest/
textfile.cpp 17 // If the symbol CCP is defined, then the 'name' and 'encoding'
23 name(0), encoding(0),
37 encoding = uprv_malloc(uprv_strlen(_encoding) + 1);
38 if (name == 0 || encoding == 0) {
43 uprv_strcpy(encoding, _encoding);
46 encoding = (char*) _encoding;
72 uprv_free(encoding);
101 UnicodeString str(buffer, encoding);
  /external/icu4c/test/intltest/
textfile.cpp 17 // If the symbol CCP is defined, then the 'name' and 'encoding'
23 name(0), encoding(0),
37 encoding = uprv_malloc(uprv_strlen(_encoding) + 1);
38 if (name == 0 || encoding == 0) {
43 uprv_strcpy(encoding, _encoding);
46 encoding = (char*) _encoding;
72 uprv_free(encoding);
101 UnicodeString str(buffer, encoding);
  /libcore/luni/src/main/java/java/net/
URLDecoder.java 53 * x-www-form-urlencoded} MIME content type using the specified encoding
63 * @param encoding
64 * the encoding scheme to be used.
67 * if the specified encoding scheme is invalid.
69 public static String decode(String s, String encoding) throws UnsupportedEncodingException {
70 if (encoding == null) {
73 if (encoding.isEmpty()) {
74 throw new UnsupportedEncodingException(encoding);
90 charset = Charset.forName(encoding);
93 encoding).initCause(e))
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/pkcs8/
PrivateKeyInfo.java 33 * The class implements the ASN.1 DER encoding and decoding of the PKCS#8
61 private byte[] encoding; field in class:PrivateKeyInfo
74 List attributes, byte[] encoding) {
76 this.encoding = encoding;
112 if (encoding == null) {
113 encoding = ASN1.encode(this);
115 return encoding;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificate.java 43 // MyCertificate encoding
44 private final byte[] encoding; field in class:MyCertificate
52 * @param encoding
54 public MyCertificate(String type, byte[] encoding) {
57 this.encoding = encoding;
61 * Returns <code>MyCertificate</code> encoding
65 return encoding.clone();
  /external/libxml2/include/libxml/
HTMLparser.h 119 const char *encoding,
124 const char *encoding);
127 const char *encoding,
132 const char *encoding);
196 const char *encoding,
200 const char *encoding,
206 const char *encoding,
211 const char *encoding,
218 const char *encoding,
224 const char *encoding,
    [all...]
  /external/apache-http/src/org/apache/http/impl/entity/
LaxContentLengthStrategy.java 70 * 2.If a Transfer-Encoding header field (section 14.41) is present and has any value other
78 * Transfer-Encoding
82 * Transfer-Encoding header field and a Content-Length header field,
117 * Transfer-coding values are used to indicate an encoding transformation that
136 * the TE header field (section 14.39) and in the Transfer-Encoding header field (section 14.41).
146 * <h>14.41 Transfer-Encoding</h>
148 * The Transfer-Encoding general-header field indicates what (if any) type of transformation has
154 * Transfer-Encoding = "Transfer-Encoding" ":" 1#transfer-coding
158 * the order in which they were applied. Additional information about the encoding parameters
211 String encoding = encodings[i].getName(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingVector.java 63 StringBuffer encoding = new StringBuffer(); local
72 nv.encode( encoding );
77 encoding.append(SEMICOLON).append(
83 encoding.append(SEMICOLON).append(ParameterNamesIms.TERM_IOI)
88 encoding.append(SEMICOLON).append(ParameterNamesIms.ORIG_IOI)
91 return encoding.toString();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
KeyStoreTestSupport.java 119 private final byte[] encoding; field in class:KeyStoreTestSupport.MCertificate
123 public MCertificate(String type, byte[] encoding) {
125 this.encoding = encoding;
130 return encoding.clone();
155 return encoding;
  /external/webkit/WebKit/chromium/src/
WebSearchableFormData.cpp 52 // Gets the encoding for the form.
53 void GetFormEncoding(const HTMLFormElement* form, TextEncoding* encoding)
60 *encoding = TextEncoding(*i);
61 if (encoding->isValid())
65 *encoding = frame ? TextEncoding(frame->loader()->encoding()) : Latin1Encoding();
142 // elements is added to enc_string and the encoding used is set in
146 TextEncoding encoding; local
147 GetFormEncoding(form, &encoding);
148 if (!encoding.isValid())
240 String encoding; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Encodable.java 16 * Return the default BER or DER encoding for this object.
19 * @throws IOException on encoding error.
33 * Return either the default for "BER" or a DER encoding if "DER" is specified.
35 * @param encoding name of encoding to use.
37 * @throws IOException on encoding error.
40 String encoding)
43 if (encoding.equals(DER))
57 * Return the DER encoding of the object, null if the DER encoding can not be made
    [all...]
  /external/webkit/WebCore/platform/text/mac/
TextCodecMac.h 64 TECConverterWrapper() : converter(0), encoding(invalidEncoding) { }
68 TECTextEncodingID encoding; member in struct:WebCore::TECConverterWrapper

Completed in 477 milliseconds

1 2 34 5 6 7 8 91011>>