Searched refs:methods_ebcdic (Results 1 – 1 of 1) sorted by relevance
301 static BIO_METHOD *methods_ebcdic = NULL; variable311 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()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()324 return methods_ebcdic; in BIO_f_ebcdic_filter()[all …]