Lines Matching defs:bio
50 void *BIO_get_data(BIO *bio) { return bio->ptr; }
51 void BIO_set_data(BIO *bio, void *ptr) { bio->ptr = ptr; }
52 void BIO_set_init(BIO *bio, int init) { bio->init = init; }
159 auto bio = BIO_new(tlsconf.bio_method);
160 BIO_set_data(bio, this);
161 SSL_set_bio(tls.ssl, bio, bio);
297 auto meth = BIO_meth_new(BIO_TYPE_FD, "nghttpx-bio");
313 BIO_TYPE_FD, "nghttpx-bio", shrpx_bio_write,
962 // bio otherwise.