Lines Matching refs:bio
34 BIO *bio = ossl_quic_tserver_get0_rbio(qtserv); in wait_for_activity() local
37 BIO_get_fd(bio, &sock); in wait_for_activity()
73 BIO *bio; in create_dgram_bio() local
118 bio = BIO_new(BIO_s_datagram()); in create_dgram_bio()
119 if (bio == NULL) { in create_dgram_bio()
131 BIO_set_fd(bio, sock, BIO_CLOSE); in create_dgram_bio()
133 return bio; in create_dgram_bio()
147 BIO *bio = NULL; in main() local
194 bio = create_dgram_bio(ipv6 ? AF_INET6 : AF_INET, hostname, port); in main()
195 if (bio == NULL || !BIO_up_ref(bio)) { in main()
201 tserver_args.net_rbio = bio; in main()
202 tserver_args.net_wbio = bio; in main()
220 bio = NULL; in main()
308 BIO_free(bio); in main()
310 BIO_free(bio); in main()