Lines Matching refs:tb
370 struct rtattr **tb, in cryptd_create_skcipher() argument
391 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_skcipher()
636 static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb, in cryptd_create_hash() argument
657 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_hash()
823 struct rtattr **tb, in cryptd_create_aead() argument
844 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_aead()
879 static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb) in cryptd_create() argument
883 algt = crypto_get_attr_type(tb); in cryptd_create()
889 return cryptd_create_skcipher(tmpl, tb, algt, &queue); in cryptd_create()
891 return cryptd_create_hash(tmpl, tb, algt, &queue); in cryptd_create()
893 return cryptd_create_aead(tmpl, tb, algt, &queue); in cryptd_create()