HomeSort by relevance Sort by last modified time
    Searched refs:key (Results 101 - 125 of 4983) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libsepol/src/
avtab.c 59 avtab_insert_node(avtab_t * h, int hvalue, avtab_ptr_t prev, avtab_key_t * key,
67 newnode->key = *key;
81 int avtab_insert(avtab_t * h, avtab_key_t * key, avtab_datum_t * datum)
86 key->specified & ~(AVTAB_ENABLED | AVTAB_ENABLED_OLD);
91 hvalue = avtab_hash(key, h->mask);
94 if (key->source_type == cur->key.source_type &&
95 key->target_type == cur->key.target_type &
375 avtab_key_t key; local
    [all...]
  /development/apps/Development/src/com/android/development/
ColumnData.java 25 key = k;
28 public String key; field in class:ColumnData
  /external/chromium/app/sql/
meta_table.h 59 // Set the given arbitrary key with the given data. Returns true on success.
60 bool SetValue(const char* key, const std::string& value);
61 bool SetValue(const char* key, int value);
62 bool SetValue(const char* key, int64 value);
64 // Retrieves the value associated with the given key. This will use sqlite's
66 bool GetValue(const char* key, std::string* value);
67 bool GetValue(const char* key, int* value);
68 bool GetValue(const char* key, int64* value);
73 bool PrepareSetStatement(Statement* statement, const char* key);
74 bool PrepareGetStatement(Statement* statement, const char* key);
    [all...]
  /external/chromium/net/base/
net_module.cc 17 base::StringPiece NetModule::GetResource(int key) {
18 return resource_provider ? resource_provider(key) : base::StringPiece();
net_module.h 23 typedef base::StringPiece (*ResourceProvider)(int key);
31 static base::StringPiece GetResource(int key);
  /external/chromium/net/http/
des.h 18 // Build a 64-bit DES key from a 56-bit raw key.
19 void DESMakeKey(const uint8* raw, uint8* key);
22 // data. |key| is a DES key (8 bytes), |src| is the input plaintext (8
24 void DESEncrypt(const uint8* key, const uint8* src, uint8* hash);
  /external/dropbear/libtomcrypt/src/pk/ecc/
ecc_ansi_x963_export.c 27 @param key Key to export
32 int ecc_ansi_x963_export(ecc_key *key, unsigned char *out, unsigned long *outlen)
37 LTC_ARGCHK(key != NULL);
41 if (ltc_ecc_is_valid_idx(key->idx) == 0) {
44 numlen = key->dp->size;
56 mp_to_unsigned_bin(key->pubkey.x, buf + (numlen - mp_unsigned_bin_size(key->pubkey.x)));
61 mp_to_unsigned_bin(key->pubkey.y, buf + (numlen - mp_unsigned_bin_size(key->pubkey.y)))
    [all...]
ecc_make_key.c 27 Make a new ECC key
30 @param keysize The keysize for the new key (in octets from 20 to 65 bytes)
31 @param key [out] Destination of the newly created key
34 int ecc_make_key(prng_state *prng, int wprng, int keysize, ecc_key *key)
38 /* find key size */
45 err = ecc_make_key_ex(prng, wprng, key, &ltc_ecc_sets[x]);
46 key->idx = x;
50 int ecc_make_key_ex(prng_state *prng, int wprng, ecc_key *key, const ltc_ecc_set_type *dp)
58 LTC_ARGCHK(key != NULL)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 42 public V putIfAbsent(K key, V value) {
43 return delegate().putIfAbsent(key, value);
47 public boolean remove(Object key, Object value) {
48 return delegate().remove(key, value);
52 public V replace(K key, V value) {
53 return delegate().replace(key, value);
57 public boolean replace(K key, V oldValue, V newValue) {
58 return delegate().replace(key, oldValue, newValue);
  /external/jmonkeyengine/engine/src/core/com/jme3/asset/
AssetEventListener.java 50 * @param key the AssetKey for the asset loaded.
52 public void assetLoaded(AssetKey key);
60 * @param key
62 public void assetRequested(AssetKey key);
70 * @param parentKey The key of the parent asset that is being loaded
72 * @param dependentAssetKey The asset key of the dependent asset that has
  /external/openssl/crypto/rsa/
rsa_test.c 22 key->n = BN_bin2bn(n, sizeof(n)-1, key->n); \
23 key->e = BN_bin2bn(e, sizeof(e)-1, key->e); \
24 key->d = BN_bin2bn(d, sizeof(d)-1, key->d); \
25 key->p = BN_bin2bn(p, sizeof(p)-1, key->p); \
26 key->q = BN_bin2bn(q, sizeof(q)-1, key->q);
214 RSA *key; local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
aes-encblock.c 18 * @key: Key for AES
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out)
26 ctx = aes_encrypt_init(key, 16);
  /frameworks/av/include/media/
AudioParameter.h 54 status_t add(const String8& key, const String8& value);
55 status_t addInt(const String8& key, const int value);
56 status_t addFloat(const String8& key, const float value);
58 status_t remove(const String8& key);
60 status_t get(const String8& key, String8& value);
61 status_t getInt(const String8& key, int& value);
62 status_t getFloat(const String8& key, float& value);
63 status_t getAt(size_t index, String8& key, String8& value);
  /frameworks/base/core/tests/coretests/src/android/content/
SyncOperationTest.java 93 assertEquals(op1.key, op2.key);
94 assertNotSame(op1.key, op3.key);
95 assertNotSame(op1.key, op4.key);
96 assertNotSame(op1.key, op5.key);
  /frameworks/wilhelm/tools/hashgen/
part8.c 1 if (key <= MAX_HASH_VALUE) {
2 int MPH = hash_to_MPH[key];
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/interfaces/
PBEKeyTest.java 43 checkPBEKey key = new checkPBEKey(); local
45 key.getSerVerUID(), //PBEKey.serialVersionUID
50 checkPBEKey key = new checkPBEKey(); local
52 key.getIterationCount();
56 checkPBEKey key = new checkPBEKey(); local
58 key.getPassword();
62 checkPBEKey key = new checkPBEKey(); local
64 key.getSalt();
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
SecretKeySpecTest.java 38 * SecretKeySpec(byte[] key, String algorithm) method testing. Tests that
44 byte[] key = new byte[] {1, 2, 3, 4, 5};
50 + "in the case of empty key.");
57 + "in the case of null key.");
62 new SecretKeySpec(key, null);
68 SecretKeySpec ks = new SecretKeySpec(key, algorithm);
69 key[0] ++;
70 assertFalse("The change of key specified in the constructor "
72 key[0] == ks.getEncoded()[0]);
76 * SecretKeySpec(byte[] key, int offset, int len, String algorithm) metho
    [all...]
  /external/chromium/chrome/browser/prefs/
overlay_persistent_pref_store.cc 18 bool OverlayPersistentPrefStore::IsSetInOverlay(const std::string& key) const {
19 return overlay_.GetValue(key, NULL);
35 const std::string& key,
37 if (overlay_.GetValue(key, result))
39 return underlay_->GetValue(key, result);
43 const std::string& key,
45 if (overlay_.GetValue(key, result))
51 underlay_->GetMutableValue(key, &underlay_value);
54 overlay_.SetValue(key, *result);
57 // Return read failure if underlay stores no value for |key|
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
SortedListsTest.java 41 void assertModelAgrees(List<Integer> list, Integer key, int answer,
45 if (list.contains(key)) {
46 assertEquals(list.indexOf(key), answer);
51 if (list.contains(key)) {
52 assertEquals(list.lastIndexOf(key), answer);
57 if (list.contains(key)) {
58 assertEquals(key, list.get(answer));
63 if (list.contains(key)) {
64 assertEquals(list.lastIndexOf(key) + 1, answer);
69 if (list.contains(key)) {
    [all...]
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
keyDeriveWep.c 35 * \brief WEP broadcast key derivation implementation.
42 * MODULE: WEP broadcast key derivation *
43 * PURPOSE: WEP broadcast key derivation *
63 * WEP broadcast key derivation init function:
65 * - Resets the key material in the system control block
91 * WEP broadcast key derivation function:
92 * - Decodes the key material.
93 * - Distribute the decoded key material to the driver.
97 * I - p - Pointer to the encoded key material.
107 TSecurityKeys key; local
157 TSecurityKeys key; local
187 TSecurityKeys key; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertyUtils.java 38 * Searches for the boolean property with the specified key in the property list.
39 * If the key is not found in this property list, the default property list,
44 * @param key the property key.
49 public static boolean getBooleanProperty(String key, Properties props)
52 String s = props.getProperty(key);
61 * Searches for the int property with the specified key in the property list.
62 * If the key is not found in this property list, the default property list,
67 * @param key the property key
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tts_api_util.cc 19 const char* key,
22 if (!dict->Get(key, &value))
27 if (!dict->GetInteger(key, &int_value))
31 if (!dict->GetDouble(key, ret_value))
  /external/chromium/chrome/common/net/
net_resource_provider.h 16 base::StringPiece NetResourceProvider(int key);
  /external/clang/lib/Frontend/
LogDiagnosticPrinter.cpp 72 OS << " <key>main-file</key>\n"
78 OS << " <key>dwarf-debug-flags</key>\n"
83 OS << " <key>diagnostics</key>\n";
89 OS << " <key>level</key>\n"
94 OS << " <key>filename</key>\n
    [all...]
  /external/clang/test/CodeGen/
2007-02-04-AddrLValue.c 6 char *key; member in struct:__anon5216

Completed in 883 milliseconds

1 2 3 45 6 7 8 91011>>