Searched refs:key (Results 1 - 25 of 2274) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libucl/tests/basic/
H A D15.inc2 key = "overrided";
H A D16.inc2 key = "overrided";
H A D19-append.inc2 key = value1;
H A D19-merge.inc2 key = value1;
H A D19-rewrite.inc2 key = value1;
/freebsd-11-stable/contrib/libucl/tests/basic/include_dir/
H A Dtest1.conf0 key = value1;
H A Dtest2.conf0 key = value2;
H A Dtest3.conf0 key = value3;
/freebsd-11-stable/usr.sbin/bluetooth/hcsecd/
H A Dparser.y52 static void free_key (link_key_p key);
60 static link_key_p key = NULL;
78 key = (link_key_p) malloc(sizeof(*key));
79 if (key == NULL) {
85 memset(key, 0, sizeof(*key));
89 if (get_key(&key->bdaddr, 1) != NULL) {
92 bt_ntoa(&key->bdaddr, NULL));
93 free_key(key);
135 key: T_KEY T_HEXSTRING label
[all...]
/freebsd-11-stable/lib/libstdthreads/
H A Dtss.c37 tss_create(tss_t *key, tss_dtor_t dtor) argument
40 if (pthread_key_create(key, dtor) != 0)
46 tss_delete(tss_t key) argument
49 (void)pthread_key_delete(key);
53 tss_get(tss_t key) argument
56 return (pthread_getspecific(key));
60 tss_set(tss_t key, void *val) argument
63 if (pthread_setspecific(key, val) != 0)
/freebsd-11-stable/contrib/apr/threadproc/unix/
H A Dthreadpriv.c24 APR_DECLARE(apr_status_t) apr_threadkey_private_create(apr_threadkey_t **key,
28 (*key) = (apr_threadkey_t *)apr_pcalloc(pool, sizeof(apr_threadkey_t));
30 if ((*key) == NULL) {
34 (*key)->pool = pool;
36 return pthread_key_create(&(*key)->key, dest);
41 apr_threadkey_t *key)
44 if (pthread_getspecific(key->key,new))
47 (*new) = pthread_getspecific(key
[all...]
/freebsd-11-stable/crypto/openssl/crypto/camellia/
H A Dcmll_misc.c60 CAMELLIA_KEY *key)
62 if (!userKey || !key)
66 key->grand_rounds = Camellia_Ekeygen(bits, userKey, key->u.rd_key);
71 const CAMELLIA_KEY *key)
73 Camellia_EncryptBlock_Rounds(key->grand_rounds, in, key->u.rd_key, out);
77 const CAMELLIA_KEY *key)
79 Camellia_DecryptBlock_Rounds(key->grand_rounds, in, key
59 private_Camellia_set_key(const unsigned char *userKey, const int bits, CAMELLIA_KEY *key) argument
70 Camellia_encrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
76 Camellia_decrypt(const unsigned char *in, unsigned char *out, const CAMELLIA_KEY *key) argument
[all...]
/freebsd-11-stable/crypto/heimdal/appl/telnet/libtelnet/
H A Dencrypt.h66 #define VALIDKEY(key) ( key[0] | key[1] | key[2] | key[3] | \
67 key[4] | key[5] | key[6] | key[7])
/freebsd-11-stable/contrib/telnet/libtelnet/
H A Dencrypt.h69 #define VALIDKEY(key) ( key[0] | key[1] | key[2] | key[3] | \
70 key[4] | key[5] | key[6] | key[7])
/freebsd-11-stable/etc/bluetooth/
H A Dhcsecd.conf18 # key 0x11223344 | nokey ; - to set link key for the device
27 # "nokey" means that no link key has been defined and we should
39 key nokey;
46 key nokey;
53 key 0x00112233445566778899aabbccddeeff; # 16 bytes key (hex string)
/freebsd-11-stable/sys/netipsec/
H A Dkey_var.h52 #define _KEYLEN(key) ((u_int)((key)->bits >> 3))
53 #define _KEYBITS(key) ((u_int)((key)->bits))
54 #define _KEYBUF(key) ((caddr_t)((caddr_t)(key) + sizeof(struct sadb_key)))
/freebsd-11-stable/crypto/openssl/crypto/des/
H A Ddes_old2.c77 void _ossl_096_des_random_seed(DES_cblock *key) argument
79 RAND_seed(key, sizeof(DES_cblock));
/freebsd-11-stable/contrib/gcc/
H A Dprefix.h28 extern char *update_path (const char *path, const char *key);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-crypto.h54 * enabled and it is possible to enable it, write the enable key.
56 * @param key The dormant crypto enable key value.
60 extern int cvmx_crypto_dormant_enable(uint64_t key);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DThreadLocal.inc31 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
32 int errorcode = pthread_key_create(key, nullptr);
38 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
39 int errorcode = pthread_key_delete(*key);
45 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
46 int errorcode = pthread_setspecific(*key, d);
52 pthread_key_t* key = reinterpret_cast<pthread_key_t*>(&data);
53 return pthread_getspecific(*key);
/freebsd-11-stable/contrib/wpa/src/tls/
H A Drsa.c18 int private_key; /* whether private key is set */
56 * crypto_rsa_import_public_key - Import an RSA public key
57 * @buf: Key buffer (DER encoded RSA public key)
59 * Returns: Pointer to the public key or %NULL on failure
64 struct crypto_rsa_key *key; local
68 key = os_zalloc(sizeof(*key));
69 if (key == NULL)
72 key->n = bignum_init();
73 key
123 struct crypto_rsa_key *key; local
151 struct crypto_rsa_key *key; local
249 crypto_rsa_get_modulus_len(struct crypto_rsa_key *key) argument
265 crypto_rsa_exptmod(const u8 *in, size_t inlen, u8 *out, size_t *outlen, struct crypto_rsa_key *key, int use_private) argument
362 crypto_rsa_free(struct crypto_rsa_key *key) argument
[all...]
/freebsd-11-stable/contrib/binutils/gas/
H A Dhash.h45 const char *key, PTR value);
52 const char *key, PTR value);
58 extern PTR hash_replace (struct hash_control *, const char *key,
64 extern PTR hash_find (struct hash_control *, const char *key);
69 extern PTR hash_find_n (struct hash_control *, const char *key, size_t len);
74 extern PTR hash_delete (struct hash_control *, const char *key);
80 void (*pfn) (const char *key, PTR value));
/freebsd-11-stable/lib/libc/tests/stdlib/
H A Dtsearch_test.c85 int key = nrand48(random_state) % NKEYS; local
88 if (present[key]) {
89 ATF_CHECK(tdelete(&key, &root, compar) != NULL);
90 present[key] = false;
93 tdelete(&key, &root, compar));
97 if (present[key]) {
98 ATF_CHECK_EQ(&keys[key],
99 *(int **)tfind(&key, &root, compar));
101 ATF_CHECK_EQ(NULL, tfind(&key, &root, compar));
105 if (present[key]) {
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_posix.cpp50 tsd_key() : key(nullptr) {}
53 if (key)
54 (*tsd_destructor)(key);
56 void *key; member in struct:__asan::tsd_key
59 static thread_local struct tsd_key key; member in namespace:__asan
68 return key.key;
74 CHECK(!key.key);
75 key
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A De_rc4_hmac_md5.c80 void rc4_md5_enc(RC4_KEY *key, const void *in0, void *out,
89 EVP_RC4_HMAC_MD5 *key = data(ctx); local
91 RC4_set_key(&key->ks, EVP_CIPHER_CTX_key_length(ctx), inkey);
93 MD5_Init(&key->head); /* handy when benchmarking */
94 key->tail = key->head;
95 key->md = key->head;
97 key->payload_length = NO_PAYLOAD_LENGTH;
118 EVP_RC4_HMAC_MD5 *key local
229 EVP_RC4_HMAC_MD5 *key = data(ctx); local
[all...]

Completed in 355 milliseconds

1234567891011>>