Searched refs:methods_ebcdic (Results 1 – 1 of 1) sorted by relevance
267 static BIO_METHOD *methods_ebcdic = NULL; variable277 if (methods_ebcdic == NULL) { in BIO_f_ebcdic_filter()278 methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER, in BIO_f_ebcdic_filter()280 if (methods_ebcdic == NULL in BIO_f_ebcdic_filter()281 || !BIO_meth_set_write(methods_ebcdic, ebcdic_write) in BIO_f_ebcdic_filter()282 || !BIO_meth_set_read(methods_ebcdic, ebcdic_read) in BIO_f_ebcdic_filter()283 || !BIO_meth_set_puts(methods_ebcdic, ebcdic_puts) in BIO_f_ebcdic_filter()284 || !BIO_meth_set_gets(methods_ebcdic, ebcdic_gets) in BIO_f_ebcdic_filter()285 || !BIO_meth_set_ctrl(methods_ebcdic, ebcdic_ctrl) in BIO_f_ebcdic_filter()286 || !BIO_meth_set_create(methods_ebcdic, ebcdic_new) in BIO_f_ebcdic_filter()[all …]