HomeSort by relevance Sort by last modified time
    Searched defs:key (Results 251 - 275 of 2049) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/html/
RadioInputType.cpp 69 const String& key = event->keyIdentifier(); local
70 if (key != "Up" && key != "Down" && key != "Left" && key != "Right")
81 bool forward = (key == "Down" || key == "Right");
108 const String& key = event->keyIdentifier(); local
109 if (key != "U+0020")
  /external/webkit/Source/WebKit/win/
CFDictionaryPropertyBag.cpp 163 CFStringRef key = MarshallingHelpers::LPCOLESTRToCFStringRef(pszPropName); local
165 if (CFDictionaryGetValueIfPresent(m_dictionary.get(), key, (const void**) &value)) {
170 CFRelease(key);
185 CFStringRef key = MarshallingHelpers::LPCOLESTRToCFStringRef(pszPropName); local
186 CFDictionaryAddValue(m_dictionary.get(), key, cfObj);
188 CFRelease(key);
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentCoders.h 179 KeyArg key; local
181 if (!decoder->decode(key))
186 if (!tempHashMap.add(key, value).second) {
187 // The hash map already has the specified key, bail.
  /external/wpa_supplicant_6/wpa_supplicant/
dbus_dict_helpers.h 29 const char *key, const char *value);
32 const char *key, const char value);
35 const char *key,
39 const char *key,
43 const char *key,
47 const char *key,
51 const char *key,
55 const char *key,
59 const char *key,
63 const char *key,
104 const char *key; \/** key of the dict entry *\/ member in struct:wpa_dbus_dict_entry
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_internal.c 26 u8 key[64]; member in struct:crypto_hash
31 struct crypto_hash * crypto_hash_init(enum crypto_hash_alg alg, const u8 *key,
60 MD5Update(&ctx->u.md5, key, key_len);
62 key = tk;
65 os_memcpy(ctx->key, key, key_len);
68 os_memcpy(k_pad, key, key_len);
79 SHA1Update(&ctx->u.sha1, key, key_len);
81 key = tk;
84 os_memcpy(ctx->key, key, key_len)
    [all...]
  /frameworks/av/drm/common/
DrmInfo.cpp 44 status_t DrmInfo::put(const String8& key, const String8& value) {
45 mAttributes.add(key, value);
49 String8 DrmInfo::get(const String8& key) const {
50 if (NAME_NOT_FOUND != mAttributes.indexOfKey(key)) {
51 return mAttributes.valueFor(key);
56 int DrmInfo::indexOfKey(const String8& key) const {
57 return mAttributes.indexOfKey(key);
79 const String8& key = mDrmInfo->mAttributes.keyAt(mIndex); local
81 return key;
  /frameworks/av/include/drm/
DrmMetadata.h 33 * Iterator for key
82 String8 key = keyIt.next(); local
83 const char* value = this->getAsByteArray(&key);
94 status_t put(const String8* key, const char* value);
95 String8 get(const String8& key) const;
96 const char* getAsByteArray(const String8* key) const;
101 const char* getValue(const String8* key) const;
  /frameworks/base/core/java/com/android/internal/net/
LegacyVpnInfo.java 37 public String key; field in class:LegacyVpnInfo
48 out.writeString(key);
58 info.key = in.readString();
  /frameworks/native/libs/utils/tests/
BlobCache_test.cpp 117 char key[MAX_KEY_SIZE+1]; local
120 key[i] = 'a';
122 mBC->set(key, MAX_KEY_SIZE+1, "bbbb", 4);
123 ASSERT_EQ(size_t(0), mBC->get(key, MAX_KEY_SIZE+1, buf, 4));
153 char key[MAX_KEY_SIZE];
156 key[i] = 'a';
162 mBC->set(key, MAX_KEY_SIZE, buf, MAX_VALUE_SIZE);
163 ASSERT_EQ(size_t(0), mBC->get(key, MAX_KEY_SIZE, NULL, 0));
167 char key[MAX_KEY_SIZE];
170 key[i] = 'a'
    [all...]
  /libcore/luni/src/main/java/java/util/
MapEntry.java 25 K key; field in class:MapEntry
33 key = theKey;
37 key = theKey;
57 return (key == null ? entry.getKey() == null : key.equals(entry
66 return key;
75 return (key == null ? 0 : key.hashCode())
87 return key + "=" + value;
  /libcore/luni/src/main/java/libcore/util/
BasicLruCache.java 39 * Returns the value for {@code key} if it exists in the cache or can be
44 public synchronized final V get(K key) {
45 if (key == null) {
49 V result = map.get(key);
54 result = create(key);
57 map.put(key, result);
64 * Caches {@code value} for {@code key}. The value is moved to the head of
67 * @return the previous value mapped by {@code key}. Although that entry is
70 public synchronized final V put(K key, V value) {
71 if (key == null || value == null)
84 K key = toEvict.getKey(); local
    [all...]
  /libcore/luni/src/test/java/tests/security/interfaces/
RSAPrivateCrtKeyTest.java 25 RSAPrivateCrtKey key = null; field in class:RSAPrivateCrtKeyTest
30 key = (RSAPrivateCrtKey) gen.generatePrivate(Util.rsaCrtParam);
39 Util.rsaCrtParam.getCrtCoefficient(), key.getCrtCoefficient());
48 Util.rsaCrtParam.getPrimeExponentP(), key.getPrimeExponentP());
57 Util.rsaCrtParam.getPrimeExponentQ(), key.getPrimeExponentQ());
66 Util.rsaCrtParam.getPrimeP(), key.getPrimeP());
75 Util.rsaCrtParam.getPrimeQ(), key.getPrimeQ());
84 Util.rsaCrtParam.getPublicExponent(), key.getPublicExponent());
88 key = null;
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
CertificateStub.java 42 PublicKey key; field in class:CertificateStub
44 public CertificateStub(String format, Principal guarantor, Principal principal, PublicKey key){
48 this.key = key;
98 return key;
  /libcore/support/src/test/java/tests/security/
AlgorithmParameterSymmetricHelper.java 22 import java.security.Key;
61 Key key = generator.generateKey(); local
79 cipher.init(Cipher.ENCRYPT_MODE, key, parameters);
96 cipher.init(Cipher.DECRYPT_MODE, key, parameters);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
ypupd.h 57 yp_buf key; member in struct:ypupdate_args
66 yp_buf key; member in struct:ypdelete_args
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
ypupd.h 57 yp_buf key; member in struct:ypupdate_args
66 yp_buf key; member in struct:ypdelete_args
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
ypupd.h 57 yp_buf key; member in struct:ypupdate_args
66 yp_buf key; member in struct:ypdelete_args
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PkgCategoryApi.java 27 // When sorting by Source, key is the hash of the source's name.
28 // When storing by API, key is the AndroidVersion (API level >=1 + optional codename).
55 AndroidVersion key = (AndroidVersion) getKey(); local
56 if (key.equals(KEY_TOOLS)) {
58 } else if (key.equals(KEY_EXTRA)) {
61 return key.toString();
69 AndroidVersion key = (AndroidVersion) getKey(); local
71 if (key.equals(KEY_TOOLS)) {
73 } else if (key.equals(KEY_EXTRA)) {
  /frameworks/base/services/java/com/android/server/am/
PendingIntentRecord.java 36 final Key key; field in class:PendingIntentRecord
44 final static class Key {
60 Key(int _t, String _p, ActivityRecord _a, String _w,
101 Key other = (Key)otherObj;
155 return "Key{" + typeName() + " pkg=" + packageName
177 PendingIntentRecord(ActivityManagerService _owner, Key _k, int _u) {
179 key = _k;
197 if ((key.flags&PendingIntent.FLAG_ONE_SHOT) != 0)
    [all...]
  /bionic/libc/kernel/common/linux/
ipc.h 26 __kernel_key_t key; member in struct:ipc_perm
  /bionic/libc/kernel/common/linux/netfilter_ipv4/
ip_conntrack_tuple.h 44 __be16 key; member in struct:ip_conntrack_manip_proto::__anon383
79 __be16 key; member in struct:ip_conntrack_tuple::__anon384::__anon385::__anon390
  /bootable/recovery/
ui.cpp 76 // key event.
79 self->process_key(KEY_DOWN, 1); // press down key
83 self->process_key(KEY_UP, 1); // press up key
98 // Process a key-up or -down event. A key is "registered" when it is
102 // queued to be processed next time the foreground thread wants a key
107 // a key is registered.
109 // updown == 1 for key down events; 0 for key up events
150 // Reads input events, handles special hot keys, and adds to the key queue
181 int key = -1; local
    [all...]
  /cts/tools/cts-xml-generator/src/com/android/cts/xmlgenerator/
TestListParser.java 48 String key = tokens[0]; local
50 if ("suite".equals(key)) {
52 } else if ("case".equals(key)) {
54 } else if ("test".equals(key)) {
  /cts/tools/signature-tools/src/signature/converter/dex/
FieldPool.java 66 FieldKey key = new FieldKey(qualifiedClassName, fieldName); local
67 SigField sigField = fieldStore.get(key);
70 fieldStore.put(key, sigField);
77 FieldKey key = new FieldKey(qualifiedName, fieldName); local
78 SigEnumConstant sigField = constantStore.get(key);
81 constantStore.put(key, sigField);
  /development/ndk/platforms/android-3/include/linux/
ipc.h 21 __kernel_key_t key; member in struct:ipc_perm

Completed in 582 milliseconds

<<11121314151617181920>>