Searched refs:cipher_handle (Results 1 – 2 of 2) sorted by relevance
1630 struct cc_cipher_handle *cipher_handle = drvdata->cipher_handle; in cc_cipher_free() local1632 if (cipher_handle) { in cc_cipher_free()1634 list_for_each_entry_safe(t_alg, n, &cipher_handle->alg_list, in cc_cipher_free()1640 kfree(cipher_handle); in cc_cipher_free()1641 drvdata->cipher_handle = NULL; in cc_cipher_free()1648 struct cc_cipher_handle *cipher_handle; in cc_cipher_alloc() local1654 cipher_handle = kmalloc(sizeof(*cipher_handle), GFP_KERNEL); in cc_cipher_alloc()1655 if (!cipher_handle) in cc_cipher_alloc()1658 INIT_LIST_HEAD(&cipher_handle->alg_list); in cc_cipher_alloc()1659 drvdata->cipher_handle = cipher_handle; in cc_cipher_alloc()[all …]
147 void *cipher_handle; member