Searched refs:key (Results 251 - 275 of 3578) sorted by relevance

<<11121314151617181920>>

/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
H A DHMAC.java23 public HMAC(Digest md, byte[] key, int size) argument
35 if (key.length > blocksize)
38 md.update(key);
40 key = tmp;
43 System.arraycopy(key, 0, k_xor_ipad, 0, key.length);
44 System.arraycopy(key, 0, k_xor_opad, 0, key.length);
/external/guava/guava/src/com/google/common/cache/
H A DForwardingLoadingCache.java47 public V get(K key) throws ExecutionException { argument
48 return delegate().get(key);
52 public V getUnchecked(K key) { argument
53 return delegate().getUnchecked(key);
62 public V apply(K key) { argument
63 return delegate().apply(key);
67 public void refresh(K key) { argument
68 delegate().refresh(key);
/external/guava/guava/src/com/google/common/collect/
H A DAbstractListMultimap.java42 * @param map place to store the mapping from each key to its corresponding
56 * <p>Because the values for a given key may have duplicates and follow the
60 @Override public List<V> get(@Nullable K key) { argument
61 return (List<V>) super.get(key);
67 * <p>Because the values for a given key may have duplicates and follow the
71 @Override public List<V> removeAll(@Nullable Object key) { argument
72 return (List<V>) super.removeAll(key);
78 * <p>Because the values for a given key may have duplicates and follow the
83 @Nullable K key, Iterable<? extends V> values) {
84 return (List<V>) super.replaceValues(key, value
82 replaceValues( @ullable K key, Iterable<? extends V> values) argument
94 put(@ullable K key, @Nullable V value) argument
[all...]
H A DAbstractSetMultimap.java40 * @param map place to store the mapping from each key to its corresponding
54 * <p>Because a {@code SetMultimap} has unique values for a given key, this
58 @Override public Set<V> get(@Nullable K key) { argument
59 return (Set<V>) super.get(key);
65 * <p>Because a {@code SetMultimap} has unique values for a given key, this
76 * <p>Because a {@code SetMultimap} has unique values for a given key, this
80 @Override public Set<V> removeAll(@Nullable Object key) { argument
81 return (Set<V>) super.removeAll(key);
87 * <p>Because a {@code SetMultimap} has unique values for a given key, this
94 @Nullable K key, Iterabl
93 replaceValues( @ullable K key, Iterable<? extends V> values) argument
116 put(K key, V value) argument
[all...]
H A DMultimap.java29 * values with a single key. If you call {@link #put} twice, with the same key
30 * but different values, the multimap contains mappings from the key to both
41 * key-value pairs. In other words, the multimap contents after adding the same
42 * key and value twice varies between implementations. In multimaps allowing
46 * key to the value, and {@code get} will return a collection that includes the
62 /** Returns the number of key-value pairs in the multimap. */
65 /** Returns {@code true} if the multimap contains no key-value pairs. */
70 * key.
72 * @param key ke
74 containsKey(@ullable Object key) argument
90 containsEntry(@ullable Object key, @Nullable Object value) argument
108 put(@ullable K key, @Nullable V value) argument
117 remove(@ullable Object key, @Nullable Object value) argument
128 putAll(@ullable K key, Iterable<? extends V> values) argument
151 replaceValues(@ullable K key, Iterable<? extends V> values) argument
162 removeAll(@ullable Object key) argument
182 get(@ullable K key) argument
[all...]
/external/linux-tools-perf/util/
H A Dpstack.h10 void pstack__remove(struct pstack *self, void *key);
11 void pstack__push(struct pstack *self, void *key);
/external/llvm/lib/Support/
H A DThreadLocal.cpp54 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
55 int errorcode = pthread_key_create(key, NULL);
61 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
62 int errorcode = pthread_key_delete(*key);
68 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
69 int errorcode = pthread_setspecific(*key, d);
75 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
76 return pthread_getspecific(*key);
/external/openssl/crypto/aes/
H A Daes_ctr.c56 size_t length, const AES_KEY *key,
60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
55 AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char ivec[AES_BLOCK_SIZE], unsigned char ecount_buf[AES_BLOCK_SIZE], unsigned int *num) argument
H A Daes_ofb.c56 size_t length, const AES_KEY *key,
59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
55 AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, const AES_KEY *key, unsigned char *ivec, int *num) argument
/external/openssl/crypto/bf/
H A Dbf_skey.c66 void BF_set_key(BF_KEY *key, int len, const unsigned char *data) argument
70 private_BF_set_key(key, len, data);
72 void private_BF_set_key(BF_KEY *key, int len, const unsigned char *data) argument
80 memcpy(key,&bf_init,sizeof(BF_KEY));
81 p=key->P;
111 BF_encrypt(in,key);
116 p=key->S;
119 BF_encrypt(in,key);
/external/openssl/crypto/des/t/
H A Dtest7 $key='00000000';
8 $ks=DES::set_key($key);
14 $key=DES::random_key();
16 @a=split(//,$key);
/external/openssl/crypto/evp/
H A Dp_open.c73 unsigned char *key=NULL; local
90 key=(unsigned char *)OPENSSL_malloc(size+2);
91 if (key == NULL)
98 i=EVP_PKEY_decrypt_old(key,ek,ekl,priv);
104 if(!EVP_DecryptInit_ex(ctx,NULL,NULL,key,iv)) goto err;
108 if (key != NULL) OPENSSL_cleanse(key,size);
109 OPENSSL_free(key);
/external/openssl/crypto/rc4/
H A Drc4_utl.c56 void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data) argument
61 private_RC4_set_key(key, len, data);
/external/smali/util/src/main/java/ds/tree/
H A DRadixTreeNode.java38 private String key; field in class:RadixTreeNode
51 key = "";
65 return key;
69 this.key = value;
88 public int getNumberOfMatchingCharacters(String key) { argument
90 while (numberOfMatchingCharacters < key.length() && numberOfMatchingCharacters < this.getKey().length()) {
91 if (key.charAt(numberOfMatchingCharacters) != this.getKey().charAt(numberOfMatchingCharacters)) {
101 return key;
/external/srtp/crypto/include/
H A Daes.h59 aes_expand_encryption_key(const v128_t *key,
63 aes_expand_decryption_key(const v128_t *key,
/external/v8/test/mjsunit/regress/
H A Dregress-171.js29 function g(s, key) { return s[key]; }
/external/webkit/Source/WebCore/html/
H A DFormDataList.h49 void appendData(const String& key, const String& value) argument
51 appendString(key);
54 void appendData(const String& key, const CString& value) argument
56 appendString(key);
59 void appendData(const String& key, int value) argument
61 appendString(key);
64 void appendBlob(const String& key, PassRefPtr<Blob> blob) argument
66 appendString(key);
/external/webkit/Source/WebCore/storage/
H A DStorage.idl36 [DontEnum, ConvertNullStringTo=Null] DOMString key(in unsigned long index);
37 [DontEnum, ConvertNullStringTo=Null] DOMString getItem(in DOMString key);
38 [DontEnum] void setItem(in DOMString key, in DOMString data)
40 [DontEnum] void removeItem(in DOMString key);
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherChromium.cpp46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, argument
51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
H A DWebStorageAreaImpl.cpp59 WebString WebStorageAreaImpl::key(unsigned index) function in class:WebKit::WebStorageAreaImpl
61 return m_storageArea->key(index);
64 WebString WebStorageAreaImpl::getItem(const WebString& key) argument
66 return m_storageArea->getItem(key);
69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) argument
74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0);
83 void WebStorageAreaImpl::removeItem(const WebString& key, const WebURL& url, WebString& oldValue) argument
86 oldValue = m_storageArea->removeItem(key, 0);
/external/webkit/Source/WebKit2/Shared/
H A DWebPreferencesStore.cpp40 DEFINE_STATIC_LOCAL(String, key, (#KeyUpper)); \
41 return key; \
112 String defaultValueForKey(const String& key) argument
121 return defaults.get(key);
125 bool defaultValueForKey(const String& key) argument
134 return defaults.get(key);
138 uint32_t defaultValueForKey(const String& key) argument
147 return defaults.get(key);
151 double defaultValueForKey(const String& key) argument
160 return defaults.get(key);
164 valueForKey(const MapType& map, const typename MapType::KeyType& key) argument
174 setValueForKey(MapType& map, const typename MapType::KeyType& key, const typename MapType::MappedType& value) argument
184 setStringValueForKey(const String& key, const String& value) argument
194 setBoolValueForKey(const String& key, bool value) argument
204 setUInt32ValueForKey(const String& key, uint32_t value) argument
214 setDoubleValueForKey(const String& key, double value) argument
[all...]
/external/webkit/Source/WebKit2/Shared/gtk/
H A DNativeWebKeyboardEventGtk.cpp37 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event->key))
43 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event.nativeEvent()->key))
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPreferences.cpp64 void WebPreferences::updateStringValueForKey(const String& key, const String& value) argument
66 platformUpdateStringValueForKey(key, value);
67 update(); // FIXME: Only send over the changed key and value.
70 void WebPreferences::updateBoolValueForKey(const String& key, bool value) argument
72 platformUpdateBoolValueForKey(key, value);
73 update(); // FIXME: Only send over the changed key and value.
76 void WebPreferences::updateUInt32ValueForKey(const String& key, uint32_t value) argument
78 platformUpdateUInt32ValueForKey(key, value);
79 update(); // FIXME: Only send over the changed key and value.
82 void WebPreferences::updateDoubleValueForKey(const String& key, doubl argument
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/
H A Daes.h18 void * aes_encrypt_init(const u8 *key, size_t len);
21 void * aes_decrypt_init(const u8 *key, size_t len);
H A Daes_wrap.h27 int __must_check omac1_aes_128_vector(const u8 *key, size_t num_elem,
30 int __must_check omac1_aes_128(const u8 *key, const u8 *data, size_t data_len,
32 int __must_check aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out);
33 int __must_check aes_128_ctr_encrypt(const u8 *key, const u8 *nonce,
35 int __must_check aes_128_eax_encrypt(const u8 *key,
39 int __must_check aes_128_eax_decrypt(const u8 *key,
43 int __must_check aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data,
45 int __must_check aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data,

Completed in 425 milliseconds

<<11121314151617181920>>