HomeSort by relevance Sort by last modified time
    Searched refs:keys (Results 1 - 25 of 550) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/storage/domstorage/localstorage/resources/
clearLocalStorage.js 3 var keys = new Array();
5 keys.push(key);
7 for (key in keys)
8 localStorage.removeItem(keys[key]);
  /external/webkit/LayoutTests/storage/domstorage/sessionstorage/resources/
clearSessionStorage.js 3 var keys = new Array();
5 keys.push(key);
7 for (key in keys)
8 sessionStorage.removeItem(keys[key]);
  /external/webkit/WebCore/platform/android/
SSLKeyGeneratorAndroid.cpp 33 void getSupportedKeySizes(Vector<String>& keys)
35 keys = PlatformBridge::getSupportedKeyStrengthList();
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
ExtendedKeyUsage.java 46 private List keys; field in class:ExtendedKeyUsage
52 public ExtendedKeyUsage(List keys) {
53 this.keys = keys;
68 if (keys == null) {
69 keys = (List) ASN1.decode(getEncoded());
71 return keys;
79 encoding = ASN1.encode(keys);
90 if (keys == null) {
92 keys = getExtendedKeyUsage()
    [all...]
  /bootable/bootloader/legacy/libboot/
gpio_keypad.c 50 unsigned long long keys; local
54 keys = 0;
68 keys = (keys << 1) | (gpio_get(keypad->input_gpios[in]) ^ npolarity);
69 if(((unsigned)(keypad->state >> shift) ^ (unsigned)keys) & 1) {
75 // shift, mapped_key, keys & 1);
77 key_changed(mapped_key, keys & 1);
85 if(keys != keypad->state) {
86 keypad->state = keys;
87 //dprintf("gpio_keypad_scan_keys: %x %x\n", (unsigned long)(keys >> 32), (unsigned long)keys)
    [all...]
  /external/webkit/WebKitTools/Scripts/
report-include-statistics 71 for my $include (keys %{ $includes{$file} }) {
74 for my $i (keys %{ $totalIncludes{$include} }) {
81 for my $file (keys %includes) {
86 for my $file (keys %sources) {
87 for my $include (keys %{ $totalIncludes{$file} }) {
92 for my $file (sort mostincludedcmp keys %includes) {
95 my $numIncludes = keys %{ $includes{$file} };
96 my $numTotalIncludes = keys %{ $totalIncludes{$file} };
109 my $ta = keys %{ $totalIncludes{$filea} };
110 my $tb = keys %{ $totalIncludes{$fileb} }
    [all...]
find-extra-includes 69 for my $include (keys %{ $includes{$file} }) {
72 for my $i (keys %{ $totalIncludes{$include} }) {
82 for my $include (keys %{ $includes{$file} }) {
85 for my $i1 (sort keys %{ $includes{$file} }) {
86 for my $i2 (keys %{ $includes{$file} }) {
100 for my $file (sort keys %includes) {
  /libcore/luni/src/test/java/tests/security/interfaces/
DSAPublicKeyTest.java 50 KeyPair keys = null; local
59 keys = keyGen.generateKeyPair();
60 priv = (DSAPrivateKey) keys.getPrivate();
61 publ = (DSAPublicKey) keys.getPublic();
67 keys = keyGen.generateKeyPair();
68 priv = (DSAPrivateKey) keys.getPrivate();
69 publ = (DSAPublicKey) keys.getPublic();
  /external/icu4c/samples/legacy/
legacy.cpp 25 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxLen, uint8_t keys[][32]);
26 extern "C" void test_legacy(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]);
49 void printKeys(const char *comment, uint8_t keys[][32], int32_t keySize) {
54 currentKey = keys[i];
88 static uint8_t keys[4][32]; local
96 test_current(uTest, 4, 5, keys);
98 printKeys("Current keys", keys, 4);
104 test_legacy(uTest, 4, 5, keys);
106 printKeys("Legacy keys", keys, 4)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
ikev2_common.c 41 { ENCR_AES_CBC, 16, 16 }, /* only 128-bit keys supported for now */
438 struct ikev2_keys *keys, int initiator,
447 const u8 *SK_p = initiator ? keys->SK_pi : keys->SK_pr;
461 if (ikev2_prf_hash(prf->id, SK_p, keys->SK_prf_len,
496 struct ikev2_keys *keys, int initiator,
507 const u8 *SK_e = initiator ? keys->SK_ei : keys->SK_er;
508 const u8 *SK_a = initiator ? keys->SK_ai : keys->SK_ar
    [all...]
eap_ikev2_common.c 24 int eap_ikev2_derive_keymat(int prf, struct ikev2_keys *keys,
33 if (keys->SK_d == NULL || i_nonce == NULL || r_nonce == NULL)
43 if (ikev2_prf_plus(prf, keys->SK_d, keys->SK_d_len, nonces, nlen,
84 int eap_ikev2_validate_icv(int integ_alg, struct ikev2_keys *keys,
91 const u8 *SK_a = initiator ? keys->SK_ai : keys->SK_ar;
112 if (ikev2_integ_hash(integ_alg, SK_a, keys->SK_integ_len,
eap_ikev2_common.h 33 int eap_ikev2_derive_keymat(int prf, struct ikev2_keys *keys,
38 int eap_ikev2_validate_icv(int integ_alg, struct ikev2_keys *keys,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
MiniKeyboardKeyDetector.java 41 final Key[] keys = getKeys(); local
46 final int keyCount = keys.length;
48 final Key key = keys[i];
56 allKeys[0] = keys[closestKeyIndex].codes[0];
  /external/openssl/crypto/lhash/
num.pl 13 @a=sort {$a <=> $b } keys %num;
  /frameworks/base/tests/CoreTests/android/core/
HashtableTest.java 72 String[] keys = sKeys; local
75 value = hTable.get(keys[i]);
76 value = hTable.get(keys[i]);
77 value = hTable.get(keys[i]);
78 value = hTable.get(keys[i]);
79 value = hTable.get(keys[i]);
80 value = hTable.get(keys[i]);
81 value = hTable.get(keys[i]);
82 value = hTable.get(keys[i]);
83 value = hTable.get(keys[i])
163 String[] keys = sKeys; local
233 Enumeration<String> keys; local
    [all...]
  /external/v8/test/mjsunit/third_party/
object-keys.js 32 // Based on LayoutTests/fast/js/Object-keys.html
34 assertThrows(function () { Object.keys(2) }, TypeError);
35 assertThrows(function () { Object.keys("foo") }, TypeError);
36 assertThrows(function () { Object.keys(null) }, TypeError);
37 assertThrows(function () { Object.keys(undefined) }, TypeError);
39 assertEquals(Object.keys({}), []);
40 assertEquals(Object.keys({a:null}), ['a']);
41 assertEquals(Object.keys({a:null, b:null}), ['a', 'b']);
42 assertEquals(Object.keys({b:null, a:null}), ['b', 'a']);
43 assertEquals(Object.keys([]), []);
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
ContactLocaleUtilsTest.java 76 Iterator<String> keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, local
78 verifyKeys(keys, CHINESE_NAME_KEY);
80 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_LATIN_MIX_NAME_1,
82 verifyKeys(keys, CHINESE_LATIN_MIX_NAME_1_KEY);
84 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_LATIN_MIX_NAME_2,
86 verifyKeys(keys, CHINESE_LATIN_MIX_NAME_2_KEY);
113 Iterator<String> keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, local
115 verifyKeys(keys, CHINESE_NAME_KEY);
116 keys = mContactLocaleUtils.getNameLookupKeys(CHINESE_NAME, FullNameStyle.CJK);
117 verifyKeys(keys, CHINESE_NAME_KEY)
    [all...]
  /external/dbus/dbus/
dbus-keyring.c 42 * The secret keys are not kept in locked memory, and are written to a
45 * discarded). Also, the keys are not sent over the wire.
65 * use keys for a short time.
80 * Maximum number of keys in the keyring before
118 DBusKey *keys; /**< Keys loaded from the file */ member in struct:DBusKeyring
119 int n_keys; /**< Number of keys */
144 keyring->keys = NULL;
162 free_keys (DBusKey *keys,
172 _dbus_string_free (&keys[i].secret)
297 DBusKey *keys; local
410 DBusKey *keys; local
    [all...]
  /external/webkit/WebCore/css/
WebKitCSSKeyframeRule.h 60 void getKeys(Vector<float>& keys) const { parseKeyString(m_key, keys); }
75 static void parseKeyString(const String& s, Vector<float>& keys);
80 String m_key; // comma separated list of keys
WebKitCSSKeyframeRule.cpp 68 void WebKitCSSKeyframeRule::parseKeyString(const String& s, Vector<float>& keys)
70 keys.clear();
90 keys.clear();
94 keys.append(key);
  /libcore/luni/src/main/java/org/apache/harmony/security/
SystemScope.java 47 private Hashtable keys = new Hashtable(); field in class:SystemScope
95 return (Identity) keys.get(key);
112 if (key != null && keys.containsKey(key)) {
118 keys.put(key, identity);
144 contains = contains || keys.containsKey(key);
145 keys.remove(key);
  /external/webkit/JavaScriptCore/wtf/
ThreadSpecificWin.cpp 40 static DWORD keys[kMaxTlsKeySize]; local
41 return keys;
  /external/webkit/WebCore/html/
HTMLKeygenElement.cpp 47 Vector<String> keys; local
48 getSupportedKeySizes(keys);
50 Vector<String>::const_iterator end = keys.end();
51 for (Vector<String>::const_iterator it = keys.begin(); it != end; ++it) {
  /external/webkit/WebKitTools/QtLauncher/
utils.cpp 41 QString formatKeys(QList<QString> keys)
44 for (int i = 0; i < keys.count() - 1; i++)
45 result.append(keys.at(i) + "|");
46 result.append(keys.last());
  /hardware/libhardware_legacy/include/hardware_legacy/
AudioHardwareBase.h 45 virtual String8 getParameters(const String8& keys);

Completed in 320 milliseconds

1 2 3 4 5 6 7 8 91011>>