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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
RC2Parameters.java 8 private byte[] key; field in class:RC2Parameters
12 byte[] key)
14 this(key, (key.length > 128) ? 1024 : (key.length * 8));
18 byte[] key,
21 this.key = new byte[key.length];
24 System.arraycopy(key, 0, this.key, 0, key.length)
    [all...]
KeyParameter.java 8 private byte[] key; field in class:KeyParameter
11 byte[] key)
13 this(key, 0, key.length);
17 byte[] key,
21 this.key = new byte[keyLen];
23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
28 return key;
DESedeParameters.java 7 * DES-EDE Key length in bytes.
12 byte[] key)
14 super(key);
16 if (isWeakKey(key, 0, key.length))
18 throw new IllegalArgumentException("attempt to create weak DESede key");
23 * return true if the passed in key is a DES-EDE weak key.
25 * @param key bytes making up the key
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/
HeaderProperty.java 5 * HeaderProperty is a key - value pojo for storing http header properties.
8 private String key; field in class:HeaderProperty
11 public HeaderProperty(String key, String value) {
12 this.key = key;
17 return key;
20 public void setKey(String key) {
21 this.key = key;
  /external/chromium_org/gpu/command_buffer/common/
thread_local.h 5 // Functions for allocating and accessing thread local values via key.
28 ThreadLocalKey key;
29 pthread_key_create(&key, NULL);
30 return key;
34 inline void ThreadLocalFree(ThreadLocalKey key) {
36 TlsFree(key);
38 pthread_key_delete(key);
42 inline void ThreadLocalSetValue(ThreadLocalKey key, void* value) {
44 TlsSetValue(key, value);
46 pthread_setspecific(key, value)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
SystemProperty.java 17 private String key; field in class:SystemProperty
25 System.setProperty(key, value);
26 if (System.getProperty(key).equals(value))
27 System.out.println("System property "+key+" set to "+System.getProperty(key));
29 System.out.println("System property "+key+" could not be set. Currently set to "+System.getProperty(key));
34 return key;
37 public void setKey(String key) {
38 this.key = key
    [all...]
  /external/chromium_org/base/threading/
thread_local_storage_posix.cc 13 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) {
14 return !pthread_key_create(key,
18 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) {
19 int ret = pthread_key_delete(key);
23 void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) {
24 return pthread_getspecific(key);
27 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) {
28 int ret = pthread_setspecific(key, value);
  /external/chromium_org/build/android/pylib/
system_properties.py 10 System properties are key/value pairs as exposed by adb shell getprop/setprop.
21 def __getitem__(self, key):
22 if self._IsStatic(key):
23 if key not in self._cached_static_properties:
24 self._cached_static_properties[key] = self._GetProperty(key)
25 return self._cached_static_properties[key]
26 return self._GetProperty(key)
28 def __setitem__(self, key, value):
30 self._adb.SendShellCommand('setprop %s "%s"' % (key, value), retry_count=3
    [all...]
  /external/chromium_org/third_party/libsrtp/srtp/crypto/kernel/
key.c 2 * key.c
4 * key usage limits enforcement
45 #include "key.h"
50 key_limit_set(key_limit_t key, const xtd_seq_num_t s) {
58 key->num_left = s;
59 key->state = key_state_normal;
72 key_limit_check(const key_limit_t key) {
73 if (key->state == key_state_expired)
79 key_limit_update(key_limit_t key) {
81 if (low32(key->num_left) == 0
    [all...]
  /external/chromium_org/media/base/
scoped_histogram_timer.h 17 #define SCOPED_UMA_HISTOGRAM_TIMER_EXPANDER(name, key) \
18 SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, key)
20 #define SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, key) \
21 class ScopedHistogramTimer##key { \
23 ScopedHistogramTimer##key() : constructed_(base::TimeTicks::Now()) {} \
24 ~ScopedHistogramTimer##key() { \
30 } scoped_histogram_timer_##key
  /external/chromium_org/chromeos/login/auth/
key_unittest.cc 5 #include "chromeos/login/auth/key.h"
21 Key key(kPassword);
22 key.SetLabel(kLabel);
23 EXPECT_EQ(Key::KEY_TYPE_PASSWORD_PLAIN, key.GetKeyType());
24 EXPECT_EQ(kPassword, key.GetSecret());
25 EXPECT_EQ(kLabel, key.GetLabel());
27 key.ClearSecret();
28 EXPECT_EQ(Key::KEY_TYPE_PASSWORD_PLAIN, key.GetKeyType())
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_key_delete.c 42 pthread_key_delete (pthread_key_t key)
46 * This function deletes a thread-specific data key. This
47 * does not change the value of the thread specific data key
48 * for any thread and does not run the key's destructor
52 * key
57 * This function deletes a thread-specific data key. This
58 * does not change the value of the thread specific data key
59 * for any thread and does not run the key's destructor
63 * 0 successfully deleted the key,
64 * EINVAL key is invalid
    [all...]
  /external/chromium_org/net/android/java/src/org/chromium/net/
AndroidKeyStore.java 17 * Returns the public modulus of a given RSA private key as a byte
23 * @param key A PrivateKey instance, must implement RSAKey.
28 byte[] getRSAKeyModulus(AndroidPrivateKey key);
31 * Returns the 'Q' parameter of a given DSA private key as a byte
36 * @param key A PrivateKey instance. Must implement DSAKey.
41 byte[] getDSAKeyParamQ(AndroidPrivateKey key);
44 * Returns the 'order' parameter of a given ECDSA private key as a
46 * @param key A PrivateKey instance. Must implement ECKey.
51 byte[] getECKeyOrder(AndroidPrivateKey key);
58 * @param key A PrivateKey instanc
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
persistent_object_store_test.py 17 object_store.Set('key', 'value')
18 self.assertEqual('value', object_store.Get('key').Get())
21 self.assertEqual('value', another_object_store.Get('key').Get())
36 object_store.Set('key', 'value')
37 self.assertEqual(None, another_object_store.Get('key').Get())
  /external/chromium_org/third_party/tcmalloc/chromium/src/
maybe_threads.h 45 int perftools_pthread_key_create(pthread_key_t *key,
47 void *perftools_pthread_getspecific(pthread_key_t key);
48 int perftools_pthread_setspecific(pthread_key_t key, void *val);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
maybe_threads.h 45 int perftools_pthread_key_create(pthread_key_t *key,
47 void *perftools_pthread_getspecific(pthread_key_t key);
48 int perftools_pthread_setspecific(pthread_key_t key, void *val);
  /external/chromium_org/third_party/smhasher/src/
Hashes.h 12 void sumhash ( const void * key, int len, uint32_t seed, void * out );
13 void sumhash32 ( const void * key, int len, uint32_t seed, void * out );
15 void DoNothingHash ( const void * key, int len, uint32_t seed, void * out );
16 void crc32 ( const void * key, int len, uint32_t seed, void * out );
18 void randhash_32 ( const void * key, int len, uint32_t seed, void * out );
19 void randhash_64 ( const void * key, int len, uint32_t seed, void * out );
20 void randhash_128 ( const void * key, int len, uint32_t seed, void * out );
25 void md5_32 ( const void * key, int len, uint32_t seed, void * out );
26 void sha1_32a ( const void * key, int len, uint32_t seed, void * out );
31 void FNV ( const void * key, int len, uint32_t seed, void * out )
    [all...]
  /external/chromium_org/components/ownership/
owner_key_util.cc 23 PrivateKey::PrivateKey(crypto::RSAPrivateKey* key) : key_(key) {
  /external/chromium_org/third_party/libaddressinput/chromium/
fallback_data_store.cc 11 bool FallbackDataStore::Get(const std::string& key, std::string* data) {
12 if (key != "data/US")
21 "e\": \"Louisiana\", \"zip\": \"70|71[0-5]\", \"key\": \"LA\", \"id\":"
23 "0,05999\", \"name\": \"Vermont\", \"zip\": \"05\", \"key\": \"VT\", \""
28 "0[78]\", \"key\": \"NJ\", \"id\": \"data/US/NJ\"}, \"data/US/NH\": {\""
30 ", \"zip\": \"03[0-8]\", \"key\": \"NH\", \"id\": \"data/US/NH\"}, \"d"
32 " \"North Dakota\", \"zip\": \"58\", \"key\": \"ND\", \"id\": \"data/US"
34 " \"name\": \"Nebraska\", \"zip\": \"6[89]\", \"key\": \"NE\", \"id\":"
36 "0,28999\", \"name\": \"North Carolina\", \"zip\": \"2[78]\", \"key\":"
39 "p\": \"00[679]\", \"key\": \"PR\", \"id\": \"data/US/PR\"}, \"data/US/
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
DataSource.java 23 AddressVerificationNodeData getDefaultData(String key);
24 AddressVerificationNodeData get(String key);
  /external/openssl/crypto/des/
des_old2.c 79 void _ossl_096_des_random_seed(DES_cblock *key)
81 RAND_seed(key, sizeof(DES_cblock));
  /bionic/libc/bionic/
pthread_key.cpp 54 * When pthread_key_delete() is called it will erase the key's bitmap bit
55 * and its destructor, and will also clear the key data in the TLS area of
66 static inline bool IsValidUserKey(pthread_key_t key) {
67 return (key >= TLS_SLOT_FIRST_USER_SLOT && key < BIONIC_TLS_SLOTS);
93 for (pthread_key_t key = 0; key < TLS_SLOT_FIRST_USER_SLOT; ++key) {
94 SetInUse(key, NULL);
105 // Take the first unallocated key
    [all...]
  /external/chromium_org/third_party/markdown/extensions/
__init__.py 51 def getConfig(self, key, default=''):
52 """ Return a setting for the given key or an empty string. """
53 if key in self.config:
54 return self.config[key][0]
60 return dict([(key, self.getConfig(key)) for key in self.config.keys()])
64 return [(key, self.config[key][1]) for key in self.config.keys()
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/drive_backend/
metadata_db_migration_util.cc 30 // Key prefixes used in version 4.
46 std::string key = itr->key().ToString(); local
49 if (StartsWithASCII(key, kServiceMetadataKey, true) ||
50 StartsWithASCII(key, kFileMetadataKeyPrefix, true) ||
51 StartsWithASCII(key, kFileTrackerKeyPrefix, true)) {
56 if (StartsWithASCII(key, kAppRootIDByAppIDKeyPrefix, true) ||
57 StartsWithASCII(key, kActiveTrackerIDByFileIDKeyPrefix, true) ||
58 StartsWithASCII(key, kTrackerIDByFileIDKeyPrefix, true) ||
59 StartsWithASCII(key, kMultiTrackerByFileIDKeyPrefix, true) |
    [all...]
  /external/chromium_org/chrome/common/net/
net_resource_provider.h 13 base::StringPiece NetResourceProvider(int key);

Completed in 1411 milliseconds

1 2 3 4 5 6 7 8 91011>>