/external/openssl/apps/ |
openssl.c | 479 BIO *bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE); local 483 bio_stdout = BIO_push(tmpbio, bio_stdout); 489 BIO_printf(bio_stdout, "%s\n", argv[0]); 491 BIO_printf(bio_stdout, "%s\n", argv[0]+3); 492 BIO_free_all(bio_stdout); 511 BIO *bio_stdout; local 525 bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE); 529 bio_stdout = BIO_push(tmpbio, bio_stdout); [all...] |
/external/openssl/ssl/ |
ssltest.c | 250 static BIO *bio_stdout=NULL; variable 330 BIO_printf(bio_stdout,"%s%s, cipher %s %s", 347 BIO_printf(bio_stdout, ", %d bit RSA", 355 BIO_printf(bio_stdout, ", %d bit DSA", 365 BIO_printf(bio_stdout,"\n"); 521 bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE|BIO_FP_TEXT); 1021 BIO_printf(bio_stdout, "%d handshakes of %ld bytes done\n",number,bytes); 1029 BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n" 1036 BIO_printf(bio_stdout, 1051 if (bio_stdout != NULL) BIO_free(bio_stdout) [all...] |
/external/openssl/crypto/threads/ |
mttest.c | 135 BIO *bio_stdout=NULL; variable 203 if (bio_stdout == NULL) 204 bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
|