HomeSort by relevance Sort by last modified time
    Searched refs:encoded (Results 251 - 275 of 414) sorted by null

<<11121314151617

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
_stream_hybi.py 252 'Payload length is not encoded using the minimal number of '
253 'bytes (%d is encoded using %d bytes)',
  /external/libvorbis/doc/
02-bitpacking.tex 175 Reading from the beginning of the bytestream encoded in the above example:
213 each bytestream (encoded bitstream) must begin and end on a byte
214 boundary. Often, the encoded bitstream is not an integer number of
222 Attempting to read past the end of an encoded packet results in an
05-comment.tex 35 is limited to $2^{32}-1$ bytes. The vector length is encoded; the vector
38 length encoded in 32 bits). For example, the 1.0 release of libvorbis
87 0x3D is followed by 8 bit clean UTF-8 encoded value of the
207 The comment header is encoded as follows (as per Ogg's standard
  /libcore/crypto/src/test/java/org/conscrypt/
TrustManagerImplTest.java 40 byte[] encoded = cert.getPublicKey().getEncoded();
41 byte[] fingerprint = dgst.digest(encoded);
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 161 byte[] encoded = publicKey.getEncoded();
163 byte[] hexlifiedHash = Hex.encode(digest.digest(encoded));
  /libcore/luni/src/test/java/libcore/javax/net/ssl/
DefaultHostnameVerifierTest.java 303 X509Certificate parseCertificate(String encoded) throws Exception {
304 InputStream in = new ByteArrayInputStream(encoded.getBytes(StandardCharsets.US_ASCII));
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeUtility.java 104 String encoded = EncoderUtil.encodeIfNecessary(s, EncoderUtil.Usage.TEXT_TOKEN, local
107 return fold(encoded, usedCharacters);
116 * encoded words; see <a href='http://www.faqs.org/rfcs/rfc2047.html'>RFC
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatLfnDirectory.java 286 FatDirectoryEntry[] encoded = currentEntry.compactForm(); local
287 dest.addAll(Arrays.asList(encoded));
  /external/chromium_org/third_party/simplejson/
__init__.py 193 :class:`tuple` subclasses with ``_asdict()`` methods will be encoded
197 :class:`tuple` (and subclasses) will be encoded as JSON arrays.
200 or lower than -2**53 will be encoded as strings. This is to avoid the
290 :class:`tuple` subclasses with ``_asdict()`` methods will be encoded
294 :class:`tuple` (and subclasses) will be encoded as JSON arrays.
297 or lower than -2**53 will be encoded as strings. This is to avoid the
  /external/openssh/
ssh-keygen.c 513 char encoded[8096]; local
519 encoded[0] = '\0';
538 strlcat(encoded, line, sizeof(encoded));
540 len = strlen(encoded);
542 (encoded[len-1] == '=') &&
543 (encoded[len-2] == '=') &&
544 (encoded[len-3] == '='))
545 encoded[len-3] = '\0';
546 blen = uudecode(encoded, blob, sizeof(blob))
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c 387 unsigned char *encoded; local
389 encoded = base64_encode(wpabuf_head(cert), wpabuf_len(cert), NULL);
390 if (encoded == NULL)
393 "-----END CERTIFICATE-----\n\n", subject, encoded);
394 os_free(encoded);
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/
screenshot_taker.cc 73 std::string encoded; local
74 base::Base64Encode(png_data->data(), &encoded);
83 html += encoded;
  /frameworks/av/media/libstagefright/id3/
ID3.cpp 105 bool ID3::ParseSyncsafeInteger(const uint8_t encoded[4], size_t *x) {
108 if (encoded[i] & 0x80) {
112 *x = ((*x) << 7) | encoded[i];
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
_stream_hybi.py 252 'Payload length is not encoded using the minimal number of '
253 'bytes (%d is encoded using %d bytes)',
  /external/chromium_org/net/cert/
x509_certificate_openssl.cc 211 // (note: the DER-encoded data in |der_cache| is owned by |cert|, callers should
274 // re-encoded the integer back into DER, which is what the interface
383 std::string* encoded) {
387 encoded->assign(reinterpret_cast<const char*>(der_cache.data),
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 270 encoded = quote + re.sub(_escape, r'\\\1', argument) + quote
272 return encoded
  /external/chromium_org/v8/test/mjsunit/
mirror-number.js 56 // NaN and Infinity values are encoded as strings.
  /external/chromium_org/v8/tools/
csvparser.js 51 * Parses a line of CSV-encoded values. Returns an array of fields.
  /external/v8/test/mjsunit/
mirror-number.js 56 // NaN and Infinity values are encoded as strings.
  /external/v8/tools/
csvparser.js 51 * Parses a line of CSV-encoded values. Returns an array of fields.
  /external/wpa_supplicant_8/src/wps/
wps_er.c 900 unsigned char *encoded; local
905 encoded = base64_encode(wpabuf_head(msg), wpabuf_len(msg),
907 if (encoded == NULL)
910 encoded = NULL;
916 os_free(encoded);
940 if (encoded) {
942 arg_name, (char *) encoded, arg_name);
943 os_free(encoded);
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
X509CertificateObject.java 571 private byte[] encoded; field in class:X509CertificateObject
579 if (encoded == null) {
580 encoded = c.getEncoded(ASN1Encoding.DER);
582 return encoded;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CertificateObject.java 569 private byte[] encoded; field in class:X509CertificateObject
577 if (encoded == null) {
578 encoded = c.getEncoded(ASN1Encoding.DER);
580 return encoded;
  /external/chromium/net/base/
x509_certificate.h 96 // The data contains a single DER-encoded certificate, or a PEM-encoded
101 // The data contains a sequence of one or more PEM-encoded, DER
108 // The data may further be encoded using PEM, specifying block names of
144 // Create an X509Certificate from a chain of DER encoded certificates. The
153 // Create an X509Certificate from the DER-encoded representation.
291 // Returns the certificate chain in DER-encoded form, using the application DER
323 // This method returns the DER encoded certificate.
324 // If the return value is true then the DER encoded certificate is available.
325 // The content of the DER encoded certificate is written to |encoded|
    [all...]
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/
nacltest.js 27 function decodeURIArgs(encoded) {
29 if (encoded.length > 0) {
30 var pairs = encoded.replace(/\+/g, ' ').split('&');
59 var encoded = window.location.search.substring(1);
60 var args = decodeURIArgs(encoded);
79 // Logs test results to the server using URL-encoded RPC.
91 // Called if URL-encoded RPC gets a 404, can't find the server, etc.
117 // Performs a URL-encoded RPC call, given a function name and a dictionary

Completed in 1488 milliseconds

<<11121314151617