Lines Matching refs:subreq
37 struct skcipher_request subreq; member
98 req = &rctx->subreq; in xor_tweak()
169 struct skcipher_request *subreq = &rctx->subreq; in cts_final() local
185 skcipher_request_set_tfm(subreq, ctx->child); in cts_final()
186 skcipher_request_set_callback(subreq, req->base.flags, cts_done, req); in cts_final()
187 skcipher_request_set_crypt(subreq, rctx->tail, rctx->tail, in cts_final()
190 err = crypt(subreq); in cts_final()
208 rctx->subreq.base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; in encrypt_done()
228 rctx->subreq.base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; in decrypt_done()
245 struct skcipher_request *subreq = &rctx->subreq; in init_crypt() local
250 skcipher_request_set_tfm(subreq, ctx->child); in init_crypt()
251 skcipher_request_set_callback(subreq, req->base.flags, compl, req); in init_crypt()
252 skcipher_request_set_crypt(subreq, req->dst, req->dst, in init_crypt()
264 struct skcipher_request *subreq = &rctx->subreq; in encrypt() local
269 crypto_skcipher_encrypt(subreq) ?: in encrypt()
281 struct skcipher_request *subreq = &rctx->subreq; in decrypt() local
286 crypto_skcipher_decrypt(subreq) ?: in decrypt()