Lines Matching refs:tb
380 struct rtattr **tb, in cryptd_create_skcipher() argument
401 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_skcipher()
664 static int cryptd_create_hash(struct crypto_template *tmpl, struct rtattr **tb, in cryptd_create_hash() argument
685 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_hash()
873 struct rtattr **tb, in cryptd_create_aead() argument
894 crypto_attr_alg_name(tb[1]), type, mask); in cryptd_create_aead()
929 static int cryptd_create(struct crypto_template *tmpl, struct rtattr **tb) in cryptd_create() argument
933 algt = crypto_get_attr_type(tb); in cryptd_create()
939 return cryptd_create_skcipher(tmpl, tb, algt, &queue); in cryptd_create()
941 return cryptd_create_hash(tmpl, tb, algt, &queue); in cryptd_create()
943 return cryptd_create_aead(tmpl, tb, algt, &queue); in cryptd_create()