Lines Matching refs:acpt
1938 BIO *acpt = NULL, *server = NULL, *client = NULL; in doit_localhost() local
1944 acpt = BIO_new_accept(family == BIO_FAMILY_IPV4 ? "127.0.0.1:0" in doit_localhost()
1946 if (acpt == NULL) in doit_localhost()
1948 BIO_set_accept_ip_family(acpt, family); in doit_localhost()
1949 BIO_set_bind_mode(acpt, BIO_SOCK_NONBLOCK | BIO_SOCK_REUSEADDR); in doit_localhost()
1950 if (BIO_do_accept(acpt) <= 0) in doit_localhost()
1953 BIO_snprintf(addr_str, sizeof(addr_str), ":%s", BIO_get_accept_port(acpt)); in doit_localhost()
1962 if (BIO_set_nbio(acpt, 1) <= 0) in doit_localhost()
1978 if (BIO_do_accept(acpt) <= 0) { in doit_localhost()
1979 if (!BIO_should_retry(acpt)) in doit_localhost()
1988 server = BIO_pop(acpt); in doit_localhost()
1989 BIO_free_all(acpt); in doit_localhost()
1990 acpt = NULL; in doit_localhost()
2215 BIO_free_all(acpt); in doit_localhost()