Searched defs:key (Results 101 - 125 of 3793) 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/base/
H A Dbase_paths_linux.cc36 bool PathProviderPosix(int key, FilePath* result) { argument
38 switch (key) {
H A Dbase_paths_win.cc20 bool PathProviderWin(int key, FilePath* result) { argument
31 switch (key) {
/external/chromium/chrome/browser/extensions/
H A Dextension_pref_store.cc27 void ExtensionPrefStore::OnPrefValueChanged(const std::string& key) { argument
30 extension_pref_value_map_->GetEffectivePrefValue(key,
34 SetValue(key, winner->DeepCopy());
36 RemoveValue(key);
/external/chromium/chrome/browser/prefs/
H A Ddefault_pref_store.cc11 void DefaultPrefStore::SetDefaultValue(const std::string& key, Value* value) { argument
12 CHECK(GetValue(key, NULL) == READ_NO_VALUE);
13 SetValue(key, value);
16 Value::ValueType DefaultPrefStore::GetType(const std::string& key) const {
18 return GetValue(key, &value) == READ_OK ? value->GetType()
/external/chromium/crypto/
H A Dhmac.h33 // Initializes this instance using |key| of the length |key_length|. Call Init
35 bool Init(const unsigned char* key, int key_length);
37 // Initializes this instance using |key|. Call Init only once. It returns
39 bool Init(const std::string& key) { argument
40 return Init(reinterpret_cast<const unsigned char*>(key.data()),
41 static_cast<int>(key.size()));
45 // to the constructor and the key supplied to the Init method. The HMAC is
/external/chromium/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(L"MIME\\Database\\Content Type\\" + UTF8ToWide(mime_type));
31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
/external/chromium/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/webkit/glue/
H A Didb_bindings.cc44 const WebIDBKey& key,
48 key, value, WebIDBKeyPath::create(idb_key_path));
43 InjectIDBKey( const WebIDBKey& key, const WebSerializedScriptValue& value, const string16& idb_key_path) argument
/external/chromium_org/base/
H A Dbase_paths_win.cc53 bool PathProviderWin(int key, FilePath* result) { argument
63 switch (key) {
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dmock_ibus_controller.cc23 bool MockIBusController::ActivateInputMethodProperty(const std::string& key) { argument
25 activate_input_method_property_key_ = key;
30 const ConfigKeyType& key,
33 set_input_method_config_internal_key_ = key;
29 SetInputMethodConfigInternal( const ConfigKeyType& key, const InputMethodConfigValue& value) argument
/external/chromium_org/chrome/browser/extensions/
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/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/common/media_galleries/
H A Ditunes_xml_utils.cc37 bool SeekInDict(XmlReader* reader, const std::string& key) { argument
46 if (!SeekToNodeAtCurrentDepth(reader, "key"))
52 if (found_key == key)
/external/chromium_org/chrome/installer/util/
H A Dcopy_reg_key_work_item_unittest.cc33 // Test that copying a key that doesn't exist succeeds, and that rollback does
40 RegKey key; local
49 key.Open(test_data_.root_key(), destination_path_.c_str(),
54 key.Open(test_data_.root_key(), destination_path_.c_str(),
59 // Test that copying an empty key succeeds, and that rollback removes the copy.
61 RegKey key; local
73 key.Open(test_data_.root_key(), destination_path_.c_str(),
77 // Test that copying a key with subkeys and values succeeds, and that rollback
80 RegKey key; local
92 key
98 RegKey key; local
133 RegKey key; local
[all...]
/external/chromium_org/chrome_frame/
H A Dsync_msg_reply_dispatcher.cc11 void* key) {
15 context->key_ = key;
37 void SyncMessageReplyDispatcher::Cancel(void* key) { argument
38 DCHECK(key != NULL);
43 if (context->key_ == key) {
9 Push(IPC::SyncMessage* msg, SyncMessageCallContext* context, void* key) argument
/external/chromium_org/chromeos/ime/
H A Dinput_method_property.h31 std::string key; // A key which identifies the property. Non-empty string. member in struct:chromeos::input_method::InputMethodProperty
/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/content/child/indexed_db/
H A Dindexed_db_key_builders.cc43 IndexedDBKey IndexedDBKeyBuilder::Build(const WebKit::WebIDBKey& key) { argument
44 switch (key.keyType()) {
46 return IndexedDBKey(CopyKeyArray(key));
48 return IndexedDBKey(key.string());
50 return IndexedDBKey(key.date(), WebIDBKeyTypeDate);
52 return IndexedDBKey(key.number(), WebIDBKeyTypeNumber);
55 return IndexedDBKey(key.keyType());
64 WebIDBKey WebIDBKeyBuilder::Build(const IndexedDBKey& key) { argument
65 switch (key.type()) {
67 const IndexedDBKey::KeyArray& array = key
[all...]
/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/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(L"MIME\\Database\\Content Type\\" + UTF8ToWide(mime_type));
31 if (base::win::RegKey(HKEY_CLASSES_ROOT, key.c_str(), KEY_READ).ReadValue(
/external/chromium_org/net/disk_cache/flash/
H A Dinternal_entry.h26 std::string key; member in struct:disk_cache::KeyAndStreamSizes
39 InternalEntry(const std::string& key, LogStore* store);
51 bool WriteKey(LogStoreEntry* entry, const std::string& key);
52 bool ReadKey(LogStoreEntry* entry, std::string* key);
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_test_util.cc14 bool CreateCorruptFileForTests(const std::string& key, argument
17 disk_cache::simple_util::GetFilenameFromKeyAndIndex(key, 0));

Completed in 605 milliseconds

1234567891011>>