/third_party/lwip/src/core/ |
D | altcp.c | 152 if (conn->fns && conn->fns->dealloc) { in altcp_free() 153 conn->fns->dealloc(conn); in altcp_free() 266 if (conn->fns && conn->fns->set_poll) { in altcp_poll() 267 conn->fns->set_poll(conn, interval); in altcp_poll() 293 if (conn && conn->fns && conn->fns->recved) { in altcp_recved() 294 conn->fns->recved(conn, len); in altcp_recved() 305 if (conn && conn->fns && conn->fns->bind) { in altcp_bind() 306 return conn->fns->bind(conn, ipaddr, port); in altcp_bind() 318 if (conn && conn->fns && conn->fns->connect) { in altcp_connect() 319 return conn->fns->connect(conn, ipaddr, port, connected); in altcp_connect() [all …]
|
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/ |
D | endecoder_common.c | 17 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 …]
|
D | endecoder_local.h | 15 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);
|
/third_party/openssl/providers/implementations/encode_decode/ |
D | endecoder_common.c | 17 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 …]
|
D | endecoder_local.h | 15 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);
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
D | keymgmt_meth.c | 40 const OSSL_DISPATCH *fns = algodef->implementation; in keymgmt_from_algorithm() local 56 for (; fns->function_id != 0; fns++) { in keymgmt_from_algorithm() 57 switch (fns->function_id) { in keymgmt_from_algorithm() 60 keymgmt->new = OSSL_FUNC_keymgmt_new(fns); in keymgmt_from_algorithm() 64 keymgmt->gen_init = OSSL_FUNC_keymgmt_gen_init(fns); in keymgmt_from_algorithm() 69 OSSL_FUNC_keymgmt_gen_set_template(fns); in keymgmt_from_algorithm() 75 OSSL_FUNC_keymgmt_gen_set_params(fns); in keymgmt_from_algorithm() 82 OSSL_FUNC_keymgmt_gen_settable_params(fns); in keymgmt_from_algorithm() 87 keymgmt->gen = OSSL_FUNC_keymgmt_gen(fns); in keymgmt_from_algorithm() 91 keymgmt->gen_cleanup = OSSL_FUNC_keymgmt_gen_cleanup(fns); in keymgmt_from_algorithm() [all …]
|
D | mac_meth.c | 64 const OSSL_DISPATCH *fns = algodef->implementation; in evp_mac_from_algorithm() local 79 for (; fns->function_id != 0; fns++) { in evp_mac_from_algorithm() 80 switch (fns->function_id) { in evp_mac_from_algorithm() 84 mac->newctx = OSSL_FUNC_mac_newctx(fns); in evp_mac_from_algorithm() 90 mac->dupctx = OSSL_FUNC_mac_dupctx(fns); in evp_mac_from_algorithm() 95 mac->freectx = OSSL_FUNC_mac_freectx(fns); in evp_mac_from_algorithm() 101 mac->init = OSSL_FUNC_mac_init(fns); in evp_mac_from_algorithm() 107 mac->update = OSSL_FUNC_mac_update(fns); in evp_mac_from_algorithm() 113 mac->final = OSSL_FUNC_mac_final(fns); in evp_mac_from_algorithm() 120 OSSL_FUNC_mac_gettable_params(fns); in evp_mac_from_algorithm() [all …]
|
D | kdf_meth.c | 63 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm() local 78 for (; fns->function_id != 0; fns++) { in evp_kdf_from_algorithm() 79 switch (fns->function_id) { in evp_kdf_from_algorithm() 83 kdf->newctx = OSSL_FUNC_kdf_newctx(fns); in evp_kdf_from_algorithm() 89 kdf->dupctx = OSSL_FUNC_kdf_dupctx(fns); in evp_kdf_from_algorithm() 94 kdf->freectx = OSSL_FUNC_kdf_freectx(fns); in evp_kdf_from_algorithm() 100 kdf->reset = OSSL_FUNC_kdf_reset(fns); in evp_kdf_from_algorithm() 105 kdf->derive = OSSL_FUNC_kdf_derive(fns); in evp_kdf_from_algorithm() 112 OSSL_FUNC_kdf_gettable_params(fns); in evp_kdf_from_algorithm() 118 OSSL_FUNC_kdf_gettable_ctx_params(fns); in evp_kdf_from_algorithm() [all …]
|
D | signature.c | 47 const OSSL_DISPATCH *fns = algodef->implementation; in evp_signature_from_algorithm() local 63 for (; fns->function_id != 0; fns++) { in evp_signature_from_algorithm() 64 switch (fns->function_id) { in evp_signature_from_algorithm() 68 signature->newctx = OSSL_FUNC_signature_newctx(fns); in evp_signature_from_algorithm() 74 signature->sign_init = OSSL_FUNC_signature_sign_init(fns); in evp_signature_from_algorithm() 80 signature->sign = OSSL_FUNC_signature_sign(fns); in evp_signature_from_algorithm() 86 signature->verify_init = OSSL_FUNC_signature_verify_init(fns); in evp_signature_from_algorithm() 92 signature->verify = OSSL_FUNC_signature_verify(fns); in evp_signature_from_algorithm() 99 = OSSL_FUNC_signature_verify_recover_init(fns); in evp_signature_from_algorithm() 106 = OSSL_FUNC_signature_verify_recover(fns); in evp_signature_from_algorithm() [all …]
|
D | evp_rand.c | 119 const OSSL_DISPATCH *fns = algodef->implementation; in evp_rand_from_algorithm() local 136 rand->dispatch = fns; in evp_rand_from_algorithm() 137 for (; fns->function_id != 0; fns++) { in evp_rand_from_algorithm() 138 switch (fns->function_id) { in evp_rand_from_algorithm() 142 rand->newctx = OSSL_FUNC_rand_newctx(fns); in evp_rand_from_algorithm() 148 rand->freectx = OSSL_FUNC_rand_freectx(fns); in evp_rand_from_algorithm() 154 rand->instantiate = OSSL_FUNC_rand_instantiate(fns); in evp_rand_from_algorithm() 160 rand->uninstantiate = OSSL_FUNC_rand_uninstantiate(fns); in evp_rand_from_algorithm() 166 rand->generate = OSSL_FUNC_rand_generate(fns); in evp_rand_from_algorithm() 172 rand->reseed = OSSL_FUNC_rand_reseed(fns); in evp_rand_from_algorithm() [all …]
|
D | kem.c | 262 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kem_from_algorithm() local 277 for (; fns->function_id != 0; fns++) { in evp_kem_from_algorithm() 278 switch (fns->function_id) { in evp_kem_from_algorithm() 282 kem->newctx = OSSL_FUNC_kem_newctx(fns); in evp_kem_from_algorithm() 288 kem->encapsulate_init = OSSL_FUNC_kem_encapsulate_init(fns); in evp_kem_from_algorithm() 294 kem->encapsulate = OSSL_FUNC_kem_encapsulate(fns); in evp_kem_from_algorithm() 300 kem->decapsulate_init = OSSL_FUNC_kem_decapsulate_init(fns); in evp_kem_from_algorithm() 306 kem->decapsulate = OSSL_FUNC_kem_decapsulate(fns); in evp_kem_from_algorithm() 312 kem->freectx = OSSL_FUNC_kem_freectx(fns); in evp_kem_from_algorithm() 318 kem->dupctx = OSSL_FUNC_kem_dupctx(fns); in evp_kem_from_algorithm() [all …]
|
/third_party/openssl/crypto/evp/ |
D | keymgmt_meth.c | 40 const OSSL_DISPATCH *fns = algodef->implementation; in keymgmt_from_algorithm() local 56 for (; fns->function_id != 0; fns++) { in keymgmt_from_algorithm() 57 switch (fns->function_id) { in keymgmt_from_algorithm() 60 keymgmt->new = OSSL_FUNC_keymgmt_new(fns); in keymgmt_from_algorithm() 64 keymgmt->gen_init = OSSL_FUNC_keymgmt_gen_init(fns); in keymgmt_from_algorithm() 69 OSSL_FUNC_keymgmt_gen_set_template(fns); in keymgmt_from_algorithm() 75 OSSL_FUNC_keymgmt_gen_set_params(fns); in keymgmt_from_algorithm() 82 OSSL_FUNC_keymgmt_gen_settable_params(fns); in keymgmt_from_algorithm() 87 keymgmt->gen = OSSL_FUNC_keymgmt_gen(fns); in keymgmt_from_algorithm() 91 keymgmt->gen_cleanup = OSSL_FUNC_keymgmt_gen_cleanup(fns); in keymgmt_from_algorithm() [all …]
|
D | mac_meth.c | 64 const OSSL_DISPATCH *fns = algodef->implementation; in evp_mac_from_algorithm() local 79 for (; fns->function_id != 0; fns++) { in evp_mac_from_algorithm() 80 switch (fns->function_id) { in evp_mac_from_algorithm() 84 mac->newctx = OSSL_FUNC_mac_newctx(fns); in evp_mac_from_algorithm() 90 mac->dupctx = OSSL_FUNC_mac_dupctx(fns); in evp_mac_from_algorithm() 95 mac->freectx = OSSL_FUNC_mac_freectx(fns); in evp_mac_from_algorithm() 101 mac->init = OSSL_FUNC_mac_init(fns); in evp_mac_from_algorithm() 107 mac->update = OSSL_FUNC_mac_update(fns); in evp_mac_from_algorithm() 113 mac->final = OSSL_FUNC_mac_final(fns); in evp_mac_from_algorithm() 120 OSSL_FUNC_mac_gettable_params(fns); in evp_mac_from_algorithm() [all …]
|
D | kdf_meth.c | 63 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kdf_from_algorithm() local 78 for (; fns->function_id != 0; fns++) { in evp_kdf_from_algorithm() 79 switch (fns->function_id) { in evp_kdf_from_algorithm() 83 kdf->newctx = OSSL_FUNC_kdf_newctx(fns); in evp_kdf_from_algorithm() 89 kdf->dupctx = OSSL_FUNC_kdf_dupctx(fns); in evp_kdf_from_algorithm() 94 kdf->freectx = OSSL_FUNC_kdf_freectx(fns); in evp_kdf_from_algorithm() 100 kdf->reset = OSSL_FUNC_kdf_reset(fns); in evp_kdf_from_algorithm() 105 kdf->derive = OSSL_FUNC_kdf_derive(fns); in evp_kdf_from_algorithm() 112 OSSL_FUNC_kdf_gettable_params(fns); in evp_kdf_from_algorithm() 118 OSSL_FUNC_kdf_gettable_ctx_params(fns); in evp_kdf_from_algorithm() [all …]
|
D | signature.c | 47 const OSSL_DISPATCH *fns = algodef->implementation; in evp_signature_from_algorithm() local 63 for (; fns->function_id != 0; fns++) { in evp_signature_from_algorithm() 64 switch (fns->function_id) { in evp_signature_from_algorithm() 68 signature->newctx = OSSL_FUNC_signature_newctx(fns); in evp_signature_from_algorithm() 74 signature->sign_init = OSSL_FUNC_signature_sign_init(fns); in evp_signature_from_algorithm() 80 signature->sign = OSSL_FUNC_signature_sign(fns); in evp_signature_from_algorithm() 86 signature->verify_init = OSSL_FUNC_signature_verify_init(fns); in evp_signature_from_algorithm() 92 signature->verify = OSSL_FUNC_signature_verify(fns); in evp_signature_from_algorithm() 99 = OSSL_FUNC_signature_verify_recover_init(fns); in evp_signature_from_algorithm() 106 = OSSL_FUNC_signature_verify_recover(fns); in evp_signature_from_algorithm() [all …]
|
D | evp_rand.c | 119 const OSSL_DISPATCH *fns = algodef->implementation; in evp_rand_from_algorithm() local 136 rand->dispatch = fns; in evp_rand_from_algorithm() 137 for (; fns->function_id != 0; fns++) { in evp_rand_from_algorithm() 138 switch (fns->function_id) { in evp_rand_from_algorithm() 142 rand->newctx = OSSL_FUNC_rand_newctx(fns); in evp_rand_from_algorithm() 148 rand->freectx = OSSL_FUNC_rand_freectx(fns); in evp_rand_from_algorithm() 154 rand->instantiate = OSSL_FUNC_rand_instantiate(fns); in evp_rand_from_algorithm() 160 rand->uninstantiate = OSSL_FUNC_rand_uninstantiate(fns); in evp_rand_from_algorithm() 166 rand->generate = OSSL_FUNC_rand_generate(fns); in evp_rand_from_algorithm() 172 rand->reseed = OSSL_FUNC_rand_reseed(fns); in evp_rand_from_algorithm() [all …]
|
D | kem.c | 262 const OSSL_DISPATCH *fns = algodef->implementation; in evp_kem_from_algorithm() local 277 for (; fns->function_id != 0; fns++) { in evp_kem_from_algorithm() 278 switch (fns->function_id) { in evp_kem_from_algorithm() 282 kem->newctx = OSSL_FUNC_kem_newctx(fns); in evp_kem_from_algorithm() 288 kem->encapsulate_init = OSSL_FUNC_kem_encapsulate_init(fns); in evp_kem_from_algorithm() 294 kem->encapsulate = OSSL_FUNC_kem_encapsulate(fns); in evp_kem_from_algorithm() 300 kem->decapsulate_init = OSSL_FUNC_kem_decapsulate_init(fns); in evp_kem_from_algorithm() 306 kem->decapsulate = OSSL_FUNC_kem_decapsulate(fns); in evp_kem_from_algorithm() 312 kem->freectx = OSSL_FUNC_kem_freectx(fns); in evp_kem_from_algorithm() 318 kem->dupctx = OSSL_FUNC_kem_dupctx(fns); in evp_kem_from_algorithm() [all …]
|
D | asymcipher.c | 328 const OSSL_DISPATCH *fns = algodef->implementation; in evp_asym_cipher_from_algorithm() local 343 for (; fns->function_id != 0; fns++) { in evp_asym_cipher_from_algorithm() 344 switch (fns->function_id) { in evp_asym_cipher_from_algorithm() 348 cipher->newctx = OSSL_FUNC_asym_cipher_newctx(fns); in evp_asym_cipher_from_algorithm() 354 cipher->encrypt_init = OSSL_FUNC_asym_cipher_encrypt_init(fns); in evp_asym_cipher_from_algorithm() 360 cipher->encrypt = OSSL_FUNC_asym_cipher_encrypt(fns); in evp_asym_cipher_from_algorithm() 366 cipher->decrypt_init = OSSL_FUNC_asym_cipher_decrypt_init(fns); in evp_asym_cipher_from_algorithm() 372 cipher->decrypt = OSSL_FUNC_asym_cipher_decrypt(fns); in evp_asym_cipher_from_algorithm() 378 cipher->freectx = OSSL_FUNC_asym_cipher_freectx(fns); in evp_asym_cipher_from_algorithm() 384 cipher->dupctx = OSSL_FUNC_asym_cipher_dupctx(fns); in evp_asym_cipher_from_algorithm() [all …]
|
/third_party/node/deps/openssl/openssl/providers/common/ |
D | bio_prov.c | 26 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 …]
|
D | provider_seeding.c | 18 int ossl_prov_seeding_from_dispatch(const OSSL_DISPATCH *fns) in ossl_prov_seeding_from_dispatch() argument 20 for (; fns->function_id != 0; fns++) { in ossl_prov_seeding_from_dispatch() 28 switch (fns->function_id) { in ossl_prov_seeding_from_dispatch() 30 set_func(c_get_entropy, OSSL_FUNC_get_entropy(fns)); in ossl_prov_seeding_from_dispatch() 33 set_func(c_cleanup_entropy, OSSL_FUNC_cleanup_entropy(fns)); in ossl_prov_seeding_from_dispatch() 36 set_func(c_get_nonce, OSSL_FUNC_get_nonce(fns)); in ossl_prov_seeding_from_dispatch() 39 set_func(c_cleanup_nonce, OSSL_FUNC_cleanup_nonce(fns)); in ossl_prov_seeding_from_dispatch()
|
/third_party/openssl/providers/common/ |
D | bio_prov.c | 26 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 …]
|
D | provider_seeding.c | 18 int ossl_prov_seeding_from_dispatch(const OSSL_DISPATCH *fns) in ossl_prov_seeding_from_dispatch() argument 20 for (; fns->function_id != 0; fns++) { in ossl_prov_seeding_from_dispatch() 28 switch (fns->function_id) { in ossl_prov_seeding_from_dispatch() 30 set_func(c_get_entropy, OSSL_FUNC_get_entropy(fns)); in ossl_prov_seeding_from_dispatch() 33 set_func(c_cleanup_entropy, OSSL_FUNC_cleanup_entropy(fns)); in ossl_prov_seeding_from_dispatch() 36 set_func(c_get_nonce, OSSL_FUNC_get_nonce(fns)); in ossl_prov_seeding_from_dispatch() 39 set_func(c_cleanup_nonce, OSSL_FUNC_cleanup_nonce(fns)); in ossl_prov_seeding_from_dispatch()
|
/third_party/node/deps/openssl/openssl/crypto/bio/ |
D | bss_core.c | 153 int ossl_bio_init_core(OSSL_LIB_CTX *libctx, const OSSL_DISPATCH *fns) in ossl_bio_init_core() argument 160 for (; fns->function_id != 0; fns++) { in ossl_bio_init_core() 161 switch (fns->function_id) { in ossl_bio_init_core() 164 bcgbl->c_bio_read_ex = OSSL_FUNC_BIO_read_ex(fns); in ossl_bio_init_core() 168 bcgbl->c_bio_write_ex = OSSL_FUNC_BIO_write_ex(fns); in ossl_bio_init_core() 172 bcgbl->c_bio_gets = OSSL_FUNC_BIO_gets(fns); in ossl_bio_init_core() 176 bcgbl->c_bio_puts = OSSL_FUNC_BIO_puts(fns); in ossl_bio_init_core() 180 bcgbl->c_bio_ctrl = OSSL_FUNC_BIO_ctrl(fns); in ossl_bio_init_core() 184 bcgbl->c_bio_up_ref = OSSL_FUNC_BIO_up_ref(fns); in ossl_bio_init_core() 188 bcgbl->c_bio_free = OSSL_FUNC_BIO_free(fns); in ossl_bio_init_core()
|
/third_party/openssl/crypto/bio/ |
D | bss_core.c | 153 int ossl_bio_init_core(OSSL_LIB_CTX *libctx, const OSSL_DISPATCH *fns) in ossl_bio_init_core() argument 160 for (; fns->function_id != 0; fns++) { in ossl_bio_init_core() 161 switch (fns->function_id) { in ossl_bio_init_core() 164 bcgbl->c_bio_read_ex = OSSL_FUNC_BIO_read_ex(fns); in ossl_bio_init_core() 168 bcgbl->c_bio_write_ex = OSSL_FUNC_BIO_write_ex(fns); in ossl_bio_init_core() 172 bcgbl->c_bio_gets = OSSL_FUNC_BIO_gets(fns); in ossl_bio_init_core() 176 bcgbl->c_bio_puts = OSSL_FUNC_BIO_puts(fns); in ossl_bio_init_core() 180 bcgbl->c_bio_ctrl = OSSL_FUNC_BIO_ctrl(fns); in ossl_bio_init_core() 184 bcgbl->c_bio_up_ref = OSSL_FUNC_BIO_up_ref(fns); in ossl_bio_init_core() 188 bcgbl->c_bio_free = OSSL_FUNC_BIO_free(fns); in ossl_bio_init_core()
|
/third_party/libabigail/src/ |
D | abg-corpus-priv.h | 81 priv(functions& fns, in priv() argument 89 : fns_(fns), in priv() 305 fn_is_in_fns(const function_decl* fn, const vector<function_decl*>& fns) in fn_is_in_fns() argument 307 if (fns.empty()) in fn_is_in_fns() 311 for (vector<function_decl*>::const_iterator i = fns.begin(); in fn_is_in_fns() 312 i != fns.end(); in fn_is_in_fns() 329 vector<function_decl*>* fns = fn_id_is_in_id_fns_map(fn); in fn_is_in_id_fns_map() local 330 if (fns && fn_is_in_fns(fn, *fns)) in fn_is_in_id_fns_map() 347 vector<function_decl*>* fns = fn_id_is_in_id_fns_map(fn_id); in add_fn_to_id_fns_map() local 348 if (!fns) in add_fn_to_id_fns_map() [all …]
|