Symbol: ENGINE_set_name
crypto/openssl/crypto/engine/eng_dyn.c
243
if (!ENGINE_set_id(ret, engine_dynamic_id) || !ENGINE_set_name(ret, engine_dynamic_name) || !ENGINE_set_init_function(ret, dynamic_init) || !ENGINE_set_finish_function(ret, dynamic_finish) || !ENGINE_set_ctrl_function(ret, dynamic_ctrl) || !ENGINE_set_flags(ret, ENGINE_FLAGS_BY_ID_COPY) || !ENGINE_set_cmd_defns(ret, dynamic_cmd_defns)) {
crypto/openssl/crypto/engine/eng_openssl.c
98
|| !ENGINE_set_name(e, engine_openssl_name)
crypto/openssl/crypto/engine/eng_rdrand.c
76
if (!ENGINE_set_id(e, engine_e_rdrand_id) || !ENGINE_set_name(e, engine_e_rdrand_name) || !ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL) || !ENGINE_set_init_function(e, rdrand_init) || !ENGINE_set_RAND(e, &rdrand_meth))
crypto/openssl/engines/e_afalg.c
798
|| !ENGINE_set_name(e, engine_afalg_name)
crypto/openssl/engines/e_capi.c
540
|| !ENGINE_set_name(e, engine_capi_name)
crypto/openssl/engines/e_dasync.c
251
|| !ENGINE_set_name(e, engine_dasync_name)
crypto/openssl/engines/e_devcrypto.c
1259
|| !ENGINE_set_name(e, "/dev/crypto engine")
crypto/openssl/engines/e_loader_attic.c
1728
|| !ENGINE_set_name(e, loader_attic_name)
crypto/openssl/engines/e_ossltest.c
419
|| !ENGINE_set_name(e, engine_ossltest_name)
crypto/openssl/engines/e_padlock.c
112
if (!ENGINE_set_id(e, padlock_id) || !ENGINE_set_name(e, padlock_name) || !ENGINE_set_init_function(e, padlock_init) || (padlock_use_ace && !ENGINE_set_ciphers(e, padlock_ciphers)) || (padlock_use_rng && !ENGINE_set_RAND(e, &padlock_rand))) {
crypto/openssl/include/openssl/engine.h
496
OSSL_DEPRECATEDIN_3_0 int ENGINE_set_name(ENGINE *e, const char *name);
crypto/openssl/test/enginetest.c
156
|| !TEST_true(ENGINE_set_name(block[loop], ename[loop])))
crypto/openssl/test/enginetest.c
282
|| !TEST_true(ENGINE_set_name(e, "Test redirect engine")))
crypto/openssl/test/enginetest.c
391
|| !TEST_true(ENGINE_set_name(e, "Test dummy engine")))
crypto/openssl/test/enginetest.c
66
|| !TEST_true(ENGINE_set_name(new_h1, "First test item"))
crypto/openssl/test/enginetest.c
69
|| !TEST_true(ENGINE_set_name(new_h2, "Second test item"))
crypto/openssl/test/enginetest.c
72
|| !TEST_true(ENGINE_set_name(new_h3, "Third test item"))
crypto/openssl/test/enginetest.c
75
|| !TEST_true(ENGINE_set_name(new_h4, "Fourth test item")))