/external/valgrind/main/exp-ptrcheck/tests/ |
pth_create.c | 14 pthread_key_t* key = malloc(sizeof(pthread_key_t)); local 17 pthread_key_create ( (pthread_key_t*)((long)key + 1), NULL );
|
/external/webkit/Source/WebCore/html/ |
FormDataList.h | 49 void appendData(const String& key, const String& value) 51 appendString(key); 54 void appendData(const String& key, const CString& value) 56 appendString(key); 59 void appendData(const String& key, int value) 61 appendString(key); 64 void appendBlob(const String& key, PassRefPtr<Blob> blob) 66 appendString(key);
|
/external/webkit/Source/WebCore/storage/ |
Storage.idl | 36 [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/android/WebCoreSupport/ |
InspectorClientAndroid.h | 46 virtual void populateSetting(const String& key, String* value) {} 47 virtual void storeSetting(const String& key, const String& value) {}
|
/external/webkit/Source/WebKit/chromium/src/ |
StorageEventDispatcherChromium.cpp | 46 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, 51 WebKit::webKitClient()->dispatchStorageEvent(key, oldValue, newValue, origin->toString(), WebKit::WebURL(), storageType == LocalStorage);
|
WebStorageAreaImpl.cpp | 59 WebString WebStorageAreaImpl::key(unsigned index) function in class:WebKit::WebStorageAreaImpl 61 return m_storageArea->key(index); 64 WebString WebStorageAreaImpl::getItem(const WebString& key) 66 return m_storageArea->getItem(key); 69 void WebStorageAreaImpl::setItem(const WebString& key, const WebString& value, const WebURL& url, Result& result, WebString& oldValue, WebFrame*) 74 oldValue = m_storageArea->setItem(key, value, exceptionCode, 0); 83 void WebStorageAreaImpl::removeItem(const WebString& key, const WebURL& url, WebString& oldValue) 86 oldValue = m_storageArea->removeItem(key, 0);
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
InspectorClientEfl.h | 51 virtual void populateSetting(const String& key, String* value); 52 virtual void storeSetting(const String& key, const String& value);
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
InspectorClientWx.h | 49 virtual void populateSetting(const String& key, String* value); 50 virtual void storeSetting(const String& key, const String& value);
|
/external/webkit/Source/WebKit2/Shared/ |
WebPreferencesStore.cpp | 38 const String& KeyLower##Key() \ 40 DEFINE_STATIC_LOCAL(String, key, (#KeyUpper)); \ 41 return key; \ 112 String defaultValueForKey(const String& key) 116 #define DEFINE_STRING_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue); 121 return defaults.get(key); 125 bool defaultValueForKey(const String& key) 129 #define DEFINE_BOOL_DEFAULTS(KeyUpper, KeyLower, TypeName, Type, DefaultValue) defaults.set(WebPreferencesKey::KeyLower##Key(), DefaultValue); 134 return defaults.get(key); 138 uint32_t defaultValueForKey(const String& key) [all...] |
/external/webkit/Source/WebKit2/Shared/gtk/ |
NativeWebKeyboardEventGtk.cpp | 37 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event->key)) 43 : WebKeyboardEvent(WebEventFactory::createWebKeyboardEvent(&event.nativeEvent()->key))
|
/external/webkit/Source/WebKit2/UIProcess/ |
WebPreferences.cpp | 64 void WebPreferences::updateStringValueForKey(const String& key, const String& value) 66 platformUpdateStringValueForKey(key, value); 67 update(); // FIXME: Only send over the changed key and value. 70 void WebPreferences::updateBoolValueForKey(const String& key, bool value) 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) 78 platformUpdateUInt32ValueForKey(key, value); 79 update(); // FIXME: Only send over the changed key and value. 82 void WebPreferences::updateDoubleValueForKey(const String& key, double value [all...] |
WebPreferences.h | 82 void updateStringValueForKey(const String& key, const String& value); 83 void updateBoolValueForKey(const String& key, bool value); 84 void updateUInt32ValueForKey(const String& key, uint32_t value); 85 void updateDoubleValueForKey(const String& key, double value); 86 void platformUpdateStringValueForKey(const String& key, const String& value); 87 void platformUpdateBoolValueForKey(const String& key, bool value); 88 void platformUpdateUInt32ValueForKey(const String& key, uint32_t value); 89 void platformUpdateDoubleValueForKey(const String& key, double value);
|
/external/wpa_supplicant/ |
aes.h | 18 void * aes_encrypt_init(const u8 *key, size_t len); 21 void * aes_decrypt_init(const u8 *key, size_t len);
|
aes_wrap.h | 4 * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394) 5 * - One-Key CBC MAC (OMAC1) hash with AES-128 27 int omac1_aes_128_vector(const u8 *key, size_t num_elem, 29 int omac1_aes_128(const u8 *key, const u8 *data, size_t data_len, u8 *mac); 30 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out); 31 int aes_128_ctr_encrypt(const u8 *key, const u8 *nonce, 33 int aes_128_eax_encrypt(const u8 *key, const u8 *nonce, size_t nonce_len, 36 int aes_128_eax_decrypt(const u8 *key, const u8 *nonce, size_t nonce_len, 39 int aes_128_cbc_encrypt(const u8 *key, const u8 *iv, u8 *data, 41 int aes_128_cbc_decrypt(const u8 *key, const u8 *iv, u8 *data [all...] |
rc4.h | 18 void rc4_skip(const u8 *key, size_t keylen, size_t skip, 20 void rc4(u8 *buf, size_t len, const u8 *key, size_t key_len);
|
/external/wpa_supplicant_6/wpa_supplicant/src/crypto/ |
aes.h | 18 void * aes_encrypt_init(const u8 *key, size_t len); 21 void * aes_decrypt_init(const u8 *key, size_t len);
|
aes_wrap.h | 4 * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394) 5 * - One-Key CBC MAC (OMAC1) hash with AES-128 27 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 [all...] |
/external/wpa_supplicant_8/src/crypto/ |
aes.h | 20 void * aes_encrypt_init(const u8 *key, size_t len); 23 void * aes_decrypt_init(const u8 *key, size_t len);
|
aes_wrap.h | 4 * - AES Key Wrap Algorithm (128-bit KEK) (RFC3394) 5 * - One-Key CBC MAC (OMAC1) hash with AES-128 27 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 [all...] |
/libcore/luni/src/main/java/java/util/ |
NavigableMap.java | 20 * greater than or equal, and greater than a given key, returning 21 * {@code null} if there is no such key. Similarly, methods 27 * ascending or descending key order. The {@code descendingMap} 69 * Returns a key-value mapping associated with the greatest key 70 * strictly less than the given key, or {@code null} if there is 71 * no such key. 73 * @param key the key 74 * @return an entry with the greatest key less than {@code key} [all...] |
/libcore/luni/src/test/java/tests/api/java/util/support/ |
A.java | 10 public String find(String key) { 11 return pp.findProp(key);
|
/system/core/include/cutils/ |
sockets.h | 49 char key[64] = ANDROID_SOCKET_ENV_PREFIX; local 55 strlcpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1, 57 sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX)); 59 strncpy(key + sizeof(ANDROID_SOCKET_ENV_PREFIX) - 1, 61 sizeof(key) - sizeof(ANDROID_SOCKET_ENV_PREFIX)); 62 key[sizeof(key)-1] = '\0'; 65 val = getenv(key);
|
/system/media/mca/filterfw/java/android/filterfw/core/ |
KeyValueMap.java | 31 throw new RuntimeException("Key-Value arguments passed into setKeyValues must be " 36 throw new RuntimeException("Key-value argument " + i + " must be a key of type " 39 String key = (String)keyValues[i]; local 41 put(key, value); 51 public String getString(String key) { 52 Object result = get(key); 56 public int getInt(String key) { 57 Object result = get(key); 61 public float getFloat(String key) { [all...] |
/dalvik/vm/ |
Intern.cpp | 54 static StringObject* lookupString(HashTable* table, u4 key, StringObject* value) 56 void* entry = dvmHashTableLookup(table, key, (void*)value, 61 static StringObject* insertString(HashTable* table, u4 key, StringObject* value) 66 void* entry = dvmHashTableLookup(table, key, (void*)value, 76 u4 key = dvmComputeStringHash(strObj); local 82 StringObject* literal = lookupString(gDvm.literalStrings, key, strObj); 93 StringObject* interned = lookupString(gDvm.internedStrings, key, strObj); 99 dvmHashTableRemove(gDvm.internedStrings, key, interned); 100 found = insertString(gDvm.literalStrings, key, interned); 107 found = insertString(gDvm.literalStrings, key, strObj) 160 u4 key = dvmComputeStringHash(strObj); local [all...] |
/external/qemu/android/utils/ |
ini.c | 32 char* key; member in struct:__anon9295 47 AFREE(i->pairs[nn].key); 48 i->pairs[nn].key = NULL; 65 iniPair_init( IniPair* pair, const char* key, int keyLen, 68 AARRAY_NEW(pair->key, keyLen + valueLen + 2); 69 memcpy(pair->key, key, keyLen); 70 pair->key[keyLen] = 0; 72 pair->value = pair->key + keyLen + 1; 80 char* key = pair->key local 192 const char* key; local [all...] |