Home
last modified time | relevance | path

Searched refs:bio1 (Results 1 – 5 of 5) sorted by relevance

/freebsd/crypto/openssl/crypto/bio/
H A Dbss_bio.c35 static int bio_make_pair(BIO *bio1, BIO *bio2);
606 static int bio_make_pair(BIO *bio1, BIO *bio2) in bio_make_pair() argument
610 assert(bio1 != NULL); in bio_make_pair()
613 b1 = bio1->ptr; in bio_make_pair()
644 b2->peer = bio1; in bio_make_pair()
648 bio1->init = 1; in bio_make_pair()
686 BIO *bio1 = NULL, *bio2 = NULL; in BIO_new_bio_pair() local
690 bio1 = BIO_new(BIO_s_bio()); in BIO_new_bio_pair()
691 if (bio1 == NULL) in BIO_new_bio_pair()
698 r = BIO_set_write_buf_size(bio1, writebuf1); in BIO_new_bio_pair()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DBIO_s_bio.pod23 int BIO_new_bio_pair(BIO **bio1, size_t writebuf1, BIO **bio2, size_t writebuf2);
74 BIO_set_write_buf_size() to create a connected pair of BIOs B<bio1>, B<bio2>
77 B<bio1> or B<bio2> do point to some other BIO, the values are overwritten,
131 B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the
132 locations for B<bio1> and B<bio2>. Check the error stack for more information.
/freebsd/crypto/openssl/include/openssl/
H A Dbio.h.in783 int BIO_new_bio_pair(BIO **bio1, size_t writebuf1,
786 * If successful, returns 1 and in *bio1, *bio2 two BIO pair endpoints.
787 * Otherwise returns 0 and sets *bio1 and *bio2 to NULL. Size 0 uses default
H A Dbio.h806 int BIO_new_bio_pair(BIO **bio1, size_t writebuf1,
/freebsd/crypto/openssl/test/
H A Dsslapitest.c2876 static void setupbio(BIO **res, BIO *bio1, BIO *bio2, int type) in setupbio() argument
2883 *res = bio1; in setupbio()
2906 BIO *bio1 = NULL; in test_ssl_set_bio() local
2956 if (!TEST_ptr(bio1 = BIO_new(BIO_s_mem()))) in test_ssl_set_bio()
2969 setupbio(&irbio, bio1, bio2, initrbio); in test_ssl_set_bio()
2970 setupbio(&iwbio, bio1, bio2, initwbio); in test_ssl_set_bio()
2990 setupbio(&nrbio, bio1, bio2, newrbio); in test_ssl_set_bio()
2991 setupbio(&nwbio, bio1, bio2, newwbio); in test_ssl_set_bio()
3012 BIO_free(bio1); in test_ssl_set_bio()