Searched refs:providers (Results 1 - 9 of 9) sorted by relevance
/third_party/node/test/sequential/ |
H A D | test-async-wrap-getasyncid.js | 11 const providers = { ...internalBinding('async_wrap').Providers }; 22 delete providers[type]; 33 delete providers.NONE; // Should never be used. 37 delete providers.TTYWRAP; 40 delete providers.HTTP2SESSION; 41 delete providers.HTTP2STREAM; 42 delete providers.HTTP2PING; 43 delete providers.HTTP2SETTINGS; 45 delete providers.STREAMPIPE; 46 delete providers [all...] |
/third_party/node/test/pseudo-tty/ |
H A D | test-async-wrap-getasyncid-tty.js | 11 const providers = { TTYWRAP }; 19 delete providers[type]; 26 const objKeys = Object.keys(providers);
|
/third_party/node/test/addons/openssl-providers/ |
H A D | binding.cc | 31 std::vector<OSSL_PROVIDER*> providers; in GetProviders() local 32 OSSL_PROVIDER_do_all(nullptr, &collectProviders, &providers); in GetProviders() 33 for (auto provider : providers) { in GetProviders()
|
/third_party/openssl/test/ |
H A D | threadstest.c | 28 /* Limit the maximum number of providers loaded into a library context */ 242 static int thread_setup_libctx(int libctx, const char *providers[]) in thread_setup_libctx() argument 250 if (providers != NULL) in thread_setup_libctx() 251 for (n = 0; providers[n] != NULL; n++) in thread_setup_libctx() 254 providers[n]))) { in thread_setup_libctx() 287 int libctx, const char *providers[]) in thread_run_test() 292 if (!thread_setup_libctx(libctx, providers) in thread_run_test() 509 * If available we have both the default and fips providers for this in test_multi() 567 * This test attempts to load several providers at the same time, and if 285 thread_run_test(void (*main_func)(void), size_t num_threads, void (*thread_func)(void), int libctx, const char *providers[]) thread_run_test() argument
|
H A D | evp_test.c | 3676 * Return 1 if one of the providers named in the string is available. 3680 static int prov_available(char *providers) in prov_available() argument 3686 for (; isspace(*providers); providers++) in prov_available() 3688 if (*providers == '\0') in prov_available() 3690 for (p = providers; *p != '\0' && !isspace(*p); p++) in prov_available() 3696 if (OSSL_PROVIDER_available(libctx, providers)) in prov_available()
|
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | provider_core.c | 42 * provider_store_st: Holds information about the collection of providers that 44 * holds configuration information about providers that could be loaded at some 54 * As providers get activated or deactivated this needs to be mirrored in the 55 * associated child providers. 217 STACK_OF(OSSL_PROVIDER) *providers; 295 sk_OSSL_PROVIDER_pop_free(store->providers, provider_deactivate_free); in provider_store_free() 313 || (store->providers = sk_OSSL_PROVIDER_new(ossl_provider_cmp)) == NULL in provider_store_new() 422 * Make sure any providers are loaded from config before we try to find in ossl_provider_find() 438 if ((i = sk_OSSL_PROVIDER_find(store->providers, &tmpl)) != -1) in ossl_provider_find() 439 prov = sk_OSSL_PROVIDER_value(store->providers, in ossl_provider_find() [all...] |
/third_party/openssl/crypto/ |
H A D | provider_core.c | 42 * provider_store_st: Holds information about the collection of providers that 44 * holds configuration information about providers that could be loaded at some 54 * As providers get activated or deactivated this needs to be mirrored in the 55 * associated child providers. 217 STACK_OF(OSSL_PROVIDER) *providers; 295 sk_OSSL_PROVIDER_pop_free(store->providers, provider_deactivate_free); in provider_store_free() 313 || (store->providers = sk_OSSL_PROVIDER_new(ossl_provider_cmp)) == NULL in provider_store_new() 422 * Make sure any providers are loaded from config before we try to find in ossl_provider_find() 438 if ((i = sk_OSSL_PROVIDER_find(store->providers, &tmpl)) != -1) in ossl_provider_find() 439 prov = sk_OSSL_PROVIDER_value(store->providers, in ossl_provider_find() [all...] |
/third_party/node/deps/openssl/openssl/apps/ |
H A D | list.c | 1019 /* Look through providers' digests */ in is_md_available() 1036 /* Look through providers' ciphers */ in is_cipher_available() 1221 STACK_OF(OSSL_PROVIDER) *providers = sk_OSSL_PROVIDER_new(provider_cmp); in list_provider_info() 1227 if (providers == NULL) { in list_provider_info() 1232 if (OSSL_PROVIDER_do_all(NULL, &collect_providers, providers) != 1) { in list_provider_info() 1238 sk_OSSL_PROVIDER_sort(providers); in list_provider_info() 1239 for (i = 0; i < sk_OSSL_PROVIDER_num(providers); i++) { in list_provider_info() 1240 const OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(providers, i); in list_provider_info() 1275 sk_OSSL_PROVIDER_free(providers); in list_provider_info() 1505 {"providers", OPT_PROVIDER_INF [all...] |
/third_party/openssl/apps/ |
H A D | list.c | 1019 /* Look through providers' digests */ in is_md_available() 1036 /* Look through providers' ciphers */ in is_cipher_available() 1219 STACK_OF(OSSL_PROVIDER) *providers = sk_OSSL_PROVIDER_new(provider_cmp); in list_provider_info() 1225 if (providers == NULL) { in list_provider_info() 1230 OSSL_PROVIDER_do_all(NULL, &collect_providers, providers); in list_provider_info() 1231 sk_OSSL_PROVIDER_sort(providers); in list_provider_info() 1232 for (i = 0; i < sk_OSSL_PROVIDER_num(providers); i++) { in list_provider_info() 1233 const OSSL_PROVIDER *prov = sk_OSSL_PROVIDER_value(providers, i); in list_provider_info() 1265 sk_OSSL_PROVIDER_free(providers); in list_provider_info() 1495 {"providers", OPT_PROVIDER_INF [all...] |
Completed in 15 milliseconds