Searched refs:HT_KEY (Results 1 – 3 of 3) sorted by relevance
/openssl/include/internal/ |
H A D | hashtable.h | 28 } HT_KEY; typedef 36 HT_KEY key; 76 HT_KEY key_header; \ 109 (key)->key_header.keysize = (sizeof(*(key)) - sizeof(HT_KEY)); \ 110 (key)->key_header.keybuf = (((uint8_t *)key) + sizeof(HT_KEY)); \ 171 pfx ossl_unused int ossl_ht_##name##_##vtype##_insert(HT *h, HT_KEY *key, \ 197 HT_KEY *key, \ 222 int ossl_ht_##name##_##vtype##_insert(HT *h, HT_KEY *key, vtype *data, \ 290 int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data, 297 int ossl_ht_delete(HT *htable, HT_KEY *key); [all …]
|
/openssl/doc/internal/man3/ |
H A D | ossl_ht_new.pod | 30 int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata); 31 int ossl_ht_delete(HT *htable, HT_KEY *key); 36 HT_VALUE *ossl_ht_get(HT *htable, HT_KEY *key); 113 hashed using the corresponding B<HT_KEY> value. 118 B<HT_KEY> value. 154 ossl_ht_get() performs a lookup of an B<HT_KEY> in the hashtable, returning 166 The resulting type may be converted to an HT_KEY variable via the HT_TO_KEY() 213 HE_END_KEY_DEFN() to the generic HT_KEY type 217 FROM_HT_KEY() Converts an HT_KEY back to a specific key type as defined by 233 int ossl_ht_NAME_TYPE_insert(HT* h, HT_KEY *key, <type> *value, HT_VALUE **olddata) [all …]
|
/openssl/crypto/hashtable/ |
H A D | hashtable.c | 526 static ossl_inline int match_key(HT_KEY *a, HT_KEY *b) in match_key() 605 static struct ht_internal_value_st *alloc_new_value(HT *h, HT_KEY *key, in alloc_new_value() 639 int ossl_ht_insert(HT *h, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata) in ossl_ht_insert() 675 HT_VALUE *ossl_ht_get(HT *h, HT_KEY *key) in ossl_ht_get() 723 int ossl_ht_delete(HT *h, HT_KEY *key) in ossl_ht_delete()
|
Completed in 8 milliseconds