Searched defs:key (Results 1 - 25 of 3793) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCPair.h30 // A class to hold a key and value.
33 @property(nonatomic, strong, readonly) NSString *key; variable
36 // Initialize a RTCPair object with a key and value.
37 - (id)initWithKey:(NSString *)key value:(NSString *)value;
/external/dropbear/libtomcrypt/src/pk/dsa/
H A Ddsa_free.c15 DSA implementation, free a DSA key, Tom St Denis
21 Free a DSA key
22 @param key The key to free from memory
24 void dsa_free(dsa_key *key) argument
26 LTC_ARGCHKVD(key != NULL);
27 mp_clear_multi(key->g, key->q, key->p, key
[all...]
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_free.c27 Free an ECC key from memory
28 @param key The key you wish to free
30 void ecc_free(ecc_key *key) argument
32 LTC_ARGCHKVD(key != NULL);
33 mp_clear_multi(key->pubkey.x, key->pubkey.y, key->pubkey.z, key->k, NULL);
H A Decc_get_size.c27 Get the size of an ECC key
28 @param key The key to get the size of
29 @return The size (octets) of the key or INT_MAX on error
31 int ecc_get_size(ecc_key *key) argument
33 LTC_ARGCHK(key != NULL);
34 if (ltc_ecc_is_valid_idx(key->idx))
35 return key->dp->size;
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_free.c15 Free an Katja key, Tom St Denis
21 Free an Katja key from memory
22 @param key The RSA key to free
24 void katja_free(katja_key *key) argument
26 LTC_ARGCHK(key != NULL);
27 mp_clear_multi( key->d, key->N, key->dQ, key
[all...]
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_free.c15 Free an RSA key, Tom St Denis
21 Free an RSA key from memory
22 @param key The RSA key to free
24 void rsa_free(rsa_key *key) argument
26 LTC_ARGCHKVD(key != NULL);
27 mp_clear_multi(key->e, key->d, key->N, key
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dptw32_tkAssocCreate.c43 ptw32_tkAssocCreate (ptw32_thread_t * sp, pthread_key_t key) argument
47 * is unique for the given (thread,key) combination.The association
48 * is referenced by both the thread and the key.
50 * current thread references and what threads a given key
65 * key
66 * key on which to create an association.
79 * to both the key and the thread.
81 * Both key->keyLock and thread->threadLock are locked before
92 assoc->key = key;
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/external/chromium_org/third_party/openssl/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/chromium_org/v8/test/mjsunit/
H A Dproperty-object-key.js28 var key = { toString: function() { return 'baz'; } }
31 assertEquals(42, object[key]);
32 object[key] = 87;
33 assertEquals(87, object[key]);
34 object[key]++;
35 assertEquals(88, object[key]);
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-84186.js32 var json = '{"key":"';
33 var key = ''; variable
36 key = key + "TESTING" + i + "\\n";
39 json = json + key + '"}';
41 assertEquals(expected, out.key);
/external/compiler-rt/lib/lsan/lit_tests/TestCases/
H A Duse_tls_pthread_specific_static.cc17 pthread_key_t key; local
19 res = pthread_key_create(&key, NULL);
21 assert(key < PTHREAD_KEY_2NDLEVEL_SIZE);
23 res = pthread_setspecific(key, p);
/external/openssl/crypto/des/
H A Ddes_old2.c79 void _ossl_096_des_random_seed(DES_cblock *key) argument
81 RAND_seed(key, sizeof(DES_cblock));
/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/qemu/distrib/sdl-1.2.15/test/
H A Dtestkeys.c13 SDLKey key; local
20 for ( key=SDLK_FIRST; key<SDLK_LAST; ++key ) {
21 printf("Key #%d, \"%s\"\n", key, SDL_GetKeyName(key));
/external/v8/test/mjsunit/
H A Dproperty-object-key.js28 var key = { toString: function() { return 'baz'; } }
31 assertEquals(42, object[key]);
32 object[key] = 87;
33 assertEquals(87, object[key]);
34 object[key]++;
35 assertEquals(88, object[key]);
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-84186.js32 var json = '{"key":"';
33 var key = ''; variable
36 key = key + "TESTING" + i + "\\n";
39 json = json + key + '"}';
41 assertEquals(expected, out.key);
/external/chromium/base/
H A Dbase_paths.cc13 bool PathProvider(int key, FilePath* result) { argument
17 switch (key) {
/external/chromium/chrome/browser/
H A Dpreferences_mac.cc11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, argument
13 return CFPreferencesCopyAppValue(key, applicationID);
16 Boolean MacPreferences::AppValueIsForced(CFStringRef key, argument
18 return CFPreferencesAppValueIsForced(key, applicationID);
/external/chromium/chrome/browser/ui/login/
H A Dlogin_prompt_unittest.cc39 std::string key = GetSignonRealm(GURL(url[i]), *auth_info); local
40 EXPECT_EQ(expected[i], key);
/external/chromium/net/disk_cache/
H A Dhash.h19 inline uint32 Hash(const char* key, size_t length) { argument
20 return SuperFastHash(key, static_cast<int>(length));
23 inline uint32 Hash(const std::string& key) { argument
24 if (key.empty())
26 return SuperFastHash(key.data(), static_cast<int>(key.size()));
/external/chromium_org/base/
H A Dbase_paths.cc13 bool PathProvider(int key, FilePath* result) { argument
17 switch (key) {
H A Dhash.h19 inline uint32 Hash(const char* key, size_t length) { argument
20 return SuperFastHash(key, static_cast<int>(length));
23 inline uint32 Hash(const std::string& key) { argument
24 if (key.empty())
26 return SuperFastHash(key.data(), static_cast<int>(key.size()));
/external/chromium_org/chrome/browser/policy/
H A Dpreferences_mac.cc11 CFPropertyListRef MacPreferences::CopyAppValue(CFStringRef key, argument
13 return CFPreferencesCopyAppValue(key, applicationID);
16 Boolean MacPreferences::AppValueIsForced(CFStringRef key, argument
18 return CFPreferencesAppValueIsForced(key, applicationID);
/external/chromium_org/chrome/browser/ui/login/
H A Dlogin_prompt_unittest.cc38 std::string key = GetSignonRealm(GURL(url[i]), *auth_info.get()); local
39 EXPECT_EQ(expected[i], key);

Completed in 473 milliseconds

1234567891011>>