Lines Matching refs:methods_ebcdic
258 static BIO_METHOD *methods_ebcdic = NULL; variable
268 if (methods_ebcdic == NULL) { in BIO_f_ebcdic_filter()
269 methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER, in BIO_f_ebcdic_filter()
271 if (methods_ebcdic == NULL in BIO_f_ebcdic_filter()
272 || !BIO_meth_set_write(methods_ebcdic, ebcdic_write) in BIO_f_ebcdic_filter()
273 || !BIO_meth_set_read(methods_ebcdic, ebcdic_read) in BIO_f_ebcdic_filter()
274 || !BIO_meth_set_puts(methods_ebcdic, ebcdic_puts) in BIO_f_ebcdic_filter()
275 || !BIO_meth_set_gets(methods_ebcdic, ebcdic_gets) in BIO_f_ebcdic_filter()
276 || !BIO_meth_set_ctrl(methods_ebcdic, ebcdic_ctrl) in BIO_f_ebcdic_filter()
277 || !BIO_meth_set_create(methods_ebcdic, ebcdic_new) in BIO_f_ebcdic_filter()
278 || !BIO_meth_set_destroy(methods_ebcdic, ebcdic_free)) in BIO_f_ebcdic_filter()
281 return methods_ebcdic; in BIO_f_ebcdic_filter()
2274 BIO_meth_free(methods_ebcdic); in s_server_main()