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

/freebsd-9.3-release/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.c1273 BIO *c_bio = NULL; local
1291 c_bio = BIO_new(BIO_f_ssl());
1293 if ((c_bio == NULL) || (s_bio == NULL)) {
1300 BIO_set_ssl(c_bio, c_ssl, BIO_NOCLOSE);
1321 i = (int)BIO_pending(c_bio);
1356 i = BIO_write(c_bio, cbuf, j);
1360 if (BIO_should_retry(c_bio)) {
1361 if (BIO_should_read(c_bio))
1363 if (BIO_should_write(c_bio))
1382 i = BIO_read(c_bio, cbu
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/threads/
H A Dmttest.c402 BIO *c_bio = NULL; local
432 c_bio = BIO_new(BIO_f_ssl());
434 if ((c_bio == NULL) || (s_bio == NULL))
439 BIO_set_ssl(c_bio, c_ssl, (ctx[2] == NULL) ? BIO_CLOSE : BIO_NOCLOSE);
462 i = (int)BIO_pending(c_bio);
492 i = BIO_write(c_bio, "hello from client\n", 18);
496 if (BIO_should_retry(c_bio)) {
497 if (BIO_should_read(c_bio))
499 if (BIO_should_write(c_bio))
514 i = BIO_read(c_bio, cbu
[all...]

Completed in 53 milliseconds