Lines Matching refs:private
69 struct hash_ctx *ctx = ask->private;
136 struct hash_ctx *ctx = ask->private;
188 struct hash_ctx *ctx = ask->private;
235 struct hash_ctx *ctx = ask->private;
258 ctx2 = ask2->private;
307 tfm = pask->private;
399 static void hash_release(void *private)
401 crypto_free_ahash(private);
404 static int hash_setkey(void *private, const u8 *key, unsigned int keylen)
406 return crypto_ahash_setkey(private, key, keylen);
412 struct hash_ctx *ctx = ask->private;
419 static int hash_accept_parent_nokey(void *private, struct sock *sk)
421 struct crypto_ahash *tfm = private;
435 ask->private = ctx;
446 static int hash_accept_parent(void *private, struct sock *sk)
448 struct crypto_ahash *tfm = private;
453 return hash_accept_parent_nokey(private, sk);