Lines Matching refs:crypto_minors
167 static crypto_minor_t **crypto_minors = NULL; variable
418 if (crypto_minors[i] != NULL) { in crypto_detach()
431 kmem_free(crypto_minors, in crypto_detach()
433 crypto_minors = NULL; in crypto_detach()
502 bcopy(crypto_minors, newtable, in crypto_open()
505 kmem_free(crypto_minors, in crypto_open()
515 crypto_minors = newtable; in crypto_open()
531 crypto_minors[mn - 1] = cm; in crypto_open()
560 cm = crypto_minors[mn - 1]; in crypto_close()
576 crypto_minors[mn - 1] = NULL; in crypto_close()
641 if ((cm = crypto_minors[minor - 1]) != NULL) { in crypto_hold_minor()