HomeSort by: relevance | last modified time | path
    Searched defs:bio_out (Results 1 - 14 of 14) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */
27 if (bio_out == NULL)
37 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
44 BIO_free(bio_out);
  /src/crypto/external/bsd/openssl/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new(BIO_s_null()); /* output will be ignored */
27 if (bio_out == NULL)
37 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
44 BIO_free(bio_out);
  /src/crypto/external/bsd/openssl.old/dist/fuzz/
asn1parse.c 22 static BIO *bio_out; variable
26 bio_out = BIO_new_file("/dev/null", "w");
35 (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
42 BIO_free(bio_out);
  /src/crypto/external/bsd/openssl.old/dist/test/testutil/
basic_output.c 17 BIO *bio_out = NULL; variable
22 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
25 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
30 OPENSSL_assert(bio_out != NULL);
36 BIO_free_all(bio_out);
42 return BIO_vprintf(bio_out, fmt, ap);
52 return BIO_flush(bio_out);
  /src/crypto/external/bsd/openssl/dist/test/testutil/
basic_output.c 18 BIO *bio_out = NULL; variable
37 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
39 BIO_set_prefix(bio_out, prefix);
42 OPENSSL_assert(bio_out != NULL);
56 * we only need to free the last one in the bio_out and bio_err chains.
58 BIO_free(bio_out);
67 return BIO_vprintf(bio_out, fmt, ap);
77 return BIO_flush(bio_out);
  /src/crypto/external/apache2/openssl/dist/test/
bio_prefix_text.c 17 static BIO *bio_out = NULL; variable
21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how
104 if (!BIO_up_ref(bio_out)) /* Protection against freeing */
107 next = bio_out;
136 BIO_free_all(bio_out);
150 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
153 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
158 OPENSSL_assert(bio_out != NULL);
bioprinttest.c 305 BIO *bio_out = NULL; variable
  /src/crypto/external/apache2/openssl/dist/test/testutil/
basic_output.c 18 BIO *bio_out = NULL; variable
118 return bio_out;
146 bio_out = BIO_push(BIO_new(BIO_f_prefix()), tap_out);
148 BIO_set_prefix(bio_out, "# ");
156 OPENSSL_assert(bio_out != NULL);
173 * we only need to free the last one in the bio_out and bio_err chains.
175 BIO_free(bio_out);
  /src/crypto/external/bsd/openssl/dist/test/
bio_prefix_text.c 17 static BIO *bio_out = NULL; variable
21 * This program sets up a chain of BIO_f_filter() on top of bio_out, how
104 next = bio_out;
134 BIO_free_all(bio_out);
148 bio_out = BIO_new_fp(stdout, BIO_NOCLOSE | BIO_FP_TEXT);
151 bio_out = BIO_push(BIO_new(BIO_f_linebuffer()), bio_out);
156 OPENSSL_assert(bio_out != NULL);
bioprinttest.c 300 BIO *bio_out = NULL; variable
  /src/crypto/external/apache2/openssl/dist/apps/
openssl.c 45 BIO *bio_out = NULL; variable
254 bio_out = dup_bio_out(FORMAT_TEXT);
321 BIO_free_all(bio_out);
441 BIO_printf(bio_out, "%s\n", argv[0]);
444 BIO_printf(bio_out, "%s\n", argv[0] + 3);
  /src/crypto/external/bsd/openssl/dist/apps/
openssl.c 43 BIO *bio_out = NULL; variable
251 bio_out = dup_bio_out(FORMAT_TEXT);
308 BIO_free_all(bio_out);
427 BIO_printf(bio_out, "%s\n", argv[0]);
430 BIO_printf(bio_out, "%s\n", argv[0] + 3);
  /src/crypto/external/bsd/openssl.old/dist/apps/
openssl.c 59 BIO *bio_out = NULL; variable
135 bio_out = dup_bio_out(FORMAT_TEXT);
255 (void)BIO_flush(bio_out);
266 BIO_free_all(bio_out);
314 BIO_printf(bio_out, "%s %s\n", fp->name, o->name);
318 BIO_printf(bio_out, "%s *\n", fp->name);
345 BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
409 EVP_MD_do_all_sorted(list_md_fn, bio_out);
415 EVP_CIPHER_do_all_sorted(list_cipher_fn, bio_out);
536 BIO_printf(bio_out, "%s\n", fp->name)
    [all...]
  /src/external/mpl/bind/dist/lib/isc/netmgr/
netmgr-int.h 516 BIO *bio_out; member in struct:isc_nmsocket::tlsstream

Completed in 34 milliseconds