Searched refs:bio2 (Results 1 – 3 of 3) sorted by relevance
| /freebsd-9-stable/crypto/openssl/crypto/bio/ |
| D | bss_bio.c | 104 static int bio_make_pair(BIO *bio1, BIO *bio2); 682 static int bio_make_pair(BIO *bio1, BIO *bio2) in bio_make_pair() argument 687 assert(bio2 != NULL); in bio_make_pair() 690 b2 = bio2->ptr; in bio_make_pair() 717 b1->peer = bio2; in bio_make_pair() 725 bio2->init = 1; in bio_make_pair() 762 BIO *bio1 = NULL, *bio2 = NULL; in BIO_new_bio_pair() local 769 bio2 = BIO_new(BIO_s_bio()); in BIO_new_bio_pair() 770 if (bio2 == NULL) in BIO_new_bio_pair() 779 r = BIO_set_write_buf_size(bio2, writebuf2); in BIO_new_bio_pair() [all …]
|
| D | bio.h | 706 BIO **bio2, size_t writebuf2);
|
| /freebsd-9-stable/crypto/openssl/doc/crypto/ |
| D | BIO_s_bio.pod | 24 int BIO_new_bio_pair(BIO **bio1, size_t writebuf1, BIO **bio2, size_t writebuf2); 77 BIO_set_write_buf_size() to create a connected pair of BIOs B<bio1>, B<bio2> 80 B<bio1> or B<bio2> do point to some other BIO, the values are overwritten, 126 B<bio1> and B<bio2>, or 0 on failure, with NULL pointers stored into the 127 locations for B<bio1> and B<bio2>. Check the error stack for more information.
|