Searched refs:sz_arg (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_credential.c525 struct kauth_cache_sizes sz_arg; local
576 sz_arg.kcs_id_size = kauth_identity_cachemax;
580 sz_arg.kcs_group_size = kauth_groups_cachemax;
583 if ((error = copyout(&sz_arg, uap->message, sizeof (sz_arg))) != 0) {
589 if ((error = copyin(uap->message, &sz_arg, sizeof (sz_arg))) != 0) {
593 if ((sz_arg.kcs_group_size > KAUTH_CACHES_MAX_SIZE) ||
594 (sz_arg.kcs_id_size > KAUTH_CACHES_MAX_SIZE)) {
599 kauth_identity_cachemax = sz_arg
[all...]

Completed in 28 milliseconds