Lines Matching refs:methods_ebcdic
301 static BIO_METHOD *methods_ebcdic = NULL; variable
311 if (methods_ebcdic == NULL) { in BIO_f_ebcdic_filter()
312 methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER, in BIO_f_ebcdic_filter()
314 if (methods_ebcdic == NULL in BIO_f_ebcdic_filter()
315 || !BIO_meth_set_write(methods_ebcdic, ebcdic_write) in BIO_f_ebcdic_filter()
316 || !BIO_meth_set_read(methods_ebcdic, ebcdic_read) in BIO_f_ebcdic_filter()
317 || !BIO_meth_set_puts(methods_ebcdic, ebcdic_puts) in BIO_f_ebcdic_filter()
318 || !BIO_meth_set_gets(methods_ebcdic, ebcdic_gets) in BIO_f_ebcdic_filter()
319 || !BIO_meth_set_ctrl(methods_ebcdic, ebcdic_ctrl) in BIO_f_ebcdic_filter()
320 || !BIO_meth_set_create(methods_ebcdic, ebcdic_new) in BIO_f_ebcdic_filter()
321 || !BIO_meth_set_destroy(methods_ebcdic, ebcdic_free)) in BIO_f_ebcdic_filter()
324 return methods_ebcdic; in BIO_f_ebcdic_filter()
2198 BIO_meth_free(methods_ebcdic); in s_server_main()