Searched defs:key (Results 76 - 100 of 3799) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DDHUtil.java22 PublicKey key)
25 if (key instanceof DHPublicKey)
27 DHPublicKey k = (DHPublicKey)key;
33 throw new InvalidKeyException("can't identify DH public key.");
37 PrivateKey key)
40 if (key instanceof DHPrivateKey)
42 DHPrivateKey k = (DHPrivateKey)key;
48 throw new InvalidKeyException("can't identify DH private key.");
21 generatePublicKeyParameter( PublicKey key) argument
36 generatePrivateKeyParameter( PrivateKey key) argument
/external/chromium_org/ash/ime/
H A Dinput_method_menu_item.h31 std::string key; // A key which identifies the property. Non-empty string. member in struct:ash::ime::InputMethodMenuItem
/external/chromium_org/base/
H A Dbase_paths_win.cc21 bool PathProviderWin(int key, FilePath* result) { argument
31 switch (key) {
H A Dsupports_user_data_unittest.cc17 UsesItself(SupportsUserData* supports_user_data, const void* key) argument
19 key_(key) {
32 char key = 0; local
33 supports_user_data.SetUserData(&key,
34 new UsesItself(&supports_user_data, &key));
/external/chromium_org/base/prefs/
H A Dpref_store_observer_mock.cc22 void PrefStoreObserverMock::OnPrefValueChanged(const std::string& key) { argument
23 changed_keys.push_back(key);
/external/chromium_org/base/threading/
H A Dthread_local_storage_posix.cc13 bool PlatformThreadLocalStorage::AllocTLS(TLSKey* key) { argument
14 return !pthread_key_create(key,
18 void PlatformThreadLocalStorage::FreeTLS(TLSKey key) { argument
19 int ret = pthread_key_delete(key);
23 void* PlatformThreadLocalStorage::GetTLSValue(TLSKey key) { argument
24 return pthread_getspecific(key);
27 void PlatformThreadLocalStorage::SetTLSValue(TLSKey key, void* value) { argument
28 int ret = pthread_setspecific(key, value);
/external/chromium_org/chrome/browser/safe_browsing/
H A Dping_manager_unittest.cc26 std::string key = google_apis::GetAPIKey(); local
27 if (!key.empty()) {
29 "&key=%s",
30 net::EscapeQueryParamValue(key, true).c_str());
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_shared_settings_update.cc14 const std::string& key,
19 key_(key),
22 service->SetValueInternal(su_id, key, *value_, false);
31 const std::string& su_id, const std::string& key) {
35 if (key != key_)
38 const base::Value* value = service_->GetValue(su_id, key);
11 SupervisedUserSharedSettingsUpdate( SupervisedUserSharedSettingsService* service, const std::string& su_id, const std::string& key, scoped_ptr<base::Value> value, const base::Callback<void(bool)>& success_callback) argument
30 OnSettingChanged( const std::string& su_id, const std::string& key) argument
/external/chromium_org/chrome/installer/util/
H A Dhelper.cc23 int key = local
26 int key = system_install ? base::DIR_PROGRAM_FILES : base::DIR_LOCAL_APP_DATA; local
28 if (PathService::Get(key, &install_path)) {
/external/chromium_org/chrome/test/chromedriver/
H A Dkeycode_text_conversion_ozone.cc21 base::char16 key, ui::KeyboardCode* key_code, int *necessary_modifiers,
20 ConvertCharToKeyCode( base::char16 key, ui::KeyboardCode* key_code, int *necessary_modifiers, std::string* error_msg) argument
/external/chromium_org/chromecast/common/
H A Dcast_paths.cc16 bool PathProvider(int key, base::FilePath* result) { argument
17 switch (key) {
/external/chromium_org/components/nacl/common/
H A Dnacl_paths.cc24 bool PathProvider(int key, base::FilePath* result) { argument
26 switch (key) {
/external/chromium_org/components/ownership/
H A Downer_key_util.cc23 PrivateKey::PrivateKey(crypto::RSAPrivateKey* key) : key_(key) { argument
/external/chromium_org/components/storage_monitor/
H A Dudev_util_linux.cc13 const char* key) {
14 const char* value = udev_device_get_property_value(udev_device, key);
19 const char* key,
28 *result = GetUdevDevicePropertyValue(device.get(), key);
12 GetUdevDevicePropertyValue(struct udev_device* udev_device, const char* key) argument
18 GetUdevDevicePropertyValueByPath(const base::FilePath& device_path, const char* key, std::string* result) argument
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_key_builders.cc48 IndexedDBKey IndexedDBKeyBuilder::Build(const blink::WebIDBKey& key) { argument
49 switch (key.keyType()) {
51 return IndexedDBKey(CopyKeyArray(key));
54 std::string(key.binary().data(), key.binary().size()));
56 return IndexedDBKey(key.string());
58 return IndexedDBKey(key.date(), WebIDBKeyTypeDate);
60 return IndexedDBKey(key.number(), WebIDBKeyTypeNumber);
63 return IndexedDBKey(key.keyType());
71 WebIDBKey WebIDBKeyBuilder::Build(const IndexedDBKey& key) { argument
[all...]
/external/chromium_org/content/child/webcrypto/openssl/
H A Dsym_key_openssl.cc24 blink::WebCryptoKey* key) {
34 *key =
47 blink::WebCryptoKey* key) {
48 *key = blink::WebCryptoKey::create(new SymKeyOpenSsl(key_data),
20 GenerateSecretKeyOpenSsl(const blink::WebCryptoKeyAlgorithm& algorithm, bool extractable, blink::WebCryptoKeyUsageMask usage_mask, unsigned keylen_bytes, blink::WebCryptoKey* key) argument
43 ImportKeyRawOpenSsl(const CryptoData& key_data, const blink::WebCryptoKeyAlgorithm& algorithm, bool extractable, blink::WebCryptoKeyUsageMask usage_mask, blink::WebCryptoKey* key) argument
/external/chromium_org/crypto/
H A Dhmac.cc15 bool HMAC::Init(SymmetricKey* key) { argument
17 bool result = key->GetRawKey(&raw_key) && Init(raw_key);
18 // Zero out key copy. This might get optimized away, but one can hope.
19 // Using std::string to store key info at all is a larger problem.
/external/chromium_org/extensions/browser/
H A Dextension_pref_store.cc22 void ExtensionPrefStore::OnPrefValueChanged(const std::string& key) { argument
25 extension_pref_value_map_->GetEffectivePrefValue(key,
29 SetValue(key, winner->DeepCopy());
31 RemoveValue(key);
/external/chromium_org/extensions/common/
H A Dinstall_warning.cc13 const std::string& key)
14 : message(message), key(key) {
18 const std::string& key,
20 : message(message), key(key), specific(specific) {
12 InstallWarning(const std::string& message, const std::string& key) argument
17 InstallWarning(const std::string& message, const std::string& key, const std::string& specific) argument
H A Dinstall_warning.h18 const std::string& key);
20 const std::string& key,
25 // We don't have to look at |key| or |specific| here, because they are each
28 // pattern is malformed." |key| here is "permissions", and |specific| is
35 // Optional - for specifying the incorrect key in the manifest (e.g.,
37 std::string key; member in struct:extensions::InstallWarning
38 // Optional - for specifying the incorrect portion of a key in the manifest
/external/chromium_org/gpu/command_buffer/common/
H A Dthread_local.h5 // 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) { argument
36 TlsFree(key);
38 pthread_key_delete(key);
42 inline void ThreadLocalSetValue(ThreadLocalKey key, void* value) { argument
44 TlsSetValue(key, value);
46 pthread_setspecific(key, valu
50 ThreadLocalGetValue(ThreadLocalKey key) argument
[all...]
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dpthread_setspecific.c42 pthread_setspecific (pthread_key_t key, const void *value) argument
47 * key in the calling thread.
50 * key
53 * the value to set key to
58 * key in the calling thread.
71 if (key != ptw32_selfThreadKey)
88 * key
108 if (key != NULL)
110 if (self.p != NULL && key->destructor != NULL && value != NULL)
126 ptw32_mcs_lock_acquire(&(key
[all...]
/external/chromium_org/net/base/
H A Dplatform_mime_util_win.cc16 // check windows registry for file extension's mime type (registry key
18 std::wstring value, key = L"." + ext; local
19 base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
30 std::wstring key(
32 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
/external/chromium_org/net/http/
H A Ddes_unittest.cc14 // DES known key (56-bits).
36 static const uint8 key[] = { local
46 DESEncrypt(key, plaintext, ciphertext);
/external/chromium_org/net/websockets/
H A Dwebsocket_net_log_params.cc33 std::string key; local
35 key += base::StringPrintf("\\x%02x", (*headers)[pos] & 0xff);
37 header_list->Append(new base::StringValue(key));

Completed in 677 milliseconds

1234567891011>>