HomeSort by relevance Sort by last modified time
    Searched refs:_key (Results 1 - 25 of 27) sorted by null

1 2

  /bionic/libc/bionic/
ThreadLocalBuffer.h 41 static pthread_key_t name ## _key; \
46 pthread_key_create(&name ## _key, name ## _key_destroy); \
52 type name ## _buffer = reinterpret_cast<type>(pthread_getspecific(name ## _key)); \
55 pthread_setspecific(name ## _key, name ## _buffer); \
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
HashList.cs 67 private object _key; field in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
75 _key = null;
86 _key = null;
98 if (_key == null)
102 return _key;
110 if (_key == null)
122 if (_key == null)
126 return new DictionaryEntry(_key, _value);
141 _key = null;
149 if (_key == null
    [all...]
  /libcore/luni/src/main/java/java/io/
SerializationHandleMap.java 96 Object _key = key; local
99 int index = findIndex(_key, keys);
102 if (keys[index] != _key) {
105 index = findIndex(_key, keys);
108 keys[index] = _key;
  /external/clang/test/Analysis/
cfref_PR2519.c 31 CFStringRef _key = ((CFStringRef) __builtin___CFStringMakeConstantString ("" "Process identifier" "")); local
35 CFDictionaryRef userInfo = CFDictionaryCreate(kCFAllocatorDefault, (const void **)&_key, (const void **)&_value, 1, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pk.h 48 #define rsa_encrypt_key(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _prng, _prng_idx, _hash_idx, _key) \
49 rsa_encrypt_key_ex(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _prng, _prng_idx, _hash_idx, LTC_PKCS_1_OAEP, _key)
51 #define rsa_decrypt_key(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _hash_idx, _stat, _key) \
52 rsa_decrypt_key_ex(_in, _inlen, _out, _outlen, _lparam, _lparamlen, _hash_idx, LTC_PKCS_1_OAEP, _stat, _key)
54 #define rsa_sign_hash(_in, _inlen, _out, _outlen, _prng, _prng_idx, _hash_idx, _saltlen, _key) \
55 rsa_sign_hash_ex(_in, _inlen, _out, _outlen, LTC_PKCS_1_PSS, _prng, _prng_idx, _hash_idx, _saltlen, _key)
57 #define rsa_verify_hash(_sig, _siglen, _hash, _hashlen, _hash_idx, _saltlen, _stat, _key) \
58 rsa_verify_hash_ex(_sig, _siglen, _hash, _hashlen, LTC_PKCS_1_PSS, _hash_idx, _saltlen, _stat, _key)
  /external/jmdns/src/javax/jmdns/impl/
DNSCache.java 155 private String _key; field in class:DNSCache._CacheEntry
163 _key = (key != null ? key.trim().toLowerCase() : null);
173 _key = ((_CacheEntry) entry).getKey();
183 return (_key != null ? _key : "");
229 return (_key == null ? 0 : _key.hashCode());
239 aLog.append(_key);
DNSEntry.java 24 private final String _key; field in class:DNSEntry
43 // _key = (name != null ? name.trim().toLowerCase() : null);
53 _key = ((instance.length() > 0 ? instance + "." : "") + _type).toLowerCase();
122 return (_key != null ? _key : "");
ServiceInfoImpl.java 59 private transient String _key; field in class:ServiceInfoImpl
405 if (this._key == null) {
406 this._key = this.getQualifiedName().toLowerCase();
408 return this._key;
419 this._key = null;
    [all...]
JmDNSImpl.java 122 private final String _key; field in class:JmDNSImpl.ServiceTypeEntry.SubTypeEntry
128 _key = _value.toLowerCase();
136 return _key;
177 return (_key == null ? 0 : _key.hashCode()) ^ (_value == null ? 0 : _value.hashCode());
195 return _key + "=" + _value;
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebPreferences.mm 417 NSString *_key = KEY(key);
418 id o = [_private->values objectForKey:_key];
421 o = [[NSUserDefaults standardUserDefaults] objectForKey:_key];
422 if (!o && key != _key)
437 NSString *_key = KEY(key);
438 [_private->values setObject:value forKey:_key];
440 [[NSUserDefaults standardUserDefaults] setObject:value forKey:_key];
454 NSString *_key = KEY(key);
455 [_private->values _webkit_setInt:value forKey:_key];
457 [[NSUserDefaults standardUserDefaults] setInteger:value forKey:_key];
    [all...]
  /libcore/luni/src/main/java/java/util/
IdentityHashMap.java 460 Object _key = key;
462 if (_key == null) {
463 _key = NULL_OBJECT;
470 int index = findIndex(_key, elementData);
473 if (elementData[index] != _key) {
477 index = findIndex(_key, elementData);
481 elementData[index] = _key;
  /external/javasqlite/src/main/java/SQLite/
Database.java 815 _key(ekey);
837 _key(ekey);
841 private native void _key(byte[] ekey); method in class:Database
  /external/protobuf/python/
mox.py 953 self._key = key
965 return self._key in rhs
968 return '<sequence or map containing \'%s\'>' % self._key
986 self._key = key
997 return rhs[self._key] == self._value
1002 return '<map containing the entry \'%s: %s\'>' % (self._key, self._value)
    [all...]
  /libcore/luni/src/main/java/java/security/
Provider.java 640 Object _key; local
651 _key = entry.getKey();
653 if (_key == null || _value == null || !(_key instanceof String)
657 String key = (String) _key;
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
peerkey.c 834 const u8 *_key; local
881 _key = (u8 *) peerkey->stk.tk1;
884 os_memcpy(key_buf, _key, 16);
887 _key = key_buf;
894 rsc, sizeof(rsc), _key, key_len) < 0) {
    [all...]
  /external/wpa_supplicant_8/src/rsn_supp/
peerkey.c 834 const u8 *_key; local
881 _key = (u8 *) peerkey->stk.tk1;
884 os_memcpy(key_buf, _key, 16);
887 _key = key_buf;
894 rsc, sizeof(rsc), _key, key_len) < 0) {
    [all...]
  /external/openssl/crypto/aes/asm/
aes-586.pl     [all...]
aes-x86_64.pl     [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 360 Certain functions such as \textit{rsa\_make\_key()} require a Pseudo Random Number Generator (PRNG). These functions do not setup
366 \index{register\_prng()} \index{rsa\_make\_key()}
409 All ciphers store their scheduled keys in a single data type called \textit{symmetric\_key}. This allows all ciphers to
588 Where \textit{name} is the lower case ASCII version of the name. The fields \textit{min\_key\_length} and \textit{max\_key\_length}
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
box2d.js 71 new p;Box2D.Collision.b2Collision.s_tangent2=new p;Box2D.Collision.b2Collision.s_v11=new p;Box2D.Collision.b2Collision.s_v12=new p;Box2D.Collision.b2Collision.b2CollidePolyTempVec=new p;Box2D.Collision.b2Collision.b2_nullFeature=255});L.b2ContactID=function(){this.features=new c};L.prototype.b2ContactID=function(){this.features._m_id=this};L.prototype.Set=function(b){this.key=b._key};L.prototype.Copy=function(){var b=new L;b.key=this.key;return b};Object.defineProperty(L.prototype,"key",{enumerable:false,
72 configurable:true,get:function(){return this._key}});Object.defineProperty(L.prototype,"key",{enumerable:false,configurable:true,set:function(b){if(b===undefined)b=0;this._key=b;this.features._referenceEdge=this._key&255;this.features._incidentEdge=(this._key&65280)>>8&255;this.features._incidentVertex=(this._key&16711680)>>16&255;this.features._flip=(this._key&4278190080)>>24&255}});I.b2ContactPoint=function(){this.position=new p;this.velocity=new p;this.normal=new p;this.id=new L};W.b2Distance=
    [all...]
  /tools/motodev/src/plugins/android/
jakarta-oro-2.0.8.jar 
  /tools/motodev/src/plugins/common/
jakarta-oro-2.0.8.jar 
  /tools/motodev/src/plugins/emulator/lib/
jakarta-oro-2.0.8.jar 
  /tools/motodev/src/plugins/translation/
jakarta-oro-2.0.8.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.util_6.1.23.v201004211559.jar 

Completed in 1207 milliseconds

1 2