/openssl/include/internal/ |
H A D | thread_once.h | 38 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 D | list.h | 23 # define OSSL_LIST_FOREACH_FROM(p, name, init) \ argument 24 for ((p) = (init); \ 30 # define OSSL_LIST_FOREACH_REV_FROM(p, name, init) \ argument 31 for ((p) = (init); \ 37 # define OSSL_LIST_FOREACH_DELSAFE_FROM(p, pn, name, init) \ argument 38 for ((p) = (init); \ 44 # define OSSL_LIST_FOREACH_REV_DELSAFE_FROM(p, pn, name, init) \ argument 45 for ((p) = (init); \
|
/openssl/providers/fips/ |
H A D | self_test.c | 78 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 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()
|
H A D | m_null.c | 17 static int init(EVP_MD_CTX *ctx) in init() function 38 init,
|
H 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
|
/openssl/crypto/des/ |
H 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()
|
/openssl/crypto/bio/ |
H 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()
|
H 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()
|
H 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() 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 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() 305 b->init = 1; in file_ctrl()
|
H 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 …]
|
H 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()
|
/openssl/crypto/x509/ |
H 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()
|
/openssl/providers/implementations/kdfs/ |
H A D | hmacdrbg_kdf.c | 37 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 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()
|
/openssl/crypto/bn/ |
H 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()
|
/openssl/test/recipes/ |
H A D | tconversion.pl | 58 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 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()
|
/openssl/providers/implementations/include/prov/ |
H A D | digestcommon.h | 88 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 D | NewSessionTicket.pm | 28 return $class->init( 51 return $class->init( 64 sub init{ subroutine
|
/openssl/crypto/dsa/ |
H 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()
|
/openssl/doc/man3/ |
H A D | BIO_get_data.pod | 14 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 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()
|
/openssl/.github/workflows/ |
H A D | run-checker-daily.yml | 142 run: git submodule update --init --depth 1 fuzz/corpora 161 run: git submodule update --init --depth 1 fuzz/corpora 209 run: git submodule update --init --depth 1 fuzz/corpora 231 run: git submodule update --init --depth 1 fuzz/corpora 253 run: git submodule update --init --depth 1 fuzz/corpora 276 run: git submodule update --init --depth 1 fuzz/corpora 298 run: git submodule update --init --depth 1 fuzz/corpora 324 run: git submodule update --init --depth 1 fuzz/corpora 348 run: git submodule update --init --depth 1 fuzz/corpora 363 run: git submodule update --init --depth 1 fuzz/corpora
|