Searched refs:key (Results 101 - 125 of 3578) sorted by relevance

1234567891011>>

/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-encblock.c18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out) argument
26 ctx = aes_encrypt_init(key, 16);
/external/chromium/chrome/browser/prefs/
H A Doverlay_persistent_pref_store.cc18 bool OverlayPersistentPrefStore::IsSetInOverlay(const std::string& key) const {
19 return overlay_.GetValue(key, NULL);
35 const std::string& key,
37 if (overlay_.GetValue(key, result))
39 return underlay_->GetValue(key, result);
43 const std::string& key,
45 if (overlay_.GetValue(key, result))
51 underlay_->GetMutableValue(key, &underlay_value);
54 overlay_.SetValue(key, *result);
57 // Return read failure if underlay stores no value for |key|
34 GetValue( const std::string& key, const Value** result) const argument
42 GetMutableValue( const std::string& key, Value** result) argument
61 SetValue(const std::string& key, Value* value) argument
67 SetValueSilently(const std::string& key, Value* value) argument
72 RemoveValue(const std::string& key) argument
99 ReportValueChanged(const std::string& key) argument
103 OnPrefValueChanged(const std::string& key) argument
[all...]
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_make_key.c27 Make a new ECC key
30 @param keysize The keysize for the new key (in octets from 20 to 65 bytes)
31 @param key [out] Destination of the newly created key
34 int ecc_make_key(prng_state *prng, int wprng, int keysize, ecc_key *key) argument
38 /* find key size */
45 err = ecc_make_key_ex(prng, wprng, key, &ltc_ecc_sets[x]);
46 key->idx = x;
50 int ecc_make_key_ex(prng_state *prng, int wprng, ecc_key *key, const ltc_ecc_set_type *dp) argument
58 LTC_ARGCHK(key !
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSortedListsTest.java41 void assertModelAgrees(List<Integer> list, Integer key, int answer, argument
45 if (list.contains(key)) {
46 assertEquals(list.indexOf(key), answer);
51 if (list.contains(key)) {
52 assertEquals(list.lastIndexOf(key), answer);
57 if (list.contains(key)) {
58 assertEquals(key, list.get(answer));
63 if (list.contains(key)) {
64 assertEquals(list.lastIndexOf(key) + 1, answer);
69 if (list.contains(key)) {
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs45 public static bool containsKey(IDictionary map, object key) { argument
46 return map.Contains(key);
50 public static object get(IDictionary map, object key) { argument
51 return map[key];
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { argument
57 if (map.TryGetValue(key, out value))
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { argument
69 if (map.TryGetValue(key, out value))
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { argument
80 if (map.TryGetValue(key, ou
91 put(IDictionary map, object key, object value) argument
96 put(IDictionary<TKey, TValue> map, TKey key, TValue value) argument
101 put(Dictionary<TKey, TValue> map, TKey key, TValue value) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs44 public static bool containsKey( this IDictionary map, object key )
46 return map.Contains( key );
50 public static object get( this IDictionary map, object key )
52 return map[key];
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key )
58 if ( map.TryGetValue( key, out value ) )
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key )
71 if ( map.TryGetValue( key, out value ) )
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key )
83 if ( map.TryGetValue( key, ou
93 put( this IDictionary map, object key, object value ) argument
99 put( this IDictionary<TKey, TValue> map, TKey key, TValue value ) argument
105 put( this Dictionary<TKey, TValue> map, TKey key, TValue value ) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DOutputPropertyUtils.java38 * Searches for the boolean property with the specified key in the property list.
39 * If the key is not found in this property list, the default property list,
44 * @param key the property key.
49 public static boolean getBooleanProperty(String key, Properties props) argument
52 String s = props.getProperty(key);
61 * Searches for the int property with the specified key in the property list.
62 * If the key is not found in this property list, the default property list,
67 * @param key the property key
72 getIntProperty(String key, Properties props) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_tts_api_util.cc19 const char* key,
22 if (!dict->Get(key, &value))
27 if (!dict->GetInteger(key, &int_value))
31 if (!dict->GetDouble(key, ret_value))
18 ReadNumberByKey(DictionaryValue* dict, const char* key, double* ret_value) argument
/external/clang/test/CodeGen/
H A D2007-02-04-AddrLValue.c6 char *key; member in struct:__anon4129
/external/clang/test/Misc/
H A Dcaret-diags-scratch-buffer.c10 M(key);
/external/dropbear/libtomcrypt/src/modes/ecb/
H A Decb_start.c24 @param key The secret key
25 @param keylen The length of the secret key (octets)
30 int ecb_start(int cipher, const unsigned char *key, int keylen, int num_rounds, symmetric_ECB *ecb) argument
33 LTC_ARGCHK(key != NULL);
41 return cipher_descriptor[cipher].setup(key, keylen, num_rounds, &ecb->key);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java28 V putIfAbsent(K key, V value); argument
30 boolean remove(Object key, Object value); argument
32 V replace(K key, V value); argument
34 boolean replace(K key, V oldValue, V newValue); argument
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAsset.java45 * is called twice with the same asset key (equals() wise, not necessarily reference wise)
46 * then both assets will have the same asset key set (reference wise) via
47 * {@link Asset#setKey(com.jme3.asset.AssetKey) }, then this asset key
49 * are garbage collected, the shared asset key becomes unreachable and at that
58 * was loaded has this key set to null so that only the clones are tracked
61 * @param key The AssetKey to set
63 public void setKey(AssetKey key); argument
66 * Returns the asset key that is used to track this asset for garbage
69 * @return the asset key that is used to track this asset for garbage
/external/openssl/crypto/aes/
H A Daes_ecb.c63 const AES_KEY *key, const int enc) {
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
62 AES_ecb_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key, const int enc) argument
H A Daes_misc.c70 AES_KEY *key)
75 return private_AES_set_encrypt_key(userKey, bits, key);
79 AES_KEY *key)
84 return private_AES_set_decrypt_key(userKey, bits, key);
69 AES_set_encrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
78 AES_set_decrypt_key(const unsigned char *userKey, const int bits, AES_KEY *key) argument
H A Daes_cbc.c56 size_t len, const AES_KEY *key,
60 CRYPTO_cbc128_encrypt(in,out,len,key,ivec,(block128_f)AES_encrypt);
62 CRYPTO_cbc128_decrypt(in,out,len,key,ivec,(block128_f)AES_decrypt);
55 AES_cbc_encrypt(const unsigned char *in, unsigned char *out, size_t len, const AES_KEY *key, unsigned char *ivec, const int enc) argument
/external/openssl/crypto/evp/
H A De_aes_cbc_hmac_sha1.c97 AES_KEY *key);
99 AES_KEY *key);
104 const AES_KEY *key,
108 const AES_KEY *key, unsigned char iv[16],
117 EVP_AES_HMAC_SHA1 *key = data(ctx); local
121 ret=aesni_set_encrypt_key(inkey,ctx->key_len*8,&key->ks);
123 ret=aesni_set_decrypt_key(inkey,ctx->key_len*8,&key->ks);
125 SHA1_Init(&key->head); /* handy when benchmarking */
126 key->tail = key
175 EVP_AES_HMAC_SHA1 *key = data(ctx); local
283 EVP_AES_HMAC_SHA1 *key = data(ctx); local
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-752.js32 function replacer(key, value) {
/external/clang/lib/Frontend/
H A DLogDiagnosticPrinter.cpp72 OS << " <key>main-file</key>\n"
78 OS << " <key>dwarf-debug-flags</key>\n"
83 OS << " <key>diagnostics</key>\n";
89 OS << " <key>level</key>\n"
94 OS << " <key>filename</key>\
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DCipherKeyGenerator.java6 * The base class for symmetric, or secret, cipher key generators.
14 * initialise the key generator.
16 * @param param the parameters to be used for key generation
26 * generate a secret key.
28 * @return a byte array containing the key value.
32 byte[] key = new byte[strength];
34 random.nextBytes(key);
36 return key;
/external/chromium/crypto/
H A Dhmac_openssl.cc20 std::vector<unsigned char> key; member in struct:crypto::HMACPlatformData
29 bool HMAC::Init(const unsigned char* key, int key_length) { argument
31 DCHECK(plat_->key.empty());
33 plat_->key.assign(key, key + key_length);
38 // Zero out key copy.
39 plat_->key.assign(plat_->key.size(), 0);
40 STLClearObject(&plat_->key);
[all...]
/external/dropbear/libtomcrypt/src/pk/dsa/
H A Ddsa_export.c15 DSA implementation, export key, Tom St Denis
21 Export a DSA key to a binary packet
24 @param type The type of key to export (PK_PRIVATE or PK_PUBLIC)
25 @param key The key to export
28 int dsa_export(unsigned char *out, unsigned long *outlen, int type, dsa_key *key) argument
34 LTC_ARGCHK(key != NULL);
37 if (type == PK_PRIVATE && key->type != PK_PRIVATE) {
50 LTC_ASN1_INTEGER, 1UL, key->g,
51 LTC_ASN1_INTEGER, 1UL, key
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/util/bugzilla/
H A DMessages.java25 public static String getString(String key) argument
29 return RESOURCE_BUNDLE.getString(key);
33 return '!' + key + '!';
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A DMessages.java33 public static String getString(String key) argument
37 return RESOURCE_BUNDLE.getString(key);
41 return '!' + key + '!';
/external/webkit/Source/WebCore/inspector/front-end/
H A DSettings.js80 installApplicationSetting: function(key, defaultValue)
82 if (key in this)
85 this.__defineGetter__(key, this._get.bind(this, key, defaultValue));
86 this.__defineSetter__(key, this._set.bind(this, key));
89 _get: function(key, defaultValue)
91 if (window.localStorage != null && key in window.localStorage) {
93 return JSON.parse(window.localStorage[key]);
95 window.localStorage.removeItem(key);
[all...]

Completed in 475 milliseconds

1234567891011>>