Home | History | Annotate | Download | only in comp

Lines Matching refs:meth

7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth)
17 ret->meth=meth;
18 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
41 if (ctx->meth->compress == NULL)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
60 if (ctx->meth->expand == NULL)
65 ret=ctx->meth->expand(ctx,out,olen,in,ilen);