Searched refs:rbio (Results 1 - 10 of 10) sorted by relevance

/external/openssl/ssl/
H A Dbio_ssl.c321 else if (ssl->rbio != NULL)
322 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
390 ret=BIO_pending(ssl->rbio);
398 if ((b->next_bio != NULL) && (b->next_bio != ssl->rbio))
409 * rbio and wbio are the same when pushed.
411 if (ssl->rbio != ssl->wbio)
416 ssl->rbio=NULL;
460 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
481 ret=BIO_ctrl(ssl->rbio,cmd,num,ptr);
505 ret=BIO_callback_ctrl(ssl->rbio,cm
[all...]
H A Ds23_pkt.c105 j=BIO_read(s->rbio,(char *)&(p[s->packet_length]),
H A Dssl_lib.c541 if (s->rbio != NULL)
542 BIO_free_all(s->rbio);
543 if ((s->wbio != NULL) && (s->wbio != s->rbio))
607 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio) argument
619 if ((s->rbio != NULL) && (s->rbio != rbio))
620 BIO_free_all(s->rbio);
621 if ((s->wbio != NULL) && (s->wbio != wbio) && (s->rbio != s->wbio))
623 s->rbio
[all...]
H A Ds2_pkt.c377 if (s->rbio != NULL)
380 i=BIO_read(s->rbio,(char *)&(s->s2->rbuf[off+newb]),
H A Ds3_pkt.c236 if (s->rbio != NULL)
239 i=BIO_read(s->rbio,pkt+len+left, max-left);
H A Dssl.h1122 BIO *rbio; /* used by SSL_read */ member in struct:ssl_st
1127 char *rbio; /* used by SSL_read */ member in struct:ssl_st
1702 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);
H A Dssltest.c1864 s_ssl->rbio=NULL;
1869 c_ssl->rbio=NULL;
/external/openssl/apps/
H A Denc.c125 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
475 rbio=in;
487 rbio=BIO_push(bzl,rbio);
505 rbio=BIO_push(b64,rbio);
541 } else if(BIO_read(rbio,mbuf,sizeof mbuf) != sizeof mbuf
542 || BIO_read(rbio,
662 inl=BIO_read(rbio,(char *)buff,bsize);
/external/openssl/crypto/threads/
H A Dmttest.c681 s_ssl->rbio=NULL;
686 c_ssl->rbio=NULL;
/external/openssl/include/openssl/
H A Dssl.h1122 BIO *rbio; /* used by SSL_read */ member in struct:ssl_st
1127 char *rbio; /* used by SSL_read */ member in struct:ssl_st
1702 void SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio);

Completed in 551 milliseconds