Searched refs:c_bio (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/crypto/openssl/ssl/
H A Dssl_task.c281 BIO *c_bio = NULL; local
301 c_bio = BIO_new(BIO_f_ssl());
303 if ((c_bio == NULL) || (s_bio == NULL))
392 if (c_bio != NULL)
393 BIO_free(c_bio);
H A Dssltest.c2339 BIO *c_bio = NULL; local
2365 c_bio = BIO_new(BIO_f_ssl());
2367 if ((c_bio == NULL) || (s_bio == NULL)) {
2375 BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE);
2397 i = (int)BIO_pending(c_bio);
2431 i = BIO_write(c_bio, cbuf, j);
2435 if (BIO_should_retry(c_bio)) {
2436 if (BIO_should_read(c_bio))
2438 if (BIO_should_write(c_bio))
2459 i = BIO_read(c_bio, cbu
[all...]
/freebsd-11-stable/crypto/openssl/crypto/threads/
H A Dmttest.c403 BIO *c_bio = NULL; local
433 c_bio = BIO_new(BIO_f_ssl());
435 if ((c_bio == NULL) || (s_bio == NULL))
440 BIO_set_ssl(c_bio, c_ssl, (ctx[2] == NULL) ? BIO_CLOSE : BIO_NOCLOSE);
463 i = (int)BIO_pending(c_bio);
493 i = BIO_write(c_bio, "hello from client\n", 18);
497 if (BIO_should_retry(c_bio)) {
498 if (BIO_should_read(c_bio))
500 if (BIO_should_write(c_bio))
515 i = BIO_read(c_bio, cbu
[all...]

Completed in 71 milliseconds