Lines Matching refs:private
68 struct hash_ctx *ctx = ask->private; in hash_sendmsg()
184 struct hash_ctx *ctx = ask->private; in hash_recvmsg()
231 struct hash_ctx *ctx = ask->private; in hash_accept()
261 ctx2 = ask2->private; in hash_accept()
309 tfm = pask->private; in hash_check_key()
388 static void hash_release(void *private) in hash_release() argument
390 crypto_free_ahash(private); in hash_release()
393 static int hash_setkey(void *private, const u8 *key, unsigned int keylen) in hash_setkey() argument
395 return crypto_ahash_setkey(private, key, keylen); in hash_setkey()
401 struct hash_ctx *ctx = ask->private; in hash_sock_destruct()
408 static int hash_accept_parent_nokey(void *private, struct sock *sk) in hash_accept_parent_nokey() argument
410 struct crypto_ahash *tfm = private; in hash_accept_parent_nokey()
424 ask->private = ctx; in hash_accept_parent_nokey()
435 static int hash_accept_parent(void *private, struct sock *sk) in hash_accept_parent() argument
437 struct crypto_ahash *tfm = private; in hash_accept_parent()
442 return hash_accept_parent_nokey(private, sk); in hash_accept_parent()