Home
last modified time | relevance | path

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

1234567

/openssl/include/internal/
H A Dthread_once.h38 static int init(void); \
39 int init##_ossl_ret_ = 0; \
40 void init##_ossl_(void) \
42 init##_ossl_ret_ = init(); \
44 static int init(void)
51 extern int init##_ossl_ret_; \
52 void init##_ossl_(void);
70 static int init(void); \
74 init##_ossl_ret_ = init(); \
76 static int init(void)
[all …]
H A Dlist.h23 # define LIST_FOREACH_FROM(p, name, init) \ argument
24 for ((p) = (init); \
30 # define LIST_FOREACH_REV_FROM(p, name, init) \ argument
31 for ((p) = (init); \
37 # define LIST_FOREACH_DELSAFE_FROM(p, pn, name, init) \ argument
38 for ((p) = (init); \
44 # define LIST_FOREACH_REV_DELSAFE_FROM(p, pn, name, init) \ argument
45 for ((p) = (init); \
/openssl/providers/fips/
H A Dself_test.c78 static void init(void);
100 init(); in DllMain()
118 # pragma init(init)
124 # pragma init(_init)
128 init(); in _init()
136 # pragma init "init"
142 init(); in __INIT__init()
165 DEP_INIT_ATTRIBUTE void init(void) in init() function
/openssl/crypto/evp/
H 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()
H A Dm_null.c17 static int init(EVP_MD_CTX *ctx) in init() function
38 init,
H 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
/openssl/crypto/des/
H A Decb_enc.c23 static int init = 1; in DES_options() local
26 if (init) { in DES_options()
31 init = 0; in DES_options()
/openssl/crypto/bio/
H 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()
H 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()
H A Dbss_bio.c117 if (!bio->init) in bio_read()
207 if (!bio->init) in bio_nread0()
353 if (!bio->init) in bio_nwrite0()
644 bio1->init = 1; in bio_make_pair()
645 bio2->init = 1; in bio_make_pair()
664 peer_bio->init = 0; in bio_destroy_pair()
670 bio->init = 0; in bio_destroy_pair()
746 if (!bio->init) { in BIO_nread0()
762 if (!bio->init) { in BIO_nread()
777 if (!bio->init) { in BIO_nwrite0()
[all …]
H 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()
305 b->init = 1; in file_ctrl()
H 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 …]
H 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()
/openssl/crypto/x509/
H 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()
/openssl/providers/implementations/kdfs/
H A Dhmacdrbg_kdf.c37 int init; member
107 dst->init = src->init; in hmac_drbg_kdf_dup()
125 if (!ctx->init) { in hmac_drbg_kdf_derive()
133 ctx->init = 1; in hmac_drbg_kdf_derive()
198 hmac->init = 0; in hmac_drbg_kdf_set_ctx_params()
209 hmac->init = 0; in hmac_drbg_kdf_set_ctx_params()
/openssl/crypto/ec/
H 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()
/openssl/crypto/bn/
H A Dbn_print.c58 static int init = 0; in BN_options() local
61 if (!init) { in BN_options()
62 init++; in BN_options()
/openssl/test/recipes/
H A Dtconversion.pl58 my $init;
60 $init = ok(run(app([@cmd, "-in", $t, "-out", "$prefix-fff.p"])),
63 $init = ok(copy($t, "$prefix-fff.p"), 'initializing');
65 if (!$init) {
70 skip "Not initialized, skipping...", 22 unless $init;
/openssl/crypto/dh/
H 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()
/openssl/providers/implementations/include/prov/
H A Ddigestcommon.h88 name, CTX, blksize, dgstsize, flags, init, upd, fin) \ argument
93 return ossl_prov_is_running() && init(ctx); \
101 name, CTX, blksize, dgstsize, flags, init, upd, fin, \ argument
107 && init(ctx) \
/openssl/util/perl/TLSProxy/
H A DNewSessionTicket.pm28 return $class->init(
51 return $class->init(
64 sub init{ subroutine
/openssl/crypto/dsa/
H 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()
/openssl/doc/man3/
H A DBIO_get_data.pod14 void BIO_set_init(BIO *a, int init);
27 The BIO_set_init() function sets the value of the BIO's "init" flag to indicate
33 function returns the value of the "init" flag.
44 BIO_get_init() returns the state of the BIO's init flag.
/openssl/crypto/rsa/
H 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()
/openssl/.github/workflows/
H A Drun-checker-daily.yml141 run: git submodule update --init --depth 1 fuzz/corpora
160 run: git submodule update --init --depth 1 fuzz/corpora
208 run: git submodule update --init --depth 1 fuzz/corpora
230 run: git submodule update --init --depth 1 fuzz/corpora
252 run: git submodule update --init --depth 1 fuzz/corpora
275 run: git submodule update --init --depth 1 fuzz/corpora
297 run: git submodule update --init --depth 1 fuzz/corpora
323 run: git submodule update --init --depth 1 fuzz/corpora
347 run: git submodule update --init --depth 1 fuzz/corpora
362 run: git submodule update --init --depth 1 fuzz/corpora

Completed in 60 milliseconds

1234567