Lines Matching refs:methods_ebcdic
267 static BIO_METHOD *methods_ebcdic = NULL;
277 if (methods_ebcdic == NULL) {
278 methods_ebcdic = BIO_meth_new(BIO_TYPE_EBCDIC_FILTER,
280 if (methods_ebcdic == NULL
281 || !BIO_meth_set_write(methods_ebcdic, ebcdic_write)
282 || !BIO_meth_set_read(methods_ebcdic, ebcdic_read)
283 || !BIO_meth_set_puts(methods_ebcdic, ebcdic_puts)
284 || !BIO_meth_set_gets(methods_ebcdic, ebcdic_gets)
285 || !BIO_meth_set_ctrl(methods_ebcdic, ebcdic_ctrl)
286 || !BIO_meth_set_create(methods_ebcdic, ebcdic_new)
287 || !BIO_meth_set_destroy(methods_ebcdic, ebcdic_free))
290 return methods_ebcdic;
2482 BIO_meth_free(methods_ebcdic);