Home
last modified time | relevance | path

Searched refs:init (Results 1 – 25 of 66) sorted by relevance

123

/crypto/evp/
A Dcmeth_lib.c94 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 Dm_null.c17 static int init(EVP_MD_CTX *ctx) in init() function
38 init,
A Dlegacy_meth.h39 #define LEGACY_EVP_MD_METH_TABLE(init, update, final, ctrl, blksz) \ argument
40 init, update, final, NULL, NULL, blksz, 0, ctrl
/crypto/bio/
A Dbss_sock.c91 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 Dbss_fd.c92 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 Dbss_bio.c117 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 Dbss_file.c111 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 Dbio_lib.c104 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 Dbss_acpt.c80 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 Dbss_dgram_pair.c314 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 Dbf_nbio.c63 bi->init = 1; in nbiof_new()
73 a->init = 0; in nbiof_free()
/crypto/ec/
A Dec_kmeth.c76 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 Dx509_meth.c72 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 Dx509_local.h78 int (*init) (X509_LOOKUP *ctx); member
102 int init; /* have we been started */ member
/crypto/des/
A Decb_enc.c23 static int init = 1; in DES_options() local
26 if (init) { in DES_options()
31 init = 0; in DES_options()
/crypto/bn/
A Dbn_print.c58 static int init = 0; in BN_options() local
61 if (!init) { in BN_options()
62 init++; in BN_options()
/crypto/dh/
A Ddh_meth.c144 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 Ddh_lib.c47 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 Ddsa_meth.c175 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 Ddsa_lib.c121 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 Drsa_meth.c204 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 Deng_init.c24 if ((e->funct_ref == 0) && e->init) in engine_unlocked_init()
29 to_return = e->init(e); in engine_unlocked_init()
A Deng_openssl.c283 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 Deng_lib.c67 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 Dcomp_lib.c28 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) { in COMP_CTX_new()

Completed in 62 milliseconds

123