Symbol: HT_VALUE
crypto/openssl/crypto/core_namemap.c
143
HT_VALUE *val;
crypto/openssl/crypto/core_namemap.c
170
HT_VALUE *val;
crypto/openssl/crypto/core_namemap.c
260
HT_VALUE val = { 0 };
crypto/openssl/crypto/hashtable/hashtable.c
110
HT_VALUE value;
crypto/openssl/crypto/hashtable/hashtable.c
172
static void internal_free_nop(HT_VALUE *v)
crypto/openssl/crypto/hashtable/hashtable.c
274
v->ht->config.ht_free_fn((HT_VALUE *)v);
crypto/openssl/crypto/hashtable/hashtable.c
345
void ossl_ht_foreach_until(HT *h, int (*cb)(HT_VALUE *obj, void *arg),
crypto/openssl/crypto/hashtable/hashtable.c
356
if (!cb((HT_VALUE *)md->neighborhoods[i].entries[j].value, arg))
crypto/openssl/crypto/hashtable/hashtable.c
366
int (*filter)(HT_VALUE *obj, void *arg),
crypto/openssl/crypto/hashtable/hashtable.c
371
+ (sizeof(HT_VALUE *) * max_len));
crypto/openssl/crypto/hashtable/hashtable.c
382
list->list = (HT_VALUE **)(list + 1);
crypto/openssl/crypto/hashtable/hashtable.c
389
if (v != NULL && filter((HT_VALUE *)v, arg)) {
crypto/openssl/crypto/hashtable/hashtable.c
390
list->list[list->list_len++] = (HT_VALUE *)v;
crypto/openssl/crypto/hashtable/hashtable.c
505
HT_VALUE *h = (HT_VALUE *)arg;
crypto/openssl/crypto/hashtable/hashtable.c
532
HT_VALUE **olddata)
crypto/openssl/crypto/hashtable/hashtable.c
539
HT_VALUE *ival;
crypto/openssl/crypto/hashtable/hashtable.c
567
*olddata = (HT_VALUE *)md->neighborhoods[neigh_idx].entries[j].value;
crypto/openssl/crypto/hashtable/hashtable.c
627
int ossl_ht_insert(HT *h, HT_KEY *key, HT_VALUE *data, HT_VALUE **olddata)
crypto/openssl/crypto/hashtable/hashtable.c
663
HT_VALUE *ossl_ht_get(HT *h, HT_KEY *key)
crypto/openssl/crypto/hashtable/hashtable.c
692
return (HT_VALUE *)ival;
crypto/openssl/crypto/hashtable/hashtable.c
707
v->ht->config.ht_free_fn((HT_VALUE *)v);
crypto/openssl/crypto/hashtable/hashtable.c
717
HT_VALUE *nv = NULL;
crypto/openssl/fuzz/hashtable.c
127
HT_VALUE *v = NULL;
crypto/openssl/fuzz/hashtable.c
128
HT_VALUE tv;
crypto/openssl/fuzz/hashtable.c
68
static int table_iterator(HT_VALUE *v, void *arg)
crypto/openssl/fuzz/hashtable.c
81
static int filter_iterator(HT_VALUE *v, void *arg)
crypto/openssl/fuzz/hashtable.c
92
static void fuzz_free_cb(HT_VALUE *v)
crypto/openssl/include/internal/hashtable.h
203
HT_VALUE inval; \
crypto/openssl/include/internal/hashtable.h
204
HT_VALUE *oval = NULL; \
crypto/openssl/include/internal/hashtable.h
215
pfx ossl_unused vtype *ossl_ht_##name##_##vtype##_from_value(HT_VALUE *v) \
crypto/openssl/include/internal/hashtable.h
227
HT_VALUE **v) \
crypto/openssl/include/internal/hashtable.h
229
HT_VALUE *vv; \
crypto/openssl/include/internal/hashtable.h
237
pfx ossl_unused HT_VALUE *ossl_ht_##name##_##vtype##_to_value(vtype *data, \
crypto/openssl/include/internal/hashtable.h
238
HT_VALUE *v) \
crypto/openssl/include/internal/hashtable.h
245
pfx ossl_unused int ossl_ht_##name##_##vtype##_type(HT_VALUE *h) \
crypto/openssl/include/internal/hashtable.h
253
vtype *ossl_ht_##name##_##vtype##_from_value(HT_VALUE *v); \
crypto/openssl/include/internal/hashtable.h
256
HT_VALUE **v); \
crypto/openssl/include/internal/hashtable.h
257
HT_VALUE *ossl_ht_##name##_##vtype##_to_value(vtype *data, HT_VALUE *v); \
crypto/openssl/include/internal/hashtable.h
258
int ossl_ht_##name##_##vtype##_type(HT_VALUE *h);
crypto/openssl/include/internal/hashtable.h
319
int ossl_ht_insert(HT *htable, HT_KEY *key, HT_VALUE *data,
crypto/openssl/include/internal/hashtable.h
320
HT_VALUE **olddata);
crypto/openssl/include/internal/hashtable.h
341
void ossl_ht_foreach_until(HT *htable, int (*cb)(HT_VALUE *obj, void *arg),
crypto/openssl/include/internal/hashtable.h
351
int (*filter)(HT_VALUE *obj, void *arg),
crypto/openssl/include/internal/hashtable.h
362
HT_VALUE *ossl_ht_get(HT *htable, HT_KEY *key);
crypto/openssl/include/internal/hashtable.h
44
HT_VALUE **list;
crypto/openssl/include/internal/hashtable.h
52
void (*ht_free_fn)(HT_VALUE *obj);
crypto/openssl/test/lhash_test.c
186
static int int_filter_all(HT_VALUE *v, void *arg)
crypto/openssl/test/lhash_test.c
197
static int int_foreach(HT_VALUE *v, void *arg)
crypto/openssl/test/lhash_test.c
397
static void hashtable_intfree(HT_VALUE *v)
crypto/openssl/test/lhash_test.c
417
HT_VALUE *v;
crypto/openssl/test/lhash_test.c
541
static void hashtable_mt_free(HT_VALUE *v)
crypto/openssl/test/lhash_test.c
574
HT_VALUE *v = NULL;