skcipher_req      110 crypto/algif_skcipher.c 	skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm);
skcipher_req      111 crypto/algif_skcipher.c 	skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl,
skcipher_req      122 crypto/algif_skcipher.c 		skcipher_request_set_callback(&areq->cra_u.skcipher_req,
skcipher_req      126 crypto/algif_skcipher.c 			crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) :
skcipher_req      127 crypto/algif_skcipher.c 			crypto_skcipher_decrypt(&areq->cra_u.skcipher_req);
skcipher_req      136 crypto/algif_skcipher.c 		skcipher_request_set_callback(&areq->cra_u.skcipher_req,
skcipher_req      141 crypto/algif_skcipher.c 			crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) :
skcipher_req      142 crypto/algif_skcipher.c 			crypto_skcipher_decrypt(&areq->cra_u.skcipher_req),
skcipher_req      599 fs/ecryptfs/keystore.c 	struct skcipher_request *skcipher_req;
skcipher_req      686 fs/ecryptfs/keystore.c 	s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL);
skcipher_req      687 fs/ecryptfs/keystore.c 	if (!s->skcipher_req) {
skcipher_req      695 fs/ecryptfs/keystore.c 	skcipher_request_set_callback(s->skcipher_req,
skcipher_req      827 fs/ecryptfs/keystore.c 	skcipher_request_set_crypt(s->skcipher_req, s->src_sg, s->dst_sg,
skcipher_req      829 fs/ecryptfs/keystore.c 	rc = crypto_skcipher_encrypt(s->skcipher_req);
skcipher_req      849 fs/ecryptfs/keystore.c 	skcipher_request_free(s->skcipher_req);
skcipher_req      869 fs/ecryptfs/keystore.c 	struct skcipher_request *skcipher_req;
skcipher_req     1005 fs/ecryptfs/keystore.c 	s->skcipher_req = skcipher_request_alloc(s->skcipher_tfm, GFP_KERNEL);
skcipher_req     1006 fs/ecryptfs/keystore.c 	if (!s->skcipher_req) {
skcipher_req     1014 fs/ecryptfs/keystore.c 	skcipher_request_set_callback(s->skcipher_req,
skcipher_req     1043 fs/ecryptfs/keystore.c 	skcipher_request_set_crypt(s->skcipher_req, s->src_sg, s->dst_sg,
skcipher_req     1045 fs/ecryptfs/keystore.c 	rc = crypto_skcipher_decrypt(s->skcipher_req);
skcipher_req     1091 fs/ecryptfs/keystore.c 	skcipher_request_free(s->skcipher_req);
skcipher_req      111 include/crypto/if_alg.h 		struct skcipher_request skcipher_req;