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

1 2 3 4 5 67 8 91011>>

  /external/webkit/WebKitTools/Scripts/
do-file-rename 106 for my $from (keys %renames) {
  /external/wpa_supplicant/
radius.c 903 struct radius_ms_mppe_keys *keys; local
908 keys = wpa_zalloc(sizeof(*keys));
909 if (keys == NULL)
916 keys->send = decrypt_ms_key(key, keylen,
919 &keys->send_len);
927 keys->recv = decrypt_ms_key(key, keylen,
930 &keys->recv_len);
934 return keys;
944 struct radius_ms_mppe_keys *keys; local
    [all...]
tlsv1_client.h 42 int tlsv1_client_get_keys(struct tlsv1_client *conn, struct tls_keys *keys);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_tls_common.c 250 * @label: Label string for deriving the keys, e.g., "client EAP encryption"
263 struct tls_keys keys; local
280 if (tls_connection_get_keys(sm->ssl_ctx, data->conn, &keys))
283 if (keys.client_random == NULL || keys.server_random == NULL ||
284 keys.master_key == NULL)
287 rnd = os_malloc(keys.client_random_len + keys.server_random_len);
290 os_memcpy(rnd, keys.client_random, keys.client_random_len)
    [all...]
ikev2.h 42 struct ikev2_keys keys; member in struct:ikev2_responder_data
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
ikev2.h 41 struct ikev2_keys keys; member in struct:ikev2_initiator_data
  /external/wpa_supplicant_6/wpa_supplicant/src/radius/
radius.c 907 struct radius_ms_mppe_keys *keys; local
912 keys = os_zalloc(sizeof(*keys));
913 if (keys == NULL)
920 keys->send = decrypt_ms_key(key, keylen,
923 &keys->send_len);
931 keys->recv = decrypt_ms_key(key, keylen,
934 &keys->recv_len);
938 return keys;
948 struct radius_ms_mppe_keys *keys; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/tls/
tlsv1_client.h 45 int tlsv1_client_get_keys(struct tlsv1_client *conn, struct tls_keys *keys);
tlsv1_server.h 41 int tlsv1_server_get_keys(struct tlsv1_server *conn, struct tls_keys *keys);
  /frameworks/base/core/jni/
android_text_KeyCharacterMap.cpp 107 Vector<int32_t> keys; local
109 bool success = kmap->getEvents(chars, len, &keys, &modifiers);
114 size_t N = keys.size();
122 v |= keys[i];
  /frameworks/base/services/audioflinger/
AudioHardwareStub.cpp 155 String8 AudioStreamOutStub::getParameters(const String8& keys)
157 AudioParameter param = AudioParameter(keys);
201 String8 AudioStreamInStub::getParameters(const String8& keys)
203 AudioParameter param = AudioParameter(keys);
  /libcore/luni/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 171 // Check for ERROR keys in the hashtable, and print report
200 * the hash as keys with a brief description of the current state
263 for (Enumeration keys = h.keys();
264 keys.hasMoreElements();
268 Object key = keys.nextElement();
304 /** Prefixed to hash keys that signify serious problems. */
313 /** Prefixed to hash keys that signify version numbers. */
316 /** Prefixed to hash keys that signify .jars found in classpath. */
367 for (Enumeration keys = subhash.keys();
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 49 * Other constants defined in this class are the non-standard property keys
51 * that is used to create or configure a serializer. Here are the non-standard keys:
114 // Some special Xalan keys.
442 Enumeration keys = ((Properties) props.clone()).keys(); local
443 while (keys.hasMoreElements())
445 String key = (String) keys.nextElement();
  /libcore/luni/src/main/java/org/apache/xml/serializer/utils/
StringToIntTable.java 25 * number strings being keys, and the odd number strings being values.
188 * Return array of keys in the table.
192 public final String[] keys() method in class:StringToIntTable
  /libcore/luni/src/main/java/org/apache/xml/utils/
StringToIntTable.java 25 * number strings being keys, and the odd number strings being values.
181 * Return array of keys in the table.
185 public final String[] keys() method in class:StringToIntTable
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
DictionaryTest.java 51 public Enumeration keys() { method in class:DictionaryTest.Mock_Dictionary
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MyKeyStore.java 47 private Hashtable<String, Object> Keys = new Hashtable<String, Object>();
65 if (Keys.containsKey(alias)) {
66 return (Key) Keys.get(alias);
97 Keys.put(alias, key);
117 Keys.put(alias, keyK);
132 if (Keys.containsKey(alias)) {
133 Keys.remove(alias);
147 if (Keys.containsKey(alias)) {
157 return (Keys.size() + Cert.size());
161 if (Keys.containsKey(alias))
    [all...]
  /frameworks/base/core/java/android/view/
KeyCharacterMap.java 30 * Describes the keys provided by a device and their associated labels.
117 // Ignore caps lock on keys where alt and shift have the same effect.
250 long[] keys = getEvents_native(mPointer, chars); local
251 if (keys == null) {
256 int len = keys.length*2;
257 int N = keys.length;
259 int mods = (int)(keys[i] >> 32);
277 int mods = (int)(keys[i] >> 32);
299 int key = (int)(keys[i]);
364 * Queries the framework about whether any physical keys exist on th
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
HashtableTest.java 202 Enumeration keys = h.keys(); local
204 && !(keys.hasMoreElements()));
223 Enumeration org = htfull.keys();
224 Enumeration cpy = h.keys();
233 assertTrue("Copy has more keys than original", !cpy.hasMoreElements());
329 assertEquals("All keys not retrieved", 10, ht10.size());
533 * @tests java.util.Hashtable#keys()
538 method = "keys",
542 // Test for method java.util.Enumeration java.util.Hashtable.keys()
544 Enumeration keys = ht10.keys(); local
    [all...]
  /external/bluetooth/glib/tests/
hash-test.c 390 GList *keys, *values; local
402 keys = g_hash_table_get_keys (hash_table);
403 if (!keys)
410 keys_len = g_list_length (keys);
415 g_list_free (keys);
  /external/guava/src/com/google/common/collect/
ImmutableMap.java 32 * order. Does not permit null keys or values.
81 * @throws IllegalArgumentException if duplicate keys are provided
90 * @throws IllegalArgumentException if duplicate keys are provided
101 * @throws IllegalArgumentException if duplicate keys are provided
112 * @throws IllegalArgumentException if duplicate keys are provided
170 * keys are not allowed, and will cause {@link #build} to fail.
178 * Associates all of the given map's keys and values in the built map.
179 * Duplicate keys are not allowed, and will cause {@link #build} to fail.
196 * @throws IllegalArgumentException if duplicate keys were added
220 * {@code map} somehow contains entries with duplicate keys (for example, i
355 private final Object[] keys; field in class:ImmutableMap.SerializedForm
    [all...]
  /external/webkit/WebKitTools/CodeCoverage/
regenerate-coverage-display 201 dirs = dir_series.keys()
310 file_serieses = dict([[k, [(0, 0)] * len(times)] for k in all_files.keys()])
311 dir_serieses = dict([[k, [(0, 0, 0, [])] * len(times)] for k in all_dirs.keys()])
340 dir_keys = dir_serieses.keys()
345 file_keys = file_serieses.keys()
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 53 * A view that renders a virtual {@link Keyboard}. It handles rendering of keys and
74 * For keys that repeat, this is only called once.
82 * For keys that repeat, this is only called once.
90 * @param keyCodes the codes for all the possible alternative keys
93 * will include other characters that may be on the same key or adjacent keys.
220 private static final int REPEAT_INTERVAL = 50; // ~20 keys per second
451 List<Key> keys = mKeyboard.getKeys(); local
452 mKeys = keys.toArray(new Key[keys.size()]);
459 // Switching to a different keyboard should abort any pending keys so that the key u
645 final Key[] keys = mKeys; local
736 final Key[] keys = mKeys; local
835 final Key[] keys = mKeys; local
871 final Key[] keys = mKeys; local
    [all...]
  /external/dropbear/
common-kex.c 129 /* Bring new keys into use after a key exchange, and let the client know*/
157 /* Bring the new keys into use after a key exchange */
164 * switch to the new keys */
243 /* Generate the actual encryption/integrity keys, using the results of the
247 * ses.newkeys is the new set of keys which are generated, these are only
319 /* MAC keys */
329 /* Switch over to the new keys */
330 m_burn(ses.keys, sizeof(struct key_context));
331 m_free(ses.keys);
332 ses.keys = ses.newkeys
    [all...]
  /external/quake/quake/src/QW/client/
menu.c 642 /* KEYS MENU */
727 int keys[2]; local
749 M_FindKeysForCommand (bindnames[i][0], keys);
751 if (keys[0] == -1)
757 name = Key_KeynumToString (keys[0]);
760 if (keys[1] != -1)
763 M_Print (140 + x + 32, y, Key_KeynumToString (keys[1]));
778 int keys[2]; local
820 M_FindKeysForCommand (bindnames[keys_cursor][0], keys);
822 if (keys[1] != -1
    [all...]

Completed in 898 milliseconds

1 2 3 4 5 67 8 91011>>