HomeSort by relevance Sort by last modified time
    Searched refs:key (Results 126 - 150 of 4983) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/Misc/
caret-diags-scratch-buffer.c 10 M(key);
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_start.c 24 @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)
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/
ConcurrentMap.java 28 V putIfAbsent(K key, V value);
30 boolean remove(Object key, Object value);
32 V replace(K key, V value);
34 boolean replace(K key, V oldValue, V newValue);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
Asset.java 45 * 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);
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/
aes_ecb.c 63 const AES_KEY *key, const int enc) {
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
aes_misc.c 70 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);
aes_cbc.c 56 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);
  /external/openssl/crypto/evp/
e_aes_cbc_hmac_sha1.c 97 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->head
175 EVP_AES_HMAC_SHA1 *key = data(ctx); local
283 EVP_AES_HMAC_SHA1 *key = data(ctx); local
    [all...]
  /frameworks/support/volley/src/com/android/volley/
Cache.java 25 * @param key Cache key
28 public Entry get(String key);
32 * @param key Cache key
35 public void put(String key, Entry entry);
45 * @param key Cache key
48 public void invalidate(String key, boolean fullExpire);
52 * @param key Cache ke
    [all...]
  /frameworks/support/volley/src/com/android/volley/toolbox/
NoCache.java 30 public Entry get(String key) {
35 public void put(String key, Entry entry) {
39 public void invalidate(String key, boolean fullExpire) {
43 public void remove(String key) {
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 20 * {@code ConcurrentMap} as a key or value
32 * If the specified key is not already associated
36 * if (!map.containsKey(key))
37 * return map.put(key, value);
39 * return map.get(key);</pre>
42 * @param key key with which the specified value is to be associated
43 * @param value value to be associated with the specified key
44 * @return the previous value associated with the specified key, or
45 * <tt>null</tt> if there was no mapping for the key
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/support/
I.java 4 String find(String key);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
TransitionStore.java 24 public void put(Object key, Object value) {
25 mStorage.put(key, value);
29 public <T> T get(Object key) {
30 return (T) mStorage.get(key);
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
CipherKeyGenerator.java 6 * 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/
hmac_openssl.cc 20 std::vector<unsigned char> key; member in struct:crypto::HMACPlatformData
29 bool HMAC::Init(const unsigned char* key, int key_length) {
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/
dsa_export.c 15 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)
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->p
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/util/bugzilla/
Messages.java 25 public static String getString(String key)
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/
Messages.java 33 public static String getString(String key)
37 return RESOURCE_BUNDLE.getString(key);
41 return '!' + key + '!';
  /external/webkit/Source/WebCore/inspector/front-end/
Settings.js 80 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...]
  /external/webkit/Source/WebKit/win/
WebLocalizableStrings.h 40 CFStringRef WebLocalizedStringUTF8(WebLocalizableStringsBundle*, LPCSTR key);
41 LPCTSTR WebLocalizedLPCTSTRUTF8(WebLocalizableStringsBundle*, LPCSTR key);
46 CFStringRef WebLocalizedString(WebLocalizableStringsBundle *bundle, LPCTSTR key);
47 LPCTSTR WebLocalizedLPCTSTR(WebLocalizableStringsBundle *bundle, LPCTSTR key);
60 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
62 #define LPCTSTR_UI_STRING_KEY(string, key, comment) WebLocalizedLPCTSTRUTF8(&LOCALIZABLE_STRINGS_BUNDLE(FRAMEWORK_NAME), key)
67 #define UI_STRING_KEY(string, key, comment) WebLocalizedStringUTF8(0, key)
    [all...]
  /external/webkit/Source/WebKit2/Shared/
MutableDictionary.h 44 bool add(const String& key, APIObject*);
45 bool set(const String& key, APIObject*);
46 void remove(const String& key);
  /libcore/luni/src/main/java/java/util/
Dictionary.java 48 * Returns the value which is associated with {@code key}.
50 * @param key
51 * the key of the value returned.
52 * @return the value associated with {@code key}, or {@code null} if the
53 * specified key does not exist.
56 public abstract V get(Object key);
59 * Returns true if this dictionary has no key/value pairs.
61 * @return {@code true} if this dictionary has no key/value pairs,
78 * Associate {@code key} with {@code value} in this dictionary. If {@code
79 * key} exists in the dictionary before this call, the old value in th
    [all...]
MissingResourceException.java 33 String className, key; field in class:MissingResourceException
51 key = resourceName;
72 return key;
  /libcore/support/src/test/java/tests/security/
CipherSymmetricCryptHelper.java 31 public void test(SecretKey key) {
32 test(key, key);
  /system/core/include/cutils/
properties.h 41 int property_get(const char *key, char *value, const char *default_value);
45 int property_set(const char *key, const char *value);
47 int property_list(void (*propfn)(const char *key, const char *value, void *cookie), void *cookie);

Completed in 1110 milliseconds

1 2 3 4 56 7 8 91011>>