Lines Matching defs:fallback_req
104 struct ahash_request fallback_req;
492 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
493 rctx->fallback_req.base.flags = req->base.flags
496 return crypto_ahash_init(&rctx->fallback_req);
556 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
557 rctx->fallback_req.base.flags = req->base.flags
559 rctx->fallback_req.nbytes = req->nbytes;
560 rctx->fallback_req.src = req->src;
562 return crypto_ahash_update(&rctx->fallback_req);
571 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
572 rctx->fallback_req.base.flags = req->base.flags
574 rctx->fallback_req.result = req->result;
576 return crypto_ahash_final(&rctx->fallback_req);
585 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
586 rctx->fallback_req.base.flags = req->base.flags
588 rctx->fallback_req.nbytes = req->nbytes;
589 rctx->fallback_req.src = req->src;
590 rctx->fallback_req.result = req->result;
592 return crypto_ahash_finup(&rctx->fallback_req);
601 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
602 rctx->fallback_req.base.flags = req->base.flags
605 return crypto_ahash_import(&rctx->fallback_req, in);
614 ahash_request_set_tfm(&rctx->fallback_req, ctx->fallback);
615 rctx->fallback_req.base.flags = req->base.flags
618 return crypto_ahash_export(&rctx->fallback_req, out);