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