Lines Matching refs:inst
92 struct crypto_instance *inst; member
136 struct crypto_instance *inst);
137 void crypto_unregister_instance(struct crypto_instance *inst);
139 int crypto_grab_spawn(struct crypto_spawn *spawn, struct crypto_instance *inst,
149 int __crypto_inst_setname(struct crypto_instance *inst, const char *name,
152 #define crypto_inst_setname(inst, name, ...) \ argument
154 inst, name, ##__VA_ARGS__)
155 #define crypto_inst_setname_1(inst, name, alg) \ argument
156 __crypto_inst_setname(inst, name, name, alg)
157 #define crypto_inst_setname_2(inst, name, driver, alg) \ argument
158 __crypto_inst_setname(inst, name, driver, alg)
208 static inline void *crypto_instance_ctx(struct crypto_instance *inst) in crypto_instance_ctx() argument
210 return inst->__ctx; in crypto_instance_ctx()