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

1 2 34 5 6 7 8 91011>>

  /development/ndk/platforms/android-3/arch-arm/include/asm/
ipcbuf.h 17 __kernel_key_t key; member in struct:ipc64_perm
  /development/ndk/platforms/android-9/arch-mips/include/asm/
ipcbuf.h 24 __kernel_key_t key; member in struct:ipc64_perm
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ipcbuf.h 24 __kernel_key_t key; member in struct:ipc64_perm
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
LatinKeyboard.java 28 private Key mEnterKey;
29 private Key mSpaceKey;
41 protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
43 Key key = new LatinKey(res, parent, x, y, parser); local
44 if (key.codes[0] == 10) {
45 mEnterKey = key;
46 } else if (key.codes[0] == ' ') {
47 mSpaceKey = key;
49 return key;
    [all...]
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
ExemptionMechanismSpiTest.java 27 import java.security.Key;
66 Key key = null; local
70 emSpi.engineInit(key);
75 emSpi.engineInit(key, params);
80 emSpi.engineInit(key, parSpec);
84 key = ((MyExemptionMechanismSpi)emSpi).new tmp1Key("Proba", new byte[0]);
86 emSpi.engineInit(key);
91 emSpi.engineInit(key, params);
96 emSpi.engineInit(key, parSpec)
    [all...]
KeyAgreementSpiTest.java 26 import java.security.Key;
76 Key key = null; local
78 kaSpi.engineInit(key, new SecureRandom());
84 kaSpi.engineInit(key, params, new SecureRandom());
  /external/bluetooth/bluez/test/
test-textfile.c 37 static void print_entry(char *key, char *value, void *data)
39 printf("%s %s\n", key, value);
45 char key[18], value[512], *str; local
64 sprintf(key, "11:11:11:11:11:11");
65 str = textfile_get(filename, key);
70 sprintf(key, "00:00:00:00:00:00");
71 if (textfile_del(filename, key) < 0)
75 if (textfile_put(filename, key, value) < 0)
78 str = textfile_get(filename, key);
80 fprintf(stderr, "No value for %s\n", key);
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/agreement/
DHBasicAgreement.java 14 * a Diffie-Hellman key agreement class.
23 private DHPrivateKeyParameters key; field in class:DHBasicAgreement
46 this.key = (DHPrivateKeyParameters)kParam;
47 this.dhParams = key.getParameters();
51 * given a short term public key from a given party calculate the next
61 throw new IllegalArgumentException("Diffie-Hellman public key has wrong parameters.");
64 return pub.getY().modPow(key.getX(), dhParams.getP());
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
AEADParameters.java 10 private KeyParameter key; field in class:AEADParameters
16 * @param key key to be used by underlying cipher
21 public AEADParameters(KeyParameter key, int macSize, byte[] nonce, byte[] associatedText)
23 this.key = key;
31 return key;
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...]
  /external/chromium/base/
string_split_unittest.cc 15 std::string key; member in class:base::SplitStringIntoKeyValuesTest
21 '\t', // Key separators
22 &key, &values));
23 EXPECT_TRUE(key.empty());
29 '\t', // Key separators
30 &key, &values));
31 EXPECT_EQ("key_with_no_value", key);
36 EXPECT_TRUE(SplitStringIntoKeyValues("\tvalue for empty key",
37 '\t', // Key separators
38 &key, &values))
    [all...]
  /external/chromium/chrome/browser/chromeos/
name_value_pairs_parser.cc 26 void NameValuePairsParser::AddNameValuePair(const std::string& key,
28 (*map_)[key] = value;
29 VLOG(1) << "name: " << key << ", value: " << value;
42 LOG(WARNING) << "Empty key: '" << pair << "'. Aborting.";
46 std::string key,value; local
48 TrimString(keyvalue.token(), kQuoteChars, &key);
52 LOG(WARNING) << "Multiple key tokens: '" << pair << "'. Aborting.";
57 if (key.empty()) {
61 AddNameValuePair(key, value);
68 const std::string& key) {
    [all...]
  /external/chromium/chrome/browser/extensions/
convert_user_script.cc 69 // Create the public key.
70 // User scripts are not signed, but the public key for an extension doubles as
72 // identity is its namespace+name, so we hash that to create a public key.
73 // There will be no corresponding private key, which means user scripts cannot
76 std::string key; local
78 base::Base64Encode(std::string(raw, crypto::SHA256_LENGTH), &key); local
95 root->SetString(keys::kPublicKey, key);
external_registry_extension_loader_win.cc 24 // Registry value of of that key that defines the path to the .crx file.
27 // Registry value of that key that defines the current version of the .crx file.
48 base::win::RegKey key; local
52 if (key.Open(kRegRoot, key_path.c_str(), KEY_READ) == ERROR_SUCCESS) {
54 if (key.ReadValue(kRegistryExtensionPath, &extension_path_str)
59 << " needs to be absolute in key "
65 if (key.ReadValue(kRegistryExtensionVersion, &extension_version)
72 << " for key " << key_path << " .";
82 << " for key " << key_path << " .";
96 << " for key " << key_path << " ."
    [all...]
  /external/chromium/chrome/browser/
mock_browsing_data_database_helper.cc 30 std::string key = origin + ":" + name; local
31 CHECK(databases_.find(key) != databases_.end());
34 databases_[key] = false;
  /external/chromium/chrome/browser/parsers/
metadata_parser_filebase_unittest.cc 82 std::string key, value; local
85 EXPECT_TRUE(iter->GetNext(&key, &value));
88 ASSERT_TRUE(expectations.find(key) != expectations.end());
89 EXPECT_EQ(expectations[key], value);
91 expectations.erase(key);
95 EXPECT_FALSE(iter->GetNext(&key, &value));
  /external/chromium/chrome/browser/prefs/
overlay_persistent_pref_store_unittest.cc 15 const char key[] = "test.key"; variable
33 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
34 underlay_->SetValue(key, Value::CreateIntegerValue(42));
38 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
39 underlay_->SetValue(key, Value::CreateIntegerValue(43));
43 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(1);
44 overlay_->SetValue(key, Value::CreateIntegerValue(44));
48 EXPECT_CALL(obs, OnPrefValueChanged(StrEq(key))).Times(0);
49 underlay_->SetValue(key, Value::CreateIntegerValue(45))
    [all...]
  /external/chromium/chrome/browser/webdata/
autofill_entry.h 18 AutofillKey(const AutofillKey& key);
24 bool operator==(const AutofillKey& key) const;
25 bool operator<(const AutofillKey& key) const;
34 AutofillEntry(const AutofillKey& key,
38 const AutofillKey& key() const { return key_; } function in class:AutofillEntry
  /external/chromium/crypto/
encryptor_unittest.cc 15 scoped_ptr<crypto::SymmetricKey> key(
18 EXPECT_TRUE(NULL != key.get());
24 EXPECT_TRUE(encryptor.Init(key.get(), crypto::Encryptor::CBC, iv));
89 std::string key(reinterpret_cast<const char*>(raw_key), sizeof(raw_key));
91 crypto::SymmetricKey::AES, key));
116 std::string key = "128=SixteenBytes"; local
124 crypto::SymmetricKey::AES, key));
144 std::string key = "192bitsIsTwentyFourByte!"; local
150 crypto::SymmetricKey::AES, key));
172 std::string key = "7 = bad" local
186 std::string key = "128=SixteenBytes"; local
197 std::string key = "128=SixteenBytes"; local
218 std::string key = "128=SixteenBytes"; local
    [all...]
  /external/chromium/net/base/
effective_tld_names_unittest2.cc 46 /* maximum key range = 5, duplicates = 0 */
132 register int key = hash (str, len); local
134 if (key <= MAX_HASH_VALUE && key >= 0)
136 register int index = lookup[key];
  /external/chromium/net/websockets/
websocket_net_log_params.cc 33 std::string key; local
35 key += base::StringPrintf("\\x%02x", headers_[pos] & 0xff);
37 headers->Append(new StringValue(key));
  /external/dropbear/libtomcrypt/testprof/
modes_test.c 6 unsigned char pt[64], ct[64], tmp[64], key[16], iv[16], iv2[16]; local
19 /* make a random pt, key and iv */
21 yarrow_read(key, 16, &yarrow_prng);
42 DO(cbc_start(cipher_idx, iv, key, 16, 0, &cbc));
64 DO(cfb_start(cipher_idx, iv, key, 16, 0, &cfb));
87 DO(ofb_start(cipher_idx, iv, key, 16, 0, &ofb));
  /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/elfutils/libasm/
asm_error.c 38 /* This is the key for the thread specific memory. */
39 static tls_key_t key; variable
62 /* We have a key. Use it to get the thread-specific buffer. */
63 int *buffer = getspecific (key);
72 setspecific (key, buffer);
97 /* We have a key. Use it to get the thread-specific buffer. */
98 int *buffer = getspecific (key);
107 setspecific (key, buffer);
143 /* We have a key. Use it to get the thread-specific buffer. */
144 int *buffer = (int *) getspecific (key);
    [all...]
  /external/elfutils/libdw/
dwarf_error.c 65 /* This is the key for the thread specific memory. */
66 static tls_key_t key; variable
93 result = (intptr_t) getspecific (key);
95 setspecific (key, (void *) (intptr_t) DWARF_E_NOERROR);
161 setspecific (key, (void *) (intptr_t) value);
182 last_error = (intptr_t) getspecific (key);
202 setspecific (key, NULL);
206 /* Initialize the key for the global variable. */
213 if (key_create (&key, free_key_mem) == 0)
214 /* Creating the key succeeded. *
    [all...]

Completed in 709 milliseconds

1 2 34 5 6 7 8 91011>>