/external/openssl/apps/ |
openssl.c | 495 BIO *bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE); local 499 bio_stdout = BIO_push(tmpbio, bio_stdout); 505 BIO_printf(bio_stdout, "%s\n", argv[0]); 507 BIO_printf(bio_stdout, "%s\n", argv[0]+3); 508 BIO_free_all(bio_stdout); 527 BIO *bio_stdout; local 541 bio_stdout = BIO_new_fp(stdout,BIO_NOCLOSE); 545 bio_stdout = BIO_push(tmpbio, bio_stdout); [all...] |
/external/openssl/ssl/ |
ssltest.c | 296 static BIO *bio_stdout=NULL; variable 383 BIO_printf(bio_stdout,"%s%s, cipher %s %s", 400 BIO_printf(bio_stdout, ", %d bit RSA", 408 BIO_printf(bio_stdout, ", %d bit DSA", 418 BIO_printf(bio_stdout,"\n"); 583 bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE|BIO_FP_TEXT); 1144 BIO_printf(bio_stdout, "%d handshakes of %ld bytes done\n",number,bytes); 1152 BIO_printf(bio_stdout, "Approximate total server time: %6.2f s\n" [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);
|