HomeSort by relevance Sort by last modified time
    Searched refs:wbio (Results 1 - 25 of 30) sorted by null

1 2

  /external/openssl/apps/
enc.c 127 BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; local
490 wbio=out;
499 wbio=BIO_push(bzl,wbio);
517 wbio=BIO_push(b64,wbio);
547 && (BIO_write(wbio,magic,
549 || BIO_write(wbio,
672 wbio=BIO_push(benc,wbio);
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
s23_pkt.c 77 i=BIO_write(s->wbio,&(buf[tot]),num);
d1_clnt.c 261 if (s->bbio != s->wbio)
262 s->wbio=BIO_push(s->bbio,s->wbio);
495 if (BIO_flush(s->wbio) <= 0)
498 if (!BIO_should_retry(s->wbio))
561 if ((ret=BIO_flush(s->wbio)) <= 0)
ssl_lib.c 639 if (s->bbio == s->wbio)
641 s->wbio=BIO_pop(s->wbio);
648 if ((s->wbio != NULL) && (s->wbio != s->rbio))
649 BIO_free_all(s->wbio);
706 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
712 if (s->wbio == s->bbio)
714 s->wbio=s->wbio->next_bio
    [all...]
d1_srvr.c 454 if (BIO_flush(s->wbio) <= 0)
457 if (!BIO_should_retry(s->wbio))
629 if ((ret=BIO_flush(s->wbio)) <= 0)
645 /* BIO_flush(s->wbio); */
s3_lib.c     [all...]
s3_pkt.c 863 if (s->wbio != NULL)
866 i=BIO_write(s->wbio,
    [all...]
s23_clnt.c 223 if (s->debug) { (void)BIO_flush(s->wbio); }
s3_clnt.c 270 if (s->bbio != s->wbio)
271 s->wbio=BIO_push(s->bbio,s->wbio);
525 if (BIO_flush(s->wbio) <= 0)
591 if ((ret=BIO_flush(s->wbio)) <= 0)
    [all...]
  /external/openssl/ssl/
s23_pkt.c 77 i=BIO_write(s->wbio,&(buf[tot]),num);
ssl_lib.c 552 if (s->bbio == s->wbio)
554 s->wbio=BIO_pop(s->wbio);
561 if ((s->wbio != NULL) && (s->wbio != s->rbio))
562 BIO_free_all(s->wbio);
636 void SSL_set_bio(SSL *s,BIO *rbio,BIO *wbio)
642 if (s->wbio == s->bbio)
644 s->wbio=s->wbio->next_bio
    [all...]
bio_ssl.c 393 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
402 ret=BIO_ctrl(ssl->wbio,cmd,num,ptr);
417 * rbio and wbio are the same when pushed.
419 if (ssl->rbio != ssl->wbio)
420 BIO_free_all(ssl->wbio);
423 ssl->wbio=NULL;
d1_clnt.c 318 if (s->bbio != s->wbio)
319 s->wbio=BIO_push(s->bbio,s->wbio);
683 if (BIO_flush(s->wbio) <= 0)
686 if (!BIO_should_retry(s->wbio))
749 if ((ret=BIO_flush(s->wbio)) <= 0)
    [all...]
s2_srvr.c 269 num1=BIO_ctrl(s->wbio,BIO_CTRL_INFO,0,NULL);
273 num1=BIO_flush(s->wbio);
279 s->wbio=BIO_pop(s->wbio);
s2_pkt.c 487 if (s->wbio != NULL)
490 i=BIO_write(s->wbio,
s3_pkt.c 925 if (s->wbio != NULL)
928 i=BIO_write(s->wbio,
    [all...]
d1_srvr.c 573 if (BIO_flush(s->wbio) <= 0)
576 if (!BIO_should_retry(s->wbio))
830 if ((ret=BIO_flush(s->wbio)) <= 0)
846 /* BIO_flush(s->wbio); */
    [all...]
s3_lib.c     [all...]
s23_clnt.c 240 if (s->debug) { (void)BIO_flush(s->wbio); }
s3_clnt.c 293 if (s->bbio != s->wbio)
294 s->wbio=BIO_push(s->bbio,s->wbio);
627 if (BIO_flush(s->wbio) <= 0)
699 if ((ret=BIO_flush(s->wbio)) <= 0)
    [all...]
ssl.h 1221 BIO *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
1226 char *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
    [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 1014 ScopedSslBio(SSL *ssl, BIO* rbio, BIO* wbio) : ssl_(ssl) {
1015 SSL_set_bio(ssl_, rbio, wbio);
1017 CRYPTO_add(&wbio->references,1,CRYPTO_LOCK_BIO);
8215 BIO* wbio = reinterpret_cast<BIO*>(wbioRef); local
8606 BIO* wbio = SSL_get_wbio(ssl); local
8731 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sinkBioRef)); local
8923 BIO* wbio = SSL_get_wbio(ssl); local
9060 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(sinkBioRef)); local
9331 BIO* wbio = reinterpret_cast<BIO*>(static_cast<uintptr_t>(wbioRef)); local
    [all...]
  /external/openssl/crypto/threads/
mttest.c 682 s_ssl->wbio=NULL;
687 c_ssl->wbio=NULL;
  /external/chromium_org/third_party/boringssl/src/include/openssl/
ssl.h 1235 BIO *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
1240 char *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
    [all...]
  /external/openssl/include/openssl/
ssl.h 1221 BIO *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
1226 char *wbio; \/* used by SSL_write *\/ member in struct:ssl_st
    [all...]

Completed in 1555 milliseconds

1 2