Lines Matching defs:bio_ext
255 BIO *bio_int, *bio_ext;
271 into the given buffer. The bio_int is used by OpenSSL and bio_ext
273 if (BIO_new_bio_pair(&bio_int, 0, &bio_ext, 0) != 1) {
285 ssl_io->bio_ext = bio_ext;
326 BIO_free(ssl_io->bio_ext);
371 while ((bytes = BIO_ctrl_pending(ssl_io->bio_ext)) > 0) {
389 ret = BIO_read(ssl_io->bio_ext, buffer, bytes);
443 while ((bytes = BIO_ctrl_get_write_guarantee(ssl_io->bio_ext)) > 0) {
444 /* bytes contains how many bytes we can write to bio_ext */
466 ret = BIO_write(ssl_io->bio_ext, data, size);