Lines Matching refs:method_watchccs
38 static BIO_METHOD *method_watchccs = NULL; variable
42 if (method_watchccs == NULL) { in bio_f_watchccs_filter()
43 method_watchccs = BIO_meth_new(BIO_TYPE_WATCHCCS_FILTER, in bio_f_watchccs_filter()
45 if ( method_watchccs == NULL in bio_f_watchccs_filter()
46 || !BIO_meth_set_write(method_watchccs, watchccs_write) in bio_f_watchccs_filter()
47 || !BIO_meth_set_read(method_watchccs, watchccs_read) in bio_f_watchccs_filter()
48 || !BIO_meth_set_puts(method_watchccs, watchccs_puts) in bio_f_watchccs_filter()
49 || !BIO_meth_set_gets(method_watchccs, watchccs_gets) in bio_f_watchccs_filter()
50 || !BIO_meth_set_ctrl(method_watchccs, watchccs_ctrl) in bio_f_watchccs_filter()
51 || !BIO_meth_set_create(method_watchccs, watchccs_new) in bio_f_watchccs_filter()
52 || !BIO_meth_set_destroy(method_watchccs, watchccs_free)) in bio_f_watchccs_filter()
55 return method_watchccs; in bio_f_watchccs_filter()
511 BIO_meth_free(method_watchccs); in cleanup_tests()