Home
last modified time | relevance | path

Searched refs:fns (Results 1 – 25 of 60) sorted by relevance

123

/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_write_format_iso9660_filename.c49 struct fns { struct
73 verify_file(struct archive *a, enum vtype type, struct fns *fns) in verify_file() argument
98 for (i = 0; i < fns->cnt; i++) { in verify_file()
110 assert(strcmp(fns->names[i], pathname) != 0); in verify_file()
111 assert((length = strlen(pathname)) <= fns->maxlen); in verify_file()
112 if (length > fns->longest_len) in verify_file()
113 fns->longest_len = length; in verify_file()
117 assert((size_t)(p - pathname) <= fns->maxflen); in verify_file()
119 assert(strlen(p+1) <= fns->maxelen); in verify_file()
120 if (fns->opt & ONE_DOT) { in verify_file()
[all …]
/freebsd/crypto/openssl/providers/implementations/encode_decode/
H A Dendecoder_common.c17 ossl_prov_get_keymgmt_new(const OSSL_DISPATCH *fns) in ossl_prov_get_keymgmt_new() argument
20 for (; fns->function_id != 0; fns++) in ossl_prov_get_keymgmt_new()
21 if (fns->function_id == OSSL_FUNC_KEYMGMT_NEW) in ossl_prov_get_keymgmt_new()
22 return OSSL_FUNC_keymgmt_new(fns); in ossl_prov_get_keymgmt_new()
28 ossl_prov_get_keymgmt_free(const OSSL_DISPATCH *fns) in ossl_prov_get_keymgmt_free() argument
31 for (; fns->function_id != 0; fns++) in ossl_prov_get_keymgmt_free()
32 if (fns->function_id == OSSL_FUNC_KEYMGMT_FREE) in ossl_prov_get_keymgmt_free()
33 return OSSL_FUNC_keymgmt_free(fns); in ossl_prov_get_keymgmt_free()
39 ossl_prov_get_keymgmt_import(const OSSL_DISPATCH *fns) in ossl_prov_get_keymgmt_import() argument
42 for (; fns->function_id != 0; fns++) in ossl_prov_get_keymgmt_import()
[all …]
H A Dendecoder_local.h15 OSSL_FUNC_keymgmt_new_fn *ossl_prov_get_keymgmt_new(const OSSL_DISPATCH *fns);
16 OSSL_FUNC_keymgmt_free_fn *ossl_prov_get_keymgmt_free(const OSSL_DISPATCH *fns);
17 OSSL_FUNC_keymgmt_import_fn *ossl_prov_get_keymgmt_import(const OSSL_DISPATCH *fns);
18 OSSL_FUNC_keymgmt_export_fn *ossl_prov_get_keymgmt_export(const OSSL_DISPATCH *fns);
24 void *ossl_prov_import_key(const OSSL_DISPATCH *fns, void *provctx,
26 void ossl_prov_free_key(const OSSL_DISPATCH *fns, void *key);
/freebsd/crypto/openssl/crypto/evp/
H A Dmac_meth.c61 const OSSL_DISPATCH *fns = algodef->implementation; in evp_mac_from_algorithm() local
76 for (; fns->function_id != 0; fns++) { in evp_mac_from_algorithm()
77 switch (fns->function_id) { in evp_mac_from_algorithm()
81 mac->newctx = OSSL_FUNC_mac_newctx(fns); in evp_mac_from_algorithm()
87 mac->dupctx = OSSL_FUNC_mac_dupctx(fns); in evp_mac_from_algorithm()
92 mac->freectx = OSSL_FUNC_mac_freectx(fns); in evp_mac_from_algorithm()
98 mac->init = OSSL_FUNC_mac_init(fns); in evp_mac_from_algorithm()
104 mac->update = OSSL_FUNC_mac_update(fns); in evp_mac_from_algorithm()
110 mac->final = OSSL_FUNC_mac_final(fns); in evp_mac_from_algorithm()
116 mac->gettable_params = OSSL_FUNC_mac_gettable_params(fns); in evp_mac_from_algorithm()
[all …]
H A Dkeymgmt_meth.c67 const OSSL_DISPATCH *fns = algodef->implementation; in keymgmt_from_algorithm() local
85 for (; fns->function_id != 0; fns++) { in keymgmt_from_algorithm()
86 switch (fns->function_id) { in keymgmt_from_algorithm()
89 keymgmt->new = OSSL_FUNC_keymgmt_new(fns); in keymgmt_from_algorithm()
93 keymgmt->gen_init = OSSL_FUNC_keymgmt_gen_init(fns); in keymgmt_from_algorithm()
97 keymgmt->gen_set_template = OSSL_FUNC_keymgmt_gen_set_template(fns); in keymgmt_from_algorithm()
102 keymgmt->gen_set_params = OSSL_FUNC_keymgmt_gen_set_params(fns); in keymgmt_from_algorithm()
108 keymgmt->gen_settable_params = OSSL_FUNC_keymgmt_gen_settable_params(fns); in keymgmt_from_algorithm()
114 keymgmt->gen_get_params = OSSL_FUNC_keymgmt_gen_get_params(fns); in keymgmt_from_algorithm()
120 keymgmt->gen_gettable_params = OSSL_FUNC_keymgmt_gen_gettable_params(fns); in keymgmt_from_algorithm()
[all …]
H A Dkdf_meth.c62 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm() local
76 for (; fns->function_id != 0; fns++) { in evp_kdf_from_algorithm()
77 switch (fns->function_id) { in evp_kdf_from_algorithm()
81 kdf->newctx = OSSL_FUNC_kdf_newctx(fns); in evp_kdf_from_algorithm()
87 kdf->dupctx = OSSL_FUNC_kdf_dupctx(fns); in evp_kdf_from_algorithm()
92 kdf->freectx = OSSL_FUNC_kdf_freectx(fns); in evp_kdf_from_algorithm()
98 kdf->reset = OSSL_FUNC_kdf_reset(fns); in evp_kdf_from_algorithm()
103 kdf->derive = OSSL_FUNC_kdf_derive(fns); in evp_kdf_from_algorithm()
109 kdf->gettable_params = OSSL_FUNC_kdf_gettable_params(fns); in evp_kdf_from_algorithm()
114 kdf->gettable_ctx_params = OSSL_FUNC_kdf_gettable_ctx_params(fns); in evp_kdf_from_algorithm()
[all …]
H A Dskeymgmt_meth.c65 const OSSL_DISPATCH *fns = algodef->implementation; in skeymgmt_from_algorithm() local
78 for (; fns->function_id != 0; fns++) { in skeymgmt_from_algorithm()
79 switch (fns->function_id) { in skeymgmt_from_algorithm()
82 skeymgmt->free = OSSL_FUNC_skeymgmt_free(fns); in skeymgmt_from_algorithm()
86 skeymgmt->import = OSSL_FUNC_skeymgmt_import(fns); in skeymgmt_from_algorithm()
90 skeymgmt->export = OSSL_FUNC_skeymgmt_export(fns); in skeymgmt_from_algorithm()
94 skeymgmt->generate = OSSL_FUNC_skeymgmt_generate(fns); in skeymgmt_from_algorithm()
98 skeymgmt->get_key_id = OSSL_FUNC_skeymgmt_get_key_id(fns); in skeymgmt_from_algorithm()
102 skeymgmt->imp_params = OSSL_FUNC_skeymgmt_imp_settable_params(fns); in skeymgmt_from_algorithm()
106 skeymgmt->gen_params = OSSL_FUNC_skeymgmt_gen_settable_params(fns); in skeymgmt_from_algorithm()
H A Devp_rand.c121 const OSSL_DISPATCH *fns = algodef->implementation; in evp_rand_from_algorithm() local
138 rand->dispatch = fns; in evp_rand_from_algorithm()
139 for (; fns->function_id != 0; fns++) { in evp_rand_from_algorithm()
140 switch (fns->function_id) { in evp_rand_from_algorithm()
144 rand->newctx = OSSL_FUNC_rand_newctx(fns); in evp_rand_from_algorithm()
150 rand->freectx = OSSL_FUNC_rand_freectx(fns); in evp_rand_from_algorithm()
156 rand->instantiate = OSSL_FUNC_rand_instantiate(fns); in evp_rand_from_algorithm()
162 rand->uninstantiate = OSSL_FUNC_rand_uninstantiate(fns); in evp_rand_from_algorithm()
168 rand->generate = OSSL_FUNC_rand_generate(fns); in evp_rand_from_algorithm()
174 rand->reseed = OSSL_FUNC_rand_reseed(fns); in evp_rand_from_algorithm()
[all …]
H A Dsignature.c56 const OSSL_DISPATCH *fns = algodef->implementation; in evp_signature_from_algorithm() local
78 for (; fns->function_id != 0; fns++) { in evp_signature_from_algorithm()
79 switch (fns->function_id) { in evp_signature_from_algorithm()
83 signature->newctx = OSSL_FUNC_signature_newctx(fns); in evp_signature_from_algorithm()
89 signature->sign_init = OSSL_FUNC_signature_sign_init(fns); in evp_signature_from_algorithm()
95 signature->sign = OSSL_FUNC_signature_sign(fns); in evp_signature_from_algorithm()
101 = OSSL_FUNC_signature_sign_message_init(fns); in evp_signature_from_algorithm()
108 = OSSL_FUNC_signature_sign_message_update(fns); in evp_signature_from_algorithm()
114 = OSSL_FUNC_signature_sign_message_final(fns); in evp_signature_from_algorithm()
119 signature->verify_init = OSSL_FUNC_signature_verify_init(fns); in evp_signature_from_algorithm()
[all …]
H A Dkem.c304 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kem_from_algorithm() local
319 for (; fns->function_id != 0; fns++) { in evp_kem_from_algorithm()
320 switch (fns->function_id) { in evp_kem_from_algorithm()
324 kem->newctx = OSSL_FUNC_kem_newctx(fns); in evp_kem_from_algorithm()
330 kem->encapsulate_init = OSSL_FUNC_kem_encapsulate_init(fns); in evp_kem_from_algorithm()
336 kem->auth_encapsulate_init = OSSL_FUNC_kem_auth_encapsulate_init(fns); in evp_kem_from_algorithm()
342 kem->encapsulate = OSSL_FUNC_kem_encapsulate(fns); in evp_kem_from_algorithm()
348 kem->decapsulate_init = OSSL_FUNC_kem_decapsulate_init(fns); in evp_kem_from_algorithm()
354 kem->auth_decapsulate_init = OSSL_FUNC_kem_auth_decapsulate_init(fns); in evp_kem_from_algorithm()
360 kem->decapsulate = OSSL_FUNC_kem_decapsulate(fns); in evp_kem_from_algorithm()
[all …]
H A Dasymcipher.c370 const OSSL_DISPATCH *fns = algodef->implementation; in evp_asym_cipher_from_algorithm() local
385 for (; fns->function_id != 0; fns++) { in evp_asym_cipher_from_algorithm()
386 switch (fns->function_id) { in evp_asym_cipher_from_algorithm()
390 cipher->newctx = OSSL_FUNC_asym_cipher_newctx(fns); in evp_asym_cipher_from_algorithm()
396 cipher->encrypt_init = OSSL_FUNC_asym_cipher_encrypt_init(fns); in evp_asym_cipher_from_algorithm()
402 cipher->encrypt = OSSL_FUNC_asym_cipher_encrypt(fns); in evp_asym_cipher_from_algorithm()
408 cipher->decrypt_init = OSSL_FUNC_asym_cipher_decrypt_init(fns); in evp_asym_cipher_from_algorithm()
414 cipher->decrypt = OSSL_FUNC_asym_cipher_decrypt(fns); in evp_asym_cipher_from_algorithm()
420 cipher->freectx = OSSL_FUNC_asym_cipher_freectx(fns); in evp_asym_cipher_from_algorithm()
426 cipher->dupctx = OSSL_FUNC_asym_cipher_dupctx(fns); in evp_asym_cipher_from_algorithm()
[all …]
H A Dexchange.c53 const OSSL_DISPATCH *fns = algodef->implementation; in evp_keyexch_from_algorithm() local
67 for (; fns->function_id != 0; fns++) { in evp_keyexch_from_algorithm()
68 switch (fns->function_id) { in evp_keyexch_from_algorithm()
72 exchange->newctx = OSSL_FUNC_keyexch_newctx(fns); in evp_keyexch_from_algorithm()
78 exchange->init = OSSL_FUNC_keyexch_init(fns); in evp_keyexch_from_algorithm()
84 exchange->set_peer = OSSL_FUNC_keyexch_set_peer(fns); in evp_keyexch_from_algorithm()
89 exchange->derive = OSSL_FUNC_keyexch_derive(fns); in evp_keyexch_from_algorithm()
95 exchange->freectx = OSSL_FUNC_keyexch_freectx(fns); in evp_keyexch_from_algorithm()
101 exchange->dupctx = OSSL_FUNC_keyexch_dupctx(fns); in evp_keyexch_from_algorithm()
106 exchange->get_ctx_params = OSSL_FUNC_keyexch_get_ctx_params(fns); in evp_keyexch_from_algorithm()
[all …]
H A Ddigest.c1018 const OSSL_DISPATCH *fns = algodef->implementation; in evp_md_from_algorithm() local
1043 for (; fns->function_id != 0; fns++) { in evp_md_from_algorithm()
1044 switch (fns->function_id) { in evp_md_from_algorithm()
1047 md->newctx = OSSL_FUNC_digest_newctx(fns); in evp_md_from_algorithm()
1053 md->dinit = OSSL_FUNC_digest_init(fns); in evp_md_from_algorithm()
1059 md->dupdate = OSSL_FUNC_digest_update(fns); in evp_md_from_algorithm()
1065 md->dfinal = OSSL_FUNC_digest_final(fns); in evp_md_from_algorithm()
1071 md->dsqueeze = OSSL_FUNC_digest_squeeze(fns); in evp_md_from_algorithm()
1077 md->digest = OSSL_FUNC_digest_digest(fns); in evp_md_from_algorithm()
1082 md->freectx = OSSL_FUNC_digest_freectx(fns); in evp_md_from_algorithm()
[all …]
H A Devp_enc.c1881 const OSSL_DISPATCH *fns = algodef->implementation; in evp_cipher_from_algorithm() local
1905 for (; fns->function_id != 0; fns++) { in evp_cipher_from_algorithm()
1906 switch (fns->function_id) { in evp_cipher_from_algorithm()
1910 cipher->newctx = OSSL_FUNC_cipher_newctx(fns); in evp_cipher_from_algorithm()
1916 cipher->einit = OSSL_FUNC_cipher_encrypt_init(fns); in evp_cipher_from_algorithm()
1922 cipher->dinit = OSSL_FUNC_cipher_decrypt_init(fns); in evp_cipher_from_algorithm()
1928 cipher->einit_skey = OSSL_FUNC_cipher_encrypt_skey_init(fns); in evp_cipher_from_algorithm()
1934 cipher->dinit_skey = OSSL_FUNC_cipher_decrypt_skey_init(fns); in evp_cipher_from_algorithm()
1940 cipher->cupdate = OSSL_FUNC_cipher_update(fns); in evp_cipher_from_algorithm()
1946 cipher->cfinal = OSSL_FUNC_cipher_final(fns); in evp_cipher_from_algorithm()
[all …]
/freebsd/crypto/openssl/providers/common/
H A Dprovider_seeding.c41 int ossl_prov_seeding_from_dispatch(const OSSL_DISPATCH *fns) in ossl_prov_seeding_from_dispatch() argument
43 for (; fns->function_id != 0; fns++) { in ossl_prov_seeding_from_dispatch()
56 switch (fns->function_id) { in ossl_prov_seeding_from_dispatch()
58 set_func(c_get_entropy, OSSL_FUNC_get_entropy(fns)); in ossl_prov_seeding_from_dispatch()
61 set_func(c_get_user_entropy, OSSL_FUNC_get_user_entropy(fns)); in ossl_prov_seeding_from_dispatch()
64 set_func(c_cleanup_entropy, OSSL_FUNC_cleanup_entropy(fns)); in ossl_prov_seeding_from_dispatch()
67 set_func(c_cleanup_user_entropy, OSSL_FUNC_cleanup_user_entropy(fns)); in ossl_prov_seeding_from_dispatch()
70 set_func(c_get_nonce, OSSL_FUNC_get_nonce(fns)); in ossl_prov_seeding_from_dispatch()
73 set_func(c_get_user_nonce, OSSL_FUNC_get_user_nonce(fns)); in ossl_prov_seeding_from_dispatch()
76 set_func(c_cleanup_nonce, OSSL_FUNC_cleanup_nonce(fns)); in ossl_prov_seeding_from_dispatch()
[all …]
H A Dbio_prov.c26 int ossl_prov_bio_from_dispatch(const OSSL_DISPATCH *fns) in ossl_prov_bio_from_dispatch() argument
28 for (; fns->function_id != 0; fns++) { in ossl_prov_bio_from_dispatch()
29 switch (fns->function_id) { in ossl_prov_bio_from_dispatch()
32 c_bio_new_file = OSSL_FUNC_BIO_new_file(fns); in ossl_prov_bio_from_dispatch()
36 c_bio_new_membuf = OSSL_FUNC_BIO_new_membuf(fns); in ossl_prov_bio_from_dispatch()
40 c_bio_read_ex = OSSL_FUNC_BIO_read_ex(fns); in ossl_prov_bio_from_dispatch()
44 c_bio_write_ex = OSSL_FUNC_BIO_write_ex(fns); in ossl_prov_bio_from_dispatch()
48 c_bio_gets = OSSL_FUNC_BIO_gets(fns); in ossl_prov_bio_from_dispatch()
52 c_bio_puts = OSSL_FUNC_BIO_puts(fns); in ossl_prov_bio_from_dispatch()
56 c_bio_ctrl = OSSL_FUNC_BIO_ctrl(fns); in ossl_prov_bio_from_dispatch()
[all …]
/freebsd/crypto/openssl/crypto/bio/
H A Dbss_core.c147 int ossl_bio_init_core(OSSL_LIB_CTX *libctx, const OSSL_DISPATCH *fns) in ossl_bio_init_core() argument
154 for (; fns->function_id != 0; fns++) { in ossl_bio_init_core()
155 switch (fns->function_id) { in ossl_bio_init_core()
158 bcgbl->c_bio_read_ex = OSSL_FUNC_BIO_read_ex(fns); in ossl_bio_init_core()
162 bcgbl->c_bio_write_ex = OSSL_FUNC_BIO_write_ex(fns); in ossl_bio_init_core()
166 bcgbl->c_bio_gets = OSSL_FUNC_BIO_gets(fns); in ossl_bio_init_core()
170 bcgbl->c_bio_puts = OSSL_FUNC_BIO_puts(fns); in ossl_bio_init_core()
174 bcgbl->c_bio_ctrl = OSSL_FUNC_BIO_ctrl(fns); in ossl_bio_init_core()
178 bcgbl->c_bio_up_ref = OSSL_FUNC_BIO_up_ref(fns); in ossl_bio_init_core()
182 bcgbl->c_bio_free = OSSL_FUNC_BIO_free(fns); in ossl_bio_init_core()
/freebsd/crypto/openssl/crypto/store/
H A Dstore_meth.c182 const OSSL_DISPATCH *fns = algodef->implementation; in loader_from_algorithm() local
190 for (; fns->function_id != 0; fns++) { in loader_from_algorithm()
191 switch (fns->function_id) { in loader_from_algorithm()
194 loader->p_open = OSSL_FUNC_store_open(fns); in loader_from_algorithm()
198 loader->p_attach = OSSL_FUNC_store_attach(fns); in loader_from_algorithm()
202 loader->p_settable_ctx_params = OSSL_FUNC_store_settable_ctx_params(fns); in loader_from_algorithm()
206 loader->p_set_ctx_params = OSSL_FUNC_store_set_ctx_params(fns); in loader_from_algorithm()
210 loader->p_load = OSSL_FUNC_store_load(fns); in loader_from_algorithm()
214 loader->p_eof = OSSL_FUNC_store_eof(fns); in loader_from_algorithm()
218 loader->p_close = OSSL_FUNC_store_close(fns); in loader_from_algorithm()
[all …]
/freebsd/crypto/openssl/doc/internal/man3/
H A Devp_generic_fetch.pod16 const OSSL_DISPATCH *fns,
26 const OSSL_DISPATCH *fns,
53 dispatch table I<fns>, with name identity I<name_id>.
115 const OSSL_DISPATCH *fns,
129 for (; fns->function_id != 0; fns++) {
130 switch (fns->function_id) {
132 foo->newctx = OSSL_FUNC_foo_newctx(fns);
135 foo->init = OSSL_FUNC_foo_init(fns);
138 foo->operate = OSSL_FUNC_foo_operate(fns);
141 foo->cleanctx = OSSL_FUNC_foo_cleanctx(fns);
[all …]
/freebsd/crypto/openssl/crypto/encode_decode/
H A Dencoder_meth.c213 const OSSL_DISPATCH *fns = algodef->implementation; in encoder_from_algorithm() local
231 for (; fns->function_id != 0; fns++) { in encoder_from_algorithm()
232 switch (fns->function_id) { in encoder_from_algorithm()
235 encoder->newctx = OSSL_FUNC_encoder_newctx(fns); in encoder_from_algorithm()
239 encoder->freectx = OSSL_FUNC_encoder_freectx(fns); in encoder_from_algorithm()
243 encoder->get_params = OSSL_FUNC_encoder_get_params(fns); in encoder_from_algorithm()
247 encoder->gettable_params = OSSL_FUNC_encoder_gettable_params(fns); in encoder_from_algorithm()
251 encoder->set_ctx_params = OSSL_FUNC_encoder_set_ctx_params(fns); in encoder_from_algorithm()
255 encoder->settable_ctx_params = OSSL_FUNC_encoder_settable_ctx_params(fns); in encoder_from_algorithm()
259 encoder->does_selection = OSSL_FUNC_encoder_does_selection(fns); in encoder_from_algorithm()
[all …]
H A Ddecoder_meth.c213 const OSSL_DISPATCH *fns = algodef->implementation; in ossl_decoder_from_algorithm() local
231 for (; fns->function_id != 0; fns++) { in ossl_decoder_from_algorithm()
232 switch (fns->function_id) { in ossl_decoder_from_algorithm()
235 decoder->newctx = OSSL_FUNC_decoder_newctx(fns); in ossl_decoder_from_algorithm()
239 decoder->freectx = OSSL_FUNC_decoder_freectx(fns); in ossl_decoder_from_algorithm()
243 decoder->get_params = OSSL_FUNC_decoder_get_params(fns); in ossl_decoder_from_algorithm()
247 decoder->gettable_params = OSSL_FUNC_decoder_gettable_params(fns); in ossl_decoder_from_algorithm()
251 decoder->set_ctx_params = OSSL_FUNC_decoder_set_ctx_params(fns); in ossl_decoder_from_algorithm()
255 decoder->settable_ctx_params = OSSL_FUNC_decoder_settable_ctx_params(fns); in ossl_decoder_from_algorithm()
259 decoder->does_selection = OSSL_FUNC_decoder_does_selection(fns); in ossl_decoder_from_algorithm()
[all …]
/freebsd/lib/libc/stdlib/
H A Datexit.c78 } fns[ATEXIT_SIZE]; /* the table itself */ member
120 p->fns[p->ind++] = *fptr; in atexit_register()
222 if (p->fns[n].fn_type == ATEXIT_FN_EMPTY) in __cxa_finalize()
224 fn = p->fns[n]; in __cxa_finalize()
236 p->fns[n].fn_type = ATEXIT_FN_EMPTY; in __cxa_finalize()
/freebsd/usr.bin/sort/
H A Dfile.c222 if (fl->count >= fl->sz || (fl->fns == NULL)) { in file_list_add()
224 fl->fns = sort_realloc(fl->fns, fl->sz * in file_list_add()
227 fl->fns[fl->count] = allocate ? sort_strdup(fn) : fn; in file_list_add()
256 if (fl->fns) { in file_list_clean()
260 if (fl->fns[i]) { in file_list_clean()
262 unlink(fl->fns[i]); in file_list_clean()
263 sort_free(fl->fns[i]); in file_list_clean()
264 fl->fns[i] = 0; in file_list_clean()
267 sort_free(fl->fns); in file_list_clean()
268 fl->fns = NULL; in file_list_clean()
[all …]
/freebsd/crypto/openssl/crypto/engine/
H A Deng_dyn.c415 dynamic_fns fns; in dynamic_load() local
481 fns.static_state = ENGINE_get_static_state(); in dynamic_load()
482 CRYPTO_get_mem_functions(&fns.mem_fns.malloc_fn, &fns.mem_fns.realloc_fn, in dynamic_load()
483 &fns.mem_fns.free_fn); in dynamic_load()
492 || !ctx->bind_engine(e, ctx->engine_id, &fns)) { in dynamic_load()
/freebsd/contrib/lyaml/lib/lyaml/
H A Dfunctional.lua59 local function anyof(fns)
61 for _, fn in ipairs(fns) do

123