コード例 #1
0
ファイル: deflate.c プロジェクト: johnny/CobraDroidBeta
static void deflate_exit(struct crypto_tfm *tfm)
{
    struct deflate_ctx *ctx = crypto_tfm_ctx(tfm);

    deflate_comp_exit(ctx);
    deflate_decomp_exit(ctx);
}
コード例 #2
0
ファイル: deflate.c プロジェクト: avagin/linux
static void __deflate_exit(void *ctx)
{
	deflate_comp_exit(ctx);
	deflate_decomp_exit(ctx);
}