HomeSort by: relevance | last modified time | path
    Searched refs:mem_bio (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/apps/
fipsinstall.c 188 BIO *mem_bio = NULL; local
191 mem_bio = BIO_new(BIO_s_mem());
192 if (mem_bio == NULL)
194 if (!write_config_header(mem_bio, prov_name, section)
195 || !write_config_fips_section(mem_bio, section,
202 conf = app_load_config_bio(mem_bio, NULL);
208 BIO_free(mem_bio);
212 BIO_free(mem_bio);
299 BIO *module_bio = NULL, *mem_bio = NULL, *fout = NULL; local
474 mem_bio = BIO_new_mem_buf((const void *)INSTALL_STATUS_VAL
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
fipsinstall.c 515 BIO *mem_bio = NULL; local
518 mem_bio = BIO_new(BIO_s_mem());
519 if (mem_bio == NULL)
521 if (!write_config_header(mem_bio, prov_name, section)
522 || !write_config_fips_section(mem_bio, section,
527 conf = app_load_config_bio(mem_bio, NULL);
533 BIO_free(mem_bio);
537 BIO_free(mem_bio);
624 BIO *module_bio = NULL, *mem_bio = NULL, *fout = NULL; local
900 mem_bio = BIO_new_mem_buf((const void *)INSTALL_STATUS_VAL
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
json_test.c 20 BIO *mem_bio; member in struct:helper
28 if (!TEST_ptr(h->mem_bio = BIO_new(BIO_s_mem())))
31 if (!ossl_json_init(&h->j, h->mem_bio, h->flags)) {
32 BIO_free_all(h->mem_bio);
33 h->mem_bio = NULL;
43 BIO_free_all(h->mem_bio);
44 h->mem_bio = NULL;
657 if (!TEST_true(BIO_get_mem_ptr(h.mem_bio, &bufp)))

Completed in 36 milliseconds