Lines Matching refs:meth_always_retry
44 static BIO_METHOD *meth_always_retry = NULL;
723 if (meth_always_retry == NULL) {
724 if (!TEST_ptr(meth_always_retry = BIO_meth_new(BIO_TYPE_ALWAYS_RETRY,
726 || !TEST_true(BIO_meth_set_write(meth_always_retry,
728 || !TEST_true(BIO_meth_set_read(meth_always_retry,
730 || !TEST_true(BIO_meth_set_puts(meth_always_retry,
732 || !TEST_true(BIO_meth_set_gets(meth_always_retry,
734 || !TEST_true(BIO_meth_set_ctrl(meth_always_retry,
736 || !TEST_true(BIO_meth_set_create(meth_always_retry,
738 || !TEST_true(BIO_meth_set_destroy(meth_always_retry,
742 return meth_always_retry;
747 BIO_meth_free(meth_always_retry);