Lines Matching refs:fuzzer_table
50 static HT *fuzzer_table = NULL; variable
109 fuzzer_table = ossl_ht_new(&fuzz_conf); in FuzzerInitialize()
110 if (fuzzer_table == NULL) { in FuzzerInitialize()
166 ossl_ht_write_lock(fuzzer_table); in FuzzerTestOneInput()
185 rc = ossl_ht_fz_FUZZER_VALUE_insert(fuzzer_table, TO_HT_KEY(&key), in FuzzerTestOneInput()
188 rc = ossl_ht_fz_FUZZER_VALUE_insert(fuzzer_table, TO_HT_KEY(&key), in FuzzerTestOneInput()
203 ossl_ht_write_unlock(fuzzer_table); in FuzzerTestOneInput()
227 ossl_ht_write_lock(fuzzer_table); in FuzzerTestOneInput()
241 rc = ossl_ht_delete(fuzzer_table, TO_HT_KEY(&key)); in FuzzerTestOneInput()
246 ossl_ht_write_unlock(fuzzer_table); in FuzzerTestOneInput()
279 ossl_ht_read_lock(fuzzer_table); in FuzzerTestOneInput()
293 lval = ossl_ht_fz_FUZZER_VALUE_get(fuzzer_table, TO_HT_KEY(&key), &v); in FuzzerTestOneInput()
298 ossl_ht_read_unlock(fuzzer_table); in FuzzerTestOneInput()
337 ossl_ht_write_lock(fuzzer_table); in FuzzerTestOneInput()
338 ossl_ht_flush(fuzzer_table); in FuzzerTestOneInput()
339 ossl_ht_write_unlock(fuzzer_table); in FuzzerTestOneInput()
359 ossl_ht_foreach_until(fuzzer_table, table_iterator, &keyval); in FuzzerTestOneInput()
373 htvlist = ossl_ht_filter(fuzzer_table, 1, filter_iterator, &keyval); in FuzzerTestOneInput()
390 ossl_ht_free(fuzzer_table); in FuzzerCleanup()