Home
last modified time | relevance | path

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

/xnu-12377.61.12/bsd/kern/
H A Dkern_credential.c514 struct kauth_cache_sizes sz_arg = {}; in identitysvc() local
572 sz_arg.kcs_id_size = kauth_identity_cachemax; in identitysvc()
576 sz_arg.kcs_group_size = kauth_groups_cachemax; in identitysvc()
579 if ((error = copyout(&sz_arg, uap->message, sizeof(sz_arg))) != 0) { in identitysvc()
585 if ((error = copyin(uap->message, &sz_arg, sizeof(sz_arg))) != 0) { in identitysvc()
589 if ((sz_arg.kcs_group_size > KAUTH_CACHES_MAX_SIZE) || in identitysvc()
590 (sz_arg.kcs_id_size > KAUTH_CACHES_MAX_SIZE)) { in identitysvc()
595 kauth_identity_cachemax = sz_arg.kcs_id_size; in identitysvc()
600 kauth_groups_cachemax = sz_arg.kcs_group_size; in identitysvc()