HomeSort by relevance Sort by last modified time
    Searched defs:encoded (Results 26 - 50 of 85) sorted by null

12 3 4

  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
KeyStoreTestSupport.java 66 private byte[] encoded; field in class:KeyStoreTestSupport.SKey
68 public SKey(String type, byte[] encoded) {
70 this.encoded = encoded;
78 return encoded;
94 private byte[] encoded; field in class:KeyStoreTestSupport.MyPrivateKey
96 public MyPrivateKey(String algorithm, String format, byte[] encoded) {
99 this.encoded = encoded;
111 return encoded;
    [all...]
MyKeyPairGenerator1.java 99 private byte[] encoded; field in class:MyKeyPairGenerator1.PubKey
104 this.encoded = new byte[10];
116 return encoded;
125 private byte[] encoded; field in class:MyKeyPairGenerator1.PrivKey
130 this.encoded = new byte[10];
142 return encoded;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoItem.java 40 private byte[] encoded; field in class:DebugInfoItem
76 encoded = encode(addedTo.getFile(), null, null, null, false);
77 setWriteSize(encoded.length);
127 out.write(encoded);
140 * @return {@code non-null;} the encoded array
171 * @return {@code non-null;} the encoded array
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoItem.java 38 private byte[] encoded; field in class:DebugInfoItem
74 encoded = encode(addedTo.getFile(), null, null, null, false);
75 setWriteSize(encoded.length);
125 out.write(encoded);
138 * @return {@code non-null;} the encoded array
169 * @return {@code non-null;} the encoded array
DebugInfoDecoder.java 45 /** encoded debug info */
46 private final byte[] encoded; field in class:DebugInfoDecoder
87 * @param encoded encoded debug info
95 DebugInfoDecoder(byte[] encoded, int codesize, int regSize,
97 if (encoded == null) {
98 throw new NullPointerException("encoded == null");
101 this.encoded = encoded;
240 ByteInput bs = new ByteArrayByteInput(encoded);
    [all...]
  /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/net/tools/dump_cache/
url_to_filename_encoder.cc 93 char encoded[3]; local
131 encoded[0] = ch;
134 encoded[0] = kEscapeChar;
135 encoded[1] = ch / 16;
136 encoded[1] += (encoded[1] >= 10) ? 'A' - 10 : '0';
137 encoded[2] = ch % 16;
138 encoded[2] += (encoded[2] >= 10) ? 'A' - 10 : '0';
141 segment.append(encoded, encoded_len)
273 char encoded[3]; local
    [all...]
  /frameworks/base/core/java/android/content/pm/
VerifierDeviceIdentity.java 28 * implementation, the identity is represented as a 64-bit integer encoded to a
37 * Encoded size of a long (64-bit) into Base32. This format will end up
110 final char encoded[] = new char[LONG_SIZE + (LONG_SIZE / GROUP_SIZE)]; local
112 int index = encoded.length;
121 encoded[--index] = SEPARATOR;
130 encoded[--index] = alphabet[group];
133 return String.valueOf(encoded);
146 * This essentially does the reverse of the ENCODED alphabet above
  /libcore/luni/src/main/java/javax/crypto/
EncryptedPrivateKeyInfo.java 68 private volatile byte[] encoded; field in class:EncryptedPrivateKeyInfo
71 * Creates an {@code EncryptedPrivateKeyInfo} instance from its encoded
74 * @param encoded
75 * the encoded representation of this object
77 * if parsing the encoded representation fails.
79 * if {@code encoded} is {@code null}.
81 public EncryptedPrivateKeyInfo(byte[] encoded) throws IOException {
82 if (encoded == null) {
83 throw new NullPointerException("encoded == null");
85 this.encoded = new byte[encoded.length]
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerOutputStream.java 33 /** Encoded byte array */
34 public byte[] encoded; field in class:BerOutputStream
39 /** Current encoded length */
42 /** Current encoded content */
46 encoded[offset++] = (byte) tag; //FIXME long form?
55 encoded[offset] = (byte) (numOctets | 0x80);
61 encoded[numOffset - i] = (byte) eLen; //FIXME long value?
65 encoded[offset++] = (byte) length;
70 System.arraycopy(content, 0, encoded, offset, length);
77 encoded[offset] = (byte) bStr.unusedBits
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x501/
AttributeValue.java 42 public byte[] encoded; field in class:AttributeValue
44 public byte[] bytes; //FIXME remove??? bytes to be encoded
59 public AttributeValue(String hexString, byte[] encoded) {
63 this.encoded = encoded;
66 DerInputStream in = new DerInputStream(encoded);
85 public AttributeValue(String rawString, byte[] encoded, int tag) {
88 this.encoded = encoded;
132 encoded = isPrintableString(rawString
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 57 private byte[] encoded; field in class:DNParser
168 // encoded byte array must be not less then 4 c
199 // encoded byte array must be not less then 4 and must be even number
206 encoded = new byte[hexLen / 2];
207 for (int i = 0, p = beg + 1; i < encoded.length; p += 2, i++) {
208 encoded[i] = (byte) getByte(p);
408 atav.add(new AttributeTypeAndValue(attType, new AttributeValue(hexAV(), encoded)));
  /external/chromium/chrome/browser/history/
thumbnail_database.cc 268 bool encoded = gfx::JPEGCodec::Encode( local
275 if (encoded) {
  /external/chromium/chrome/browser/sync/sessions/
session_state.cc 81 bool encoded = variable
83 DCHECK(encoded); variable
  /external/dbus/dbus/
dbus-internals.c 635 * @param encoded string to append hex uuid to
640 DBusString *encoded)
644 return _dbus_string_hex_encode (&binary, 0, encoded, _dbus_string_get_length (encoded));
701 "UUID file '%s' contains %d bytes of hex-encoded data instead of %d",
729 DBusString encoded; local
731 if (!_dbus_string_init (&encoded))
739 if (!_dbus_uuid_encode (uuid, &encoded))
745 if (!_dbus_string_append_byte (&encoded, '\n'))
751 if (!_dbus_string_save_to_file (&encoded, filename, TRUE, error)
    [all...]
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-transport.c 993 const DBusString *encoded; local
1001 &encoded);
1004 encoded, &plaintext))
    [all...]
  /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);
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_wave.c 120 Uint8 *freeable, *encoded, *decoded; local
128 encoded = *audio_buf;
146 state[0]->hPredictor = *encoded++;
148 state[1]->hPredictor = *encoded++;
150 state[0]->iDelta = ((encoded[1]<<8)|encoded[0]);
151 encoded += sizeof(Sint16);
153 state[1]->iDelta = ((encoded[1]<<8)|encoded[0]);
154 encoded += sizeof(Sint16)
330 Uint8 *freeable, *encoded, *decoded; local
    [all...]
  /external/wpa_supplicant/
config_file.c 194 unsigned char *encoded = NULL, *nencoded; local
208 nencoded = os_realloc(encoded, encoded_len + len);
212 os_free(encoded);
215 encoded = nencoded;
216 os_memcpy(encoded + encoded_len, pos, len);
223 os_free(encoded);
229 os_free(encoded);
233 blob->data = base64_decode(encoded, encoded_len, &blob->len);
234 os_free(encoded);
647 unsigned char *encoded; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_file.c 195 unsigned char *encoded = NULL, *nencoded; local
209 nencoded = os_realloc(encoded, encoded_len + len);
213 os_free(encoded);
216 encoded = nencoded;
217 os_memcpy(encoded + encoded_len, pos, len);
224 os_free(encoded);
230 os_free(encoded);
234 blob->data = base64_decode(encoded, encoded_len, &blob->len);
235 os_free(encoded);
582 unsigned char *encoded; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 232 * values. The map can be restored by calling {@link #decodeMap}. The encoded String
278 * @param encoded an encoding of a map created by {@link #encodeMap}
279 * @return a map corresponding to the encoded values, never null
282 public static Map<String, List<String>> decodeMap(String encoded) {
285 if (encoded.length() > 0) {
287 int end = encoded.length();
295 char c = encoded.charAt(i);
308 if (i < end && encoded.charAt(i) == '{') {
315 c = encoded.charAt(i);
323 values.add(encoded.substring(valueBegin, valueEnd))
352 String encoded = encodeMap(mIncludes); local
381 String encoded = mProject.getPersistentProperty(CONFIG_INCLUDES); local
    [all...]
  /dalvik/dx/src/com/android/dx/gen/
DexGenerator.java 189 EncodedMethod encoded = method.toEncodedMethod(dexOptions); local
191 out.addDirectMethod(encoded);
193 out.addVirtualMethod(encoded);
197 EncodedField encoded = field.toEncodedField(); local
199 out.addStaticField(encoded, Constants.getConstant(field.staticValue));
201 out.addInstanceField(encoded);
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.cc 1188 bool encoded = false; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
config_file.c 196 unsigned char *encoded = NULL, *nencoded; local
210 nencoded = os_realloc(encoded, encoded_len + len);
214 os_free(encoded);
217 encoded = nencoded;
218 os_memcpy(encoded + encoded_len, pos, len);
225 os_free(encoded);
231 os_free(encoded);
235 blob->data = base64_decode(encoded, encoded_len, &blob->len);
236 os_free(encoded);
816 unsigned char *encoded; local
    [all...]

Completed in 2121 milliseconds

12 3 4