/external/openssl/apps/ |
D | enc.c | 125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; in MAIN() local 473 wbio=out; in MAIN() 482 wbio=BIO_push(bzl,wbio); in MAIN() 500 wbio=BIO_push(b64,wbio); in MAIN() 530 && (BIO_write(wbio,magic, in MAIN() 532 || BIO_write(wbio, in MAIN() 650 wbio=BIO_push(benc,wbio); in MAIN() 656 if (BIO_write(wbio,(char *)buff,inl) != inl) in MAIN() 662 if (!BIO_flush(wbio)) in MAIN()
|
/external/openssl/ssl/ |
D | ssl_lib.c | 531 if (s->bbio == s->wbio) in SSL_free() 533 s->wbio=BIO_pop(s->wbio); in SSL_free() 540 if ((s->wbio != NULL) && (s->wbio != s->rbio)) in SSL_free() 541 BIO_free_all(s->wbio); in SSL_free() 601 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio) in SSL_set_bio() argument 607 if (s->wbio == s->bbio) in SSL_set_bio() 609 s->wbio=s->wbio->next_bio; in SSL_set_bio() 615 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio)) in SSL_set_bio() 616 BIO_free_all(s->wbio); in SSL_set_bio() 618 s->wbio=wbio; in SSL_set_bio() [all …]
|
D | bio_ssl.c | 385 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr); in ssl_ctrl() 394 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr); in ssl_ctrl() 411 if (ssl->rbio != ssl->wbio) in ssl_ctrl() 412 BIO_free_all(ssl->wbio); in ssl_ctrl() 415 ssl->wbio=NULL; in ssl_ctrl()
|
D | s23_pkt.c | 77 i=BIO_write(s->wbio,&(buf[tot]),num); in ssl23_write_bytes()
|
D | d1_clnt.c | 252 if (s->bbio != s->wbio) in IMPLEMENT_dtls1_meth_func() 253 s->wbio=BIO_push(s->bbio,s->wbio); in IMPLEMENT_dtls1_meth_func() 516 if (BIO_flush(s->wbio) <= 0) in IMPLEMENT_dtls1_meth_func() 574 if ((ret=BIO_flush(s->wbio)) <= 0) in IMPLEMENT_dtls1_meth_func()
|
D | s2_srvr.c | 269 num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL); in IMPLEMENT_ssl2_meth_func() 273 num1=BIO_flush(s->wbio); in IMPLEMENT_ssl2_meth_func() 279 s->wbio=BIO_pop(s->wbio); in IMPLEMENT_ssl2_meth_func()
|
D | s2_pkt.c | 488 if (s->wbio != NULL) in write_pending() 491 i=BIO_write(s->wbio, in write_pending()
|
D | s3_lib.c | 3239 if ((s->s3->flags & SSL3_FLAGS_POP_BUFFER) && (s->wbio == s->bbio)) in ssl3_write() 3252 n=BIO_flush(s->wbio); in ssl3_write() 3278 if ((s->s3->flags & SSL3_FLAGS_POP_BUFFER) && (s->wbio == s->bbio)) in ssl3_read_internal() 3283 if (BIO_wpending(s->wbio) > 0) in ssl3_read_internal() 3286 n=BIO_flush(s->wbio); in ssl3_read_internal()
|
D | s3_pkt.c | 873 if (s->wbio != NULL) in ssl3_write_pending() 876 i=BIO_write(s->wbio, in ssl3_write_pending() 1485 (void)BIO_flush(s->wbio); in ssl3_dispatch_alert()
|
D | s3_clnt.c | 284 if (s->bbio != s->wbio) in IMPLEMENT_ssl3_meth_func() 285 s->wbio=BIO_push(s->bbio,s->wbio); in IMPLEMENT_ssl3_meth_func() 570 if (BIO_flush(s->wbio) <= 0) in IMPLEMENT_ssl3_meth_func() 641 if ((ret=BIO_flush(s->wbio)) <= 0) in IMPLEMENT_ssl3_meth_func()
|
D | s23_clnt.c | 234 if (s->debug) { (void)BIO_flush(s->wbio); } in IMPLEMENT_ssl23_meth_func()
|
D | ssl.h | 1030 BIO *wbio; /* used by SSL_write */ member 1035 char *wbio; /* used by SSL_write */ member 1568 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
|
D | d1_srvr.c | 473 if (BIO_flush(s->wbio) <= 0) in IMPLEMENT_dtls1_meth_func() 676 if ((ret=BIO_flush(s->wbio)) <= 0) in IMPLEMENT_dtls1_meth_func()
|
D | ssltest.c | 1742 s_ssl->wbio=NULL; in doit() 1747 c_ssl->wbio=NULL; in doit()
|
D | s3_srvr.c | 497 if (BIO_flush(s->wbio) <= 0) in IMPLEMENT_ssl3_meth_func() 740 if ((ret=BIO_flush(s->wbio)) <= 0) in IMPLEMENT_ssl3_meth_func()
|
D | d1_pkt.c | 1664 (void)BIO_flush(s->wbio); in dtls1_dispatch_alert()
|
/external/openssl/patches/ |
D | handshake_cutthrough.patch | 141 + if ((s->s3->flags & SSL3_FLAGS_POP_BUFFER) && (s->wbio == s->bbio)) 146 + if (BIO_wpending(s->wbio) > 0) 149 + n=BIO_flush(s->wbio);
|
/external/openssl/crypto/threads/ |
D | mttest.c | 682 s_ssl->wbio=NULL; in doit() 687 c_ssl->wbio=NULL; in doit()
|
/external/openssl/include/openssl/ |
D | ssl.h | 1030 BIO *wbio; /* used by SSL_write */ member 1035 char *wbio; /* used by SSL_write */ member 1568 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
|