Lines Matching refs:subreq
54 struct skcipher_request subreq; member
155 req = &rctx->subreq; in xor_tweak()
216 rctx->subreq.base.flags &= ~CRYPTO_TFM_REQ_MAY_SLEEP; in crypt_done()
227 struct skcipher_request *subreq = &rctx->subreq; in init_crypt() local
229 skcipher_request_set_tfm(subreq, ctx->child); in init_crypt()
230 skcipher_request_set_callback(subreq, req->base.flags, crypt_done, req); in init_crypt()
232 skcipher_request_set_crypt(subreq, req->dst, req->dst, in init_crypt()
245 struct skcipher_request *subreq = &rctx->subreq; in encrypt() local
249 crypto_skcipher_encrypt(subreq) ?: in encrypt()
256 struct skcipher_request *subreq = &rctx->subreq; in decrypt() local
260 crypto_skcipher_decrypt(subreq) ?: in decrypt()