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

  /src/crypto/external/bsd/openssl.old/dist/test/testutil/
basic_output.c 18 BIO *bio_err = NULL; variable
23 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
26 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err);
28 bio_err = BIO_push(BIO_new(BIO_f_tap()), bio_err);
31 OPENSSL_assert(bio_err != NULL);
37 BIO_free_all(bio_err);
47 return BIO_vprintf(bio_err, fmt, ap);
57 return BIO_flush(bio_err);
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/testutil/
basic_output.c 19 BIO *bio_err = NULL; variable
38 bio_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err);
40 BIO_set_prefix(bio_err, prefix);
43 OPENSSL_assert(bio_err != NULL);
56 * we only need to free the last one in the bio_out and bio_err chains.
59 BIO_free(bio_err);
72 return BIO_vprintf(bio_err, fmt, ap);
82 return BIO_flush(bio_err);
  /src/crypto/external/apache2/openssl/dist/test/
bio_prefix_text.c 18 static BIO *bio_err = NULL; variable
67 ret = BIO_vprintf(bio_err, fmt, ap);
137 BIO_free_all(bio_err);
151 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
154 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err);
159 OPENSSL_assert(bio_err != NULL);
167 BIO_printf(bio_err,
173 BIO_printf(bio_err, "%s: must set up at least one filter",
178 BIO_printf(bio_err, "%s: failed setting up filter chain"
    [all...]
bioprinttest.c 306 BIO *bio_err = NULL; variable
  /src/crypto/external/apache2/openssl/dist/test/testutil/
basic_output.c 19 BIO *bio_err = NULL; variable
128 return bio_err;
147 bio_err = BIO_push(BIO_new(BIO_f_prefix()), tap_err);
149 BIO_set_prefix(bio_err, "# ");
157 OPENSSL_assert(bio_err != NULL);
173 * we only need to free the last one in the bio_out and bio_err chains.
176 BIO_free(bio_err);
  /src/crypto/external/bsd/openssl/dist/test/
bio_prefix_text.c 18 static BIO *bio_err = NULL; variable
67 ret = BIO_vprintf(bio_err, fmt, ap);
135 BIO_free_all(bio_err);
149 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
152 bio_err = BIO_push(BIO_new(BIO_f_linebuffer()), bio_err);
157 OPENSSL_assert(bio_err != NULL);
166 BIO_printf(bio_err,
172 BIO_printf(bio_err, "%s: must set up at least one filter",
177 BIO_printf(bio_err, "%s: failed setting up filter chain"
    [all...]
bioprinttest.c 301 BIO *bio_err = NULL; variable
  /src/crypto/external/apache2/openssl/dist/apps/
openssl.c 46 BIO *bio_err = NULL; variable
51 BIO_printf(bio_err, "The command %s was deprecated in version %s.",
54 BIO_printf(bio_err, "The command %s is deprecated.", fp->name);
56 BIO_printf(bio_err, " Use '%s' instead.", fp->deprecated_alternative);
57 BIO_printf(bio_err, "\n");
117 BIO_printf(bio_err, "ERROR: tracing already started\n");
132 BIO_printf(bio_err, "ERROR: writing when tracing not started\n");
140 BIO_printf(bio_err, "ERROR: finishing when tracing not started\n");
255 bio_err = dup_bio_err(FORMAT_TEXT);
270 BIO_printf(bio_err,
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
openssl.c 44 BIO *bio_err = NULL; variable
49 BIO_printf(bio_err, "The command %s was deprecated in version %s.",
52 BIO_printf(bio_err, "The command %s is deprecated.", fp->name);
54 BIO_printf(bio_err, " Use '%s' instead.", fp->deprecated_alternative);
55 BIO_printf(bio_err, "\n");
115 BIO_printf(bio_err, "ERROR: tracing already started\n");
130 BIO_printf(bio_err, "ERROR: writing when tracing not started\n");
138 BIO_printf(bio_err, "ERROR: finishing when tracing not started\n");
252 bio_err = dup_bio_err(FORMAT_TEXT);
267 BIO_printf(bio_err,
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/apps/
openssl.c 60 BIO *bio_err = NULL; variable
136 bio_err = dup_bio_err(FORMAT_TEXT);
153 BIO_printf(bio_err, "FIPS mode not supported.\n");
158 BIO_printf(bio_err,
160 ERR_print_errors(bio_err);
167 BIO_printf(bio_err,
169 ERR_print_errors(bio_err);
244 BIO_printf(bio_err, "Can't parse (no memory?)\n");
254 BIO_printf(bio_err, "error in %s\n", arg.argv[0]);
256 (void)BIO_flush(bio_err);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssltest_old.c 114 static BIO *bio_err = NULL; variable
838 BIO_printf(bio_err, "Can't open session file %s\n", filename);
839 ERR_print_errors(bio_err);
844 BIO_printf(bio_err, "Can't parse session file %s\n", filename);
845 ERR_print_errors(bio_err);
856 BIO_printf(bio_err, "No session information\n");
862 BIO_printf(bio_err, "Can't open session file %s\n", filename);
863 ERR_print_errors(bio_err);
881 BIO_printf(bio_err, "Error parsing: %s\n", version);
939 bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT)
    [all...]

Completed in 35 milliseconds