Lines Matching refs:result
22 u8 *result; member
36 if (ctx->result) in hash_alloc_result()
41 ctx->result = sock_kmalloc(sk, ds, GFP_KERNEL); in hash_alloc_result()
42 if (!ctx->result) in hash_alloc_result()
45 memset(ctx->result, 0, ds); in hash_alloc_result()
54 if (!ctx->result) in hash_free_result()
59 sock_kzfree_s(sk, ctx->result, ds); in hash_free_result()
60 ctx->result = NULL; in hash_free_result()
120 ahash_request_set_crypt(&ctx->req, NULL, ctx->result, 0); in hash_sendmsg()
153 ahash_request_set_crypt(&ctx->req, ctx->sgl.sg, ctx->result, size); in hash_sendpage()
190 bool result; in hash_recvmsg() local
199 result = ctx->result; in hash_recvmsg()
204 ahash_request_set_crypt(&ctx->req, NULL, ctx->result, 0); in hash_recvmsg()
206 if (!result && !ctx->more) { in hash_recvmsg()
213 if (!result || ctx->more) { in hash_recvmsg()
221 err = memcpy_to_msg(msg, ctx->result, len); in hash_recvmsg()
437 ctx->result = NULL; in hash_accept_parent_nokey()