Searched refs:key (Results 26 - 50 of 3578) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/mac/Misc/
H A DWebNSDictionaryExtras.h32 - (BOOL)_webkit_boolForKey:(id)key;
33 - (int)_webkit_intForKey:(id)key;
34 - (NSString *)_webkit_stringForKey:(id)key; // Returns nil if the value is not an NSString.
35 - (NSArray *)_webkit_arrayForKey:(id)key; // Returns nil if the value is not an NSArray.
42 - (void)_webkit_setObject:(id)object forUncopiedKey:(id)key;
43 - (void)_webkit_setInt:(int)value forKey:(id)key;
44 - (void)_webkit_setFloat:(float)value forKey:(id)key;
45 - (void)_webkit_setBool:(BOOL)value forKey:(id)key;
46 - (void)_webkit_setLongLong:(long long)value forKey:(id)key;
47 - (void)_webkit_setUnsignedLongLong:(unsigned long long)value forKey:(id)key;
[all...]
H A DWebLocalizableStringsInternal.h35 NSString *WebLocalizedStringInternal(const char* key);
42 #define UI_STRING_KEY_INTERNAL(string, key, comment) WebLocalizedStringInternal(key)
H A DWebLocalizableStringsInternal.mm33 NSString *WebLocalizedStringInternal(const char* key)
35 return localizedString(key);
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_export.c24 @param type The type of exported key (PK_PRIVATE or PK_PUBLIC)
25 @param key The Katja key to export
28 int katja_export(unsigned char *out, unsigned long *outlen, int type, katja_key *key) argument
35 LTC_ARGCHK(key != NULL);
38 if (!(key->type == PK_PRIVATE) && (type == PK_PRIVATE)) {
43 /* private key */
49 LTC_ASN1_INTEGER, 1UL, key->N,
50 LTC_ASN1_INTEGER, 1UL, key->d,
51 LTC_ASN1_INTEGER, 1UL, key
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetInfo.java46 protected AssetKey key; field in class:AssetInfo
48 public AssetInfo(AssetManager manager, AssetKey key) { argument
50 this.key = key;
54 return key;
63 return getClass().getName() + "[" + "key=" + key + "]";
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8IDBKeyCustom.cpp39 v8::Handle<v8::Value> toV8(IDBKey* key) argument
41 if (!key)
44 switch (key->type()) {
48 return v8::Number::New(key->number());
50 return v8String(key->string());
52 return v8::Date::New(key->date());
/external/chromium-trace/trace-viewer/src/
H A Dsettings.js35 * @param {string} key The name of the setting.
41 get: function(key, opt_default, opt_namespace) {
42 key = this.namespace_(key, opt_namespace);
43 if (!(key in this.storage_))
45 return String(this.storage_[key]);
51 * @param {string} key The name of the setting.
57 set: function(key, value, opt_namespace) {
58 this.storage_[this.namespace_(key, opt_namespace)] = String(value);
72 var key
[all...]
/external/kernel-headers/original/linux/
H A Dkey.h0 /* key.h: authentication token and access key management
26 /* key handle serial number */
29 /* key handle permissions mask */
32 struct key;
38 #define KEY_POS_VIEW 0x01000000 /* possessor can view a key's attributes */
39 #define KEY_POS_READ 0x02000000 /* possessor can read key payload / view keyring */
40 #define KEY_POS_WRITE 0x04000000 /* possessor can update key payload / add link to keyring */
41 #define KEY_POS_SEARCH 0x08000000 /* possessor can find a key in search / search a keyring */
42 #define KEY_POS_LINK 0x10000000 /* possessor can create a link to a key/keyrin
95 make_key_ref(const struct key *key, unsigned long possession) argument
119 struct key { struct
273 key_get(struct key *key) argument
[all...]
/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/v8/test/mjsunit/regress/
H A Dregress-284.js32 for (var key in [0]) {
43 for (var key in [0]) {
H A Dregress-119925.js32 for (var key in [(1.2)]) { }
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Drsa.c25 int private_key; /* whether private key is set */
64 * crypto_rsa_import_public_key - Import an RSA public key
65 * @buf: Key buffer (DER encoded RSA public key)
67 * Returns: Pointer to the public key or %NULL on failure
72 struct crypto_rsa_key *key; local
76 key = os_zalloc(sizeof(*key));
77 if (key == NULL)
80 key->n = bignum_init();
81 key
136 struct crypto_rsa_key *key; local
235 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
251 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
348 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
128 struct crypto_rsa_key *key; local
226 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
242 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
339 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
128 struct crypto_rsa_key *key; local
226 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
242 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
339 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
128 struct crypto_rsa_key *key; local
226 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
242 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
339 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DHashFunctions.h40 unsigned key = key8; local
41 key += ~(key << 15);
42 key ^= (key >> 10);
43 key += (key << 3);
44 key ^= (key >> 6);
45 key
53 unsigned key = key16; local
64 intHash(uint32_t key) argument
76 intHash(uint64_t key) argument
90 hash(T key) argument
96 hash(T key) argument
99 T key; member in union:WTF::FloatHash::__anon14410
112 hash(T key) argument
128 hash(const RefPtr<P>& key) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DDocumentOrderedMap.cpp43 inline bool keyMatchesId(AtomicStringImpl* key, Element* element) argument
45 return element->hasID() && element->getIdAttribute().impl() == key;
48 inline bool keyMatchesMapName(AtomicStringImpl* key, Element* element) argument
50 return element->hasTagName(mapTag) && static_cast<HTMLMapElement*>(element)->getName().impl() == key;
53 inline bool keyMatchesLowercasedMapName(AtomicStringImpl* key, Element* element) argument
55 return element->hasTagName(mapTag) && static_cast<HTMLMapElement*>(element)->getName().lower().impl() == key;
64 void DocumentOrderedMap::add(AtomicStringImpl* key, Element* element) argument
66 ASSERT(key);
69 if (!m_duplicateCounts.contains(key)) {
70 // Fast path. The key i
94 remove(AtomicStringImpl* key, Element* element) argument
108 get(AtomicStringImpl* key, const TreeScope* scope) const argument
136 getElementById(AtomicStringImpl* key, const TreeScope* scope) const argument
141 getElementByMapName(AtomicStringImpl* key, const TreeScope* scope) const argument
146 getElementByLowercasedMapName(AtomicStringImpl* key, const TreeScope* scope) const argument
[all...]
/external/dropbear/
H A Dgendss.c40 static void getq(dss_key *key);
41 static void getp(dss_key *key, unsigned int size);
42 static void getg(dss_key *key);
43 static void getx(dss_key *key);
44 static void gety(dss_key *key);
48 dss_key *key; local
50 key = (dss_key*)m_malloc(sizeof(dss_key));
52 key->p = (mp_int*)m_malloc(sizeof(mp_int));
53 key->q = (mp_int*)m_malloc(sizeof(mp_int));
54 key
71 getq(dss_key *key) argument
89 getp(dss_key *key, unsigned int size) argument
148 getg(dss_key * key) argument
185 getx(dss_key *key) argument
190 gety(dss_key *key) argument
[all...]
H A Drsa.c41 static void rsa_pad_em(rsa_key * key,
45 /* Load a public rsa key from a buffer, initialising the values.
46 * The key will have the same format as buf_put_rsa_key.
49 int buf_get_rsa_pub_key(buffer* buf, rsa_key *key) { argument
53 dropbear_assert(key != NULL);
54 key->e = m_malloc(sizeof(mp_int));
55 key->n = m_malloc(sizeof(mp_int));
56 m_mp_init_multi(key->e, key->n, NULL);
57 key
87 buf_get_rsa_priv_key(buffer* buf, rsa_key *key) argument
140 rsa_key_free(rsa_key *key) argument
178 buf_put_rsa_pub_key(buffer* buf, rsa_key *key) argument
192 buf_put_rsa_priv_key(buffer* buf, rsa_key *key) argument
216 buf_rsa_verify(buffer * buf, rsa_key *key, const unsigned char* data, unsigned int len) argument
273 buf_put_rsa_sign(buffer* buf, rsa_key *key, const unsigned char* data, unsigned int len) argument
379 rsa_pad_em(rsa_key * key, const unsigned char * data, unsigned int len, mp_int * rsa_em) argument
[all...]
H A Drsa.h47 void buf_put_rsa_sign(buffer* buf, rsa_key *key, const unsigned char* data,
50 int buf_rsa_verify(buffer * buf, rsa_key *key, const unsigned char* data,
53 int buf_get_rsa_pub_key(buffer* buf, rsa_key *key);
54 int buf_get_rsa_priv_key(buffer* buf, rsa_key *key);
55 void buf_put_rsa_pub_key(buffer* buf, rsa_key *key);
56 void buf_put_rsa_priv_key(buffer* buf, rsa_key *key);
57 void rsa_key_free(rsa_key *key);
/external/chromium/base/win/
H A Dregistry_unittest.cc21 // Create a temporary key.
22 RegKey key(HKEY_CURRENT_USER, L"", KEY_ALL_ACCESS);
23 key.DeleteKey(kRootKey);
24 ASSERT_NE(ERROR_SUCCESS, key.Open(HKEY_CURRENT_USER, kRootKey, KEY_READ));
25 ASSERT_EQ(ERROR_SUCCESS, key.Create(HKEY_CURRENT_USER, kRootKey, KEY_READ));
29 // Clean up the temporary key.
30 RegKey key(HKEY_CURRENT_USER, L"", KEY_SET_VALUE);
31 ASSERT_EQ(ERROR_SUCCESS, key.DeleteKey(kRootKey));
39 RegKey key; local
43 ASSERT_EQ(ERROR_SUCCESS, key
[all...]
/external/chromium/base/
H A Dpath_service_unittest.cc53 for (int key = base::DIR_CURRENT; key < base::PATH_END; ++key) {
54 EXPECT_PRED1(ReturnsValidPath, key);
57 for (int key = base::PATH_WIN_START + 1; key < base::PATH_WIN_END; ++key) {
58 if (key == base::DIR_LOCAL_APP_DATA_LOW &&
62 EXPECT_TRUE(ReturnsInvalidPath(key)) << key;
[all...]
/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/quake/quake/src/WinQuake/
H A Dmenu.h34 void M_Keydown (int key);
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_config.h52 int btif_config_exist(const char* section, const char* key, const char* name);
53 int btif_config_get_int(const char* section, const char* key, const char* name, int* value);
54 int btif_config_set_int(const char* section, const char* key, const char* name, int value);
55 int btif_config_get_str(const char* section, const char* key, const char* name, char* value, int* bytes);
56 int btif_config_set_str(const char* section, const char* key, const char* name, const char* value);
58 int btif_config_get(const char* section, const char* key, const char* name, char* value, int* bytes, int* type);
59 int btif_config_set(const char* section, const char* key, const char* name, const char* value, int bytes, int type);
61 int btif_config_remove(const char* section, const char* key, const char* name);
64 short btif_config_next_value(short pos, const char* section, const char* key, char* value_name, int* value_name_bytes);
66 typedef void (*btif_config_enum_callback)(void* user_data, const char* section, const char* key, cons
[all...]

Completed in 620 milliseconds

1234567891011>>