Searched refs:key (Results 176 - 200 of 3578) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DMultiMap.java34 /** A hash table that maps a key to a list of elements not just a single. */
36 public void map(K key, V value) { argument
37 List<V> elementsForKey = get(key);
40 super.put(key, elementsForKey);
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DExemptionMechanismSpiTest.java66 Key key = null;
70 emSpi.engineInit(key);
75 emSpi.engineInit(key, params);
80 emSpi.engineInit(key, parSpec);
84 key = ((MyExemptionMechanismSpi)emSpi).new tmp1Key("Proba", new byte[0]);
86 emSpi.engineInit(key);
91 emSpi.engineInit(key, params);
96 emSpi.engineInit(key, parSpec);
100 key = ((MyExemptionMechanismSpi)emSpi).new tmpKey("Proba", new byte[0]);
101 emSpi.engineInit(key);
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_rlz_apitest.cc53 base::win::RegKey key(HKEY_CURRENT_USER,
56 ASSERT_FALSE(key.Valid());
58 key.Open(HKEY_CURRENT_USER, L"Software\\Google\\Common\\Rlz\\Events\\D",
60 ASSERT_FALSE(key.Valid());
78 key.Open(HKEY_CURRENT_USER, L"Software\\Google\\Common\\Rlz\\Events\\N",
80 ASSERT_TRUE(key.Valid());
83 ASSERT_EQ(ERROR_SUCCESS, key.ReadValueDW(L"D3I", &value));
85 ASSERT_EQ(ERROR_SUCCESS, key.ReadValueDW(L"D3S", &value));
87 ASSERT_EQ(ERROR_SUCCESS, key.ReadValueDW(L"D3F", &value));
90 ASSERT_EQ(ERROR_SUCCESS, key
[all...]
H A Dextension_pref_store.cc27 void ExtensionPrefStore::OnPrefValueChanged(const std::string& key) { argument
30 extension_pref_value_map_->GetEffectivePrefValue(key,
34 SetValue(key, winner->DeepCopy());
36 RemoveValue(key);
/external/dropbear/libtomcrypt/src/mac/hmac/
H A Dhmac_init.c26 @param key The secret key
27 @param keylen The length of the secret key (octets)
30 int hmac_init(hmac_state *hmac, int hash, const unsigned char *key, unsigned long keylen) argument
38 LTC_ARGCHK(key != NULL);
47 /* valid key length? */
58 /* allocate memory for key */
59 hmac->key = XMALLOC(HMAC_BLOCKSIZE);
60 if (hmac->key == NULL) {
65 /* (1) make sure we have a large enough key */
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DSingletonImmutableMap.java39 SingletonImmutableMap(K key, V value) { argument
40 super(Collections.singletonMap(checkNotNull(key), checkNotNull(value)));
41 this.singleKey = key;
/external/openssl/crypto/rc4/
H A Drc4.h81 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
82 void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
/external/openssl/include/openssl/
H A Drc4.h81 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
82 void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
83 void RC4(RC4_KEY *key, size_t len, const unsigned char *indata,
/external/srec/shared/src/
H A DHashMap.c25 ESR_ReturnCode HashMapPut(HashMap* self, const LCHAR* key, void* value) argument
29 return self->put(self, key, value);
32 ESR_ReturnCode HashMapRemove(HashMap* self, const LCHAR* key) argument
36 return self->remove(self, key);
39 ESR_ReturnCode HashMapRemoveAndFree(HashMap* self, const LCHAR* key) argument
43 return self->removeAndFree(self, key);
67 ESR_ReturnCode HashMapContainsKey(HashMap* self, const LCHAR* key, ESR_BOOL* exists) argument
71 return self->containsKey(self, key, exists);
81 ESR_ReturnCode HashMapGet(HashMap* self, const LCHAR* key, void** value) argument
85 return self->get(self, key, valu
88 HashMapGetKeyAtIndex(HashMap* self, const size_t index, LCHAR** key) argument
[all...]
/external/srtp/crypto/include/
H A Dkey.h2 * key.h
4 * key usage limits enforcement
60 key_limit_set(key_limit_t key, const xtd_seq_num_t s);
66 key_limit_check(const key_limit_t key);
69 key_limit_update(key_limit_t key);
/external/webkit/Source/WebKit2/Shared/API/c/
H A DWKMutableDictionary.h43 WK_EXPORT bool WKDictionaryAddItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);
44 WK_EXPORT bool WKDictionarySetItem(WKMutableDictionaryRef dictionary, WKStringRef key, WKTypeRef item);
45 WK_EXPORT void WKDictionaryRemoveItem(WKMutableDictionaryRef dictionary, WKStringRef key);
/external/webkit/Source/WebKit2/Shared/mac/
H A DCommandLineMac.cpp43 String key = String::fromUTF8(argv[i] + 1);
44 if (key.isEmpty())
51 if (!m_args.add(key, value).second)
/external/webkit/Source/WebKit2/Shared/win/
H A DCommandLineWin.cpp50 LPWSTR key = commandLineArgs[i]; local
52 if (key[0] != '-') {
57 m_args.set(&key[1], commandLineArgs[i + 1]);
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Dsha256.h20 void hmac_sha256_vector(const u8 *key, size_t key_len, size_t num_elem,
22 void hmac_sha256(const u8 *key, size_t key_len, const u8 *data,
24 void sha256_prf(const u8 *key, size_t key_len, const char *label,
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Drsa.h24 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key);
26 struct crypto_rsa_key *key, int use_private);
27 void crypto_rsa_free(struct crypto_rsa_key *key);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs1.h12 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
15 int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key,
18 int pkcs1_decrypt_public_key(struct crypto_rsa_key *key,
H A Drsa.h18 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key);
20 struct crypto_rsa_key *key, int use_private);
21 void crypto_rsa_free(struct crypto_rsa_key *key);
/external/wpa_supplicant_8/src/tls/
H A Dpkcs1.h12 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
15 int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key,
18 int pkcs1_decrypt_public_key(struct crypto_rsa_key *key,
H A Drsa.h18 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key);
20 struct crypto_rsa_key *key, int use_private);
21 void crypto_rsa_free(struct crypto_rsa_key *key);
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs1.h12 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
15 int pkcs1_v15_private_key_decrypt(struct crypto_rsa_key *key,
18 int pkcs1_decrypt_public_key(struct crypto_rsa_key *key,
H A Drsa.h18 size_t crypto_rsa_get_modulus_len(struct crypto_rsa_key *key);
20 struct crypto_rsa_key *key, int use_private);
21 void crypto_rsa_free(struct crypto_rsa_key *key);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/support/
H A DI.java21 String find(String key); argument
/external/chromium/app/sql/
H A Dmeta_table.cc35 "(key LONGVARCHAR NOT NULL UNIQUE PRIMARY KEY,"
52 bool MetaTable::SetValue(const char* key, const std::string& value) { argument
54 if (!PrepareSetStatement(&s, key))
60 bool MetaTable::GetValue(const char* key, std::string* value) { argument
62 if (!PrepareGetStatement(&s, key))
69 bool MetaTable::SetValue(const char* key, int value) { argument
71 if (!PrepareSetStatement(&s, key))
78 bool MetaTable::GetValue(const char* key, int* value) { argument
80 if (!PrepareGetStatement(&s, key))
87 bool MetaTable::SetValue(const char* key, int6 argument
95 GetValue(const char* key, int64* value) argument
126 PrepareSetStatement(Statement* statement, const char* key) argument
138 PrepareGetStatement(Statement* statement, const char* key) argument
[all...]
/external/chromium/chrome/common/net/
H A Dnet_resource_provider.h16 base::StringPiece NetResourceProvider(int key);
/external/chromium/crypto/
H A Dhmac.h33 // Initializes this instance using |key| of the length |key_length|. Call Init
35 bool Init(const unsigned char* key, int key_length);
37 // Initializes this instance using |key|. Call Init only once. It returns
39 bool Init(const std::string& key) { argument
40 return Init(reinterpret_cast<const unsigned char*>(key.data()),
41 static_cast<int>(key.size()));
45 // to the constructor and the key supplied to the Init method. The HMAC is

Completed in 564 milliseconds

1234567891011>>