| /crypto/evp/ |
| A D | cmeth_lib.c | 94 int (*init) (EVP_CIPHER_CTX *ctx, in EVP_CIPHER_meth_set_init() 99 if (cipher->init != NULL) in EVP_CIPHER_meth_set_init() 102 cipher->init = init; in EVP_CIPHER_meth_set_init() 168 return cipher->init; in EVP_CIPHER_meth_get_init()
|
| A D | m_null.c | 17 static int init(EVP_MD_CTX *ctx) in init() function 38 init,
|
| A D | legacy_meth.h | 39 #define LEGACY_EVP_MD_METH_TABLE(init, update, final, ctrl, blksz) \ argument 40 init, update, final, NULL, NULL, blksz, 0, ctrl
|
| /crypto/bio/ |
| A D | bss_sock.c | 91 bi->init = 0; in sock_new() 105 if (a->init) { in sock_free() 108 a->init = 0; in sock_free() 189 if (b->init) in sock_ctrl() 195 b->init = 1; in sock_ctrl() 200 if (b->init) { in sock_ctrl() 223 if (!b->init) { in sock_ctrl()
|
| A D | bss_fd.c | 92 bi->init = 0; in fd_new() 104 if (a->init) { in fd_free() 107 a->init = 0; in fd_free() 164 b->init = 1; in fd_ctrl() 167 if (b->init) { in fd_ctrl()
|
| A D | bss_bio.c | 117 if (!bio->init) in bio_read() 207 if (!bio->init) in bio_nread0() 353 if (!bio->init) in bio_nwrite0() 648 bio1->init = 1; in bio_make_pair() 649 bio2->init = 1; in bio_make_pair() 668 peer_bio->init = 0; in bio_destroy_pair() 674 bio->init = 0; in bio_destroy_pair() 753 if (!bio->init) { in BIO_nread0() 769 if (!bio->init) { in BIO_nread() 784 if (!bio->init) { in BIO_nwrite0() [all …]
|
| A D | bss_file.c | 111 bi->init = 0; in file_new() 123 if ((a->init) && (a->ptr != NULL)) { in file_free() 131 a->init = 0; in file_free() 140 if (b->init && (out != NULL)) { in file_read() 161 if (b->init && (in != NULL)) { in file_write() 211 b->init = 1; in file_ctrl() 296 b->init = 1; in file_ctrl()
|
| A D | bio_lib.c | 104 bio->init = 1; in BIO_new_ex() 164 a->init = init; in BIO_set_init() 169 return a->init; in BIO_get_init() 280 if (!b->init) { in bio_read_intern() 351 if (!b->init) { in bio_write_intern() 426 if (!b->init) { in BIO_sendmmsg() 473 if (!b->init) { in BIO_recvmmsg() 518 if (!b->init) { in BIO_puts() 572 if (!b->init) { in BIO_gets() 618 if (!bio->init) { in BIO_get_line() [all …]
|
| A D | bss_acpt.c | 80 bi->init = 0; in acpt_new() 143 a->init = 0; in acpt_free() 439 b->init = 1; in acpt_ctrl() 445 b->init = 1; in acpt_ctrl() 475 b->init = 1; in acpt_ctrl() 478 if (b->init) { in acpt_ctrl() 487 if (b->init) { in acpt_ctrl()
|
| A D | bss_dgram_pair.c | 314 bio->init = 1; in dgram_mem_init() 396 bio1->init = 1; in dgram_pair_ctrl_make_bio_pair() 397 bio2->init = 1; in dgram_pair_ctrl_make_bio_pair() 408 bio1->init = 0; in dgram_pair_ctrl_destroy_bio_pair() 426 bio2->init = 0; in dgram_pair_ctrl_destroy_bio_pair() 441 if (!bio->init) in dgram_pair_ctrl_eof() 501 if (!bio->init) in dgram_pair_ctrl_pending() 556 if (!bio->init) in dgram_pair_ctrl_get_local_addr_cap() 906 if (!bio->init) in dgram_pair_read_actual() 1070 if (!bio->init) { in dgram_pair_recvmmsg() [all …]
|
| A D | bf_nbio.c | 63 bi->init = 1; in nbiof_new() 73 a->init = 0; in nbiof_free()
|
| /crypto/ec/ |
| A D | ec_kmeth.c | 76 if (meth->init != NULL) in EC_KEY_set_method() 77 return meth->init(key); in EC_KEY_set_method() 131 if (ret->meth->init != NULL && ret->meth->init(ret) == 0) { in ossl_ec_key_new_method_int() 196 int (*init)(EC_KEY *key), in EC_KEY_METHOD_set_init() 205 meth->init = init; in EC_KEY_METHOD_set_init() 273 *pinit = meth->init; in EC_KEY_METHOD_get_init()
|
| /crypto/x509/ |
| A D | x509_meth.c | 72 int (*init) (X509_LOOKUP *ctx)) in X509_LOOKUP_meth_set_init() 74 method->init = init; in X509_LOOKUP_meth_set_init() 81 return method->init; in X509_LOOKUP_meth_get_init()
|
| A D | x509_local.h | 78 int (*init) (X509_LOOKUP *ctx); member 102 int init; /* have we been started */ member
|
| /crypto/des/ |
| A D | ecb_enc.c | 23 static int init = 1; in DES_options() local 26 if (init) { in DES_options() 31 init = 0; in DES_options()
|
| /crypto/bn/ |
| A D | bn_print.c | 58 static int init = 0; in BN_options() local 61 if (!init) { in BN_options() 62 init++; in BN_options()
|
| /crypto/dh/ |
| A D | dh_meth.c | 144 return dhm->init; in DH_meth_get_init() 147 int DH_meth_set_init(DH_METHOD *dhm, int (*init)(DH *)) in DH_meth_set_init() 149 dhm->init = init; in DH_meth_set_init()
|
| A D | dh_lib.c | 47 if (meth->init) in DH_set_method() 48 meth->init(dh); in DH_set_method() 124 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in dh_new_intern()
|
| /crypto/dsa/ |
| A D | dsa_meth.c | 175 return dsam->init; in DSA_meth_get_init() 178 int DSA_meth_set_init(DSA_METHOD *dsam, int (*init)(DSA *)) in DSA_meth_set_init() 180 dsam->init = init; in DSA_meth_set_init()
|
| A D | dsa_lib.c | 121 if (meth->init) in DSA_set_method() 122 meth->init(dsa); in DSA_set_method() 184 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in dsa_new_intern()
|
| /crypto/rsa/ |
| A D | rsa_meth.c | 204 return meth->init; in RSA_meth_get_init() 207 int RSA_meth_set_init(RSA_METHOD *meth, int (*init) (RSA *rsa)) in RSA_meth_set_init() 209 meth->init = init; in RSA_meth_set_init()
|
| /crypto/engine/ |
| A D | eng_init.c | 24 if ((e->funct_ref == 0) && e->init) in engine_unlocked_init() 29 to_return = e->init(e); in engine_unlocked_init()
|
| A D | eng_openssl.c | 283 static int init = 0; in test_cipher_nids() local 285 if (!init) { in test_cipher_nids() 292 init = 1; in test_cipher_nids() 381 static int init = 0; in test_digest_nids() local 383 if (!init) { in test_digest_nids() 388 init = 1; in test_digest_nids()
|
| A D | eng_lib.c | 67 e->init = NULL; in engine_set_all_null() 231 e->init = init_f; in ENGINE_set_init_function() 276 return e->init; in ENGINE_get_init_function()
|
| /crypto/comp/ |
| A D | comp_lib.c | 28 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in COMP_CTX_new()
|