Searched refs:sz_arg (Results 1 – 1 of 1) sorted by relevance
515 struct kauth_cache_sizes sz_arg = {}; in identitysvc() local573 sz_arg.kcs_id_size = kauth_identity_cachemax; in identitysvc()577 sz_arg.kcs_group_size = kauth_groups_cachemax; in identitysvc()580 if ((error = copyout(&sz_arg, uap->message, sizeof(sz_arg))) != 0) { in identitysvc()586 if ((error = copyin(uap->message, &sz_arg, sizeof(sz_arg))) != 0) { in identitysvc()590 if ((sz_arg.kcs_group_size > KAUTH_CACHES_MAX_SIZE) || in identitysvc()591 (sz_arg.kcs_id_size > KAUTH_CACHES_MAX_SIZE)) { in identitysvc()596 kauth_identity_cachemax = sz_arg.kcs_id_size; in identitysvc()601 kauth_groups_cachemax = sz_arg.kcs_group_size; in identitysvc()