HomeSort by relevance Sort by last modified time
    Searched refs:encoded (Results 101 - 125 of 203) sorted by null

1 2 3 45 6 7 8 9

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 215 byte[] encoded) {
216 super(type, algorithm, format, encoded);
  /external/chromium/net/base/
ssl_cipher_suite_names.cc 27 uint16 cipher_suite, encoded; member in struct:CipherSuite
330 const int key_exchange = cs->encoded >> 7;
331 const int cipher = (cs->encoded >> 3) & 0xf;
332 const int mac = cs->encoded & 0x7;
  /external/chromium/crypto/
rsa_private_key_win.cc 32 // The size is encoded as the upper 16 bits of the flags. :: sigh ::.
214 scoped_array<BYTE> encoded(new BYTE[encoded_length]);
217 reinterpret_cast<CERT_PUBLIC_KEY_INFO*>(key_info.get()), encoded.get(),
224 output->push_back(encoded[i]);
  /frameworks/base/core/java/com/android/internal/net/
DNParser.java 172 // encoded byte array must be not less then 4 c
204 // encoded byte array must be not less then 4 and must be even number
211 byte[] encoded = new byte[hexLen / 2];
212 for (int i = 0, p = beg + 1; i < encoded.length; p += 2, i++) {
213 encoded[i] = (byte) getByte(p);
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeTypeAndValue.java 349 if (av.encoded != null) {
350 out.content = av.encoded;
362 if (av.encoded != null) {
363 out.length = av.encoded.length;
384 if (av.encoded != null) {
  /external/bluetooth/glib/gio/
gdummyfile.c 77 const char *encoded,
692 const char *encoded,
699 end = encoded + strlen (encoded);
701 while ((c = *encoded) != 0)
706 encoded++;
713 encoded++;
732 /* userinfo = *( unreserved / pct-encoded / sub-delims / ":" ) */
  /external/dbus/dbus/
dbus-string-util.c 147 DBusString encoded; local
157 if (!_dbus_string_init (&encoded))
166 if (!_dbus_string_hex_encode (&orig, 0, &encoded, 0))
169 if (!_dbus_string_hex_decode (&encoded, 0, &end, &decoded, 0))
172 _dbus_assert (_dbus_string_get_length (&encoded) == end);
178 printf ("Original string %d bytes encoded %d bytes decoded %d bytes\n",
180 _dbus_string_get_length (&encoded),
189 _dbus_string_free (&encoded);
dbus-auth.c 85 DBusString *encoded);
673 /* We are expecting a response which is the hex-encoded client
676 * hex-encoded.
1208 DBusString encoded; local
    [all...]
  /external/bluetooth/bluez/audio/
liba2dp.c 138 int samples; /* Number of encoded samples */
1189 int encoded; local
1207 encoded = sbc_encode(&(data->sbc), src, codesize,
1211 if (encoded <= 0) {
1212 ERR("Encoding error %d", encoded);
1216 encoded, codesize, written);
1218 src += encoded;
1221 data->samples += encoded;
1222 data->nsamples += encoded;
1235 ret += encoded;
    [all...]
  /external/protobuf/python/google/protobuf/internal/
encoder.py 51 * Every field's tag is encoded to bytes at startup, since it can't change at
205 # a parameter and returns its encoded size.
579 encoded = element.encode('utf-8')
581 local_EncodeVarint(write, local_len(encoded))
582 write(encoded)
586 encoded = value.encode('utf-8')
588 local_EncodeVarint(write, local_len(encoded))
589 return write(encoded)
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
SequenceOfTest.java 100 (byte[]) testcases[i][1], out.encoded));
UTCTimeTest.java 120 out.encoded)); //encoded
BitStringTest.java 97 (byte[]) validBitstring[i][1], out.encoded));
243 (byte[]) testcaseBoolean[i][1], out.encoded));
  /external/javasqlite/src/main/java/SQLite/
StringEncoder.java 33 * @param a the byte array to be encoded. A null reference is handled as
35 * @return the encoded bytes as a string. When an empty array is
70 // construct encoded output
101 * a valid encoded string for this encoder.
223 * @param a the byte array to be encoded. A null reference is handled as
225 * @return the encoded bytes as a string.
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPath.java 178 throw new CertificateException("input stream does not contain a ASN1 SEQUENCE while reading PkiPath encoded data to load CertPath");
186 byte[] encoded = element.getEncoded(ASN1Encodable.DER);
188 new ByteArrayInputStream(encoded)));
233 * Returns the encoded form of this certification path, using
236 * @return the encoded bytes
255 * Returns the encoded form of this certification path, using
259 * @return the encoded bytes
317 // throw new CertificateEncodingException("can't encode certificate for PEM encoded path");
341 * Return a DERObject containing the encoded certificate.
343 * @param cert the X509Certificate object to be encoded
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
X509V2AttributeCertificate.java 70 byte[] encoded)
73 this(new ByteArrayInputStream(encoded));
  /external/chromium/chrome/browser/sync/util/
user_settings_unittest.cc 243 const std::string encoded = browser_sync::APEncode(test); local
244 const std::string decoded = browser_sync::APDecode(encoded);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 305 * Decodes a URL-encoded string into key/value pairs.
306 * @param {String} encoded An URL-encoded string.
308 * in the encoded string.
310 ChromeExOAuth.formDecode = function(encoded) {
311 var params = encoded.split("&");
368 * Decodes a string that has been encoded according to RFC3986.
386 * @return {String} The URL with URL-encoded versions of the key and value
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 305 * Decodes a URL-encoded string into key/value pairs.
306 * @param {String} encoded An URL-encoded string.
308 * in the encoded string.
310 ChromeExOAuth.formDecode = function(encoded) {
311 var params = encoded.split("&");
368 * Decodes a string that has been encoded according to RFC3986.
386 * @return {String} The URL with URL-encoded versions of the key and value
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 305 * Decodes a URL-encoded string into key/value pairs.
306 * @param {String} encoded An URL-encoded string.
308 * in the encoded string.
310 ChromeExOAuth.formDecode = function(encoded) {
311 var params = encoded.split("&");
368 * Decodes a string that has been encoded according to RFC3986.
386 * @return {String} The URL with URL-encoded versions of the key and value
  /external/nist-sip/java/gov/nist/javax/sip/stack/
ServerLog.java 375 String encoded = (logContent ? message.encode() : message.encodeMessage()); local
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
OpenSSLSessionImpl.java 223 byte[] encoded = peerCertificates[i].getEncoded();
224 chain[i] = javax.security.cert.X509Certificate.getInstance(encoded);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/logcat/
LogCatFilterSettingsSerializer.java 30 * given the encoded string.
52 * @return an encoded string that can be saved in Eclipse preference store. The encoded string
82 * Decode an encoded string representing the settings of a list of logcat
84 * @param pref encoded preference string
  /development/tools/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 501 // Return the size of the encoded image data (does not include size of PKM header).
510 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
521 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
553 etc1_encode_block(block, mask, encoded);
554 memcpy(pOut, encoded, sizeof(encoded));
555 pOut += sizeof(encoded);
562 // pIn - pointer to encoded data.
  /frameworks/base/opengl/libs/ETC1/
etc1.cpp 501 // Return the size of the encoded image data (does not include size of PKM header).
510 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
521 etc1_byte encoded[ETC1_ENCODED_BLOCK_SIZE]; local
553 etc1_encode_block(block, mask, encoded);
554 memcpy(pOut, encoded, sizeof(encoded));
555 pOut += sizeof(encoded);
562 // pIn - pointer to encoded data.

Completed in 1676 milliseconds

1 2 3 45 6 7 8 9