Searched refs:sz_arg (Results 1 – 1 of 1) sorted by relevance
531 struct kauth_cache_sizes sz_arg = {}; in identitysvc() local589 sz_arg.kcs_id_size = kauth_identity_cachemax; in identitysvc()593 sz_arg.kcs_group_size = kauth_groups_cachemax; in identitysvc()596 if ((error = copyout(&sz_arg, uap->message, sizeof(sz_arg))) != 0) { in identitysvc()602 if ((error = copyin(uap->message, &sz_arg, sizeof(sz_arg))) != 0) { in identitysvc()606 if ((sz_arg.kcs_group_size > KAUTH_CACHES_MAX_SIZE) || in identitysvc()607 (sz_arg.kcs_id_size > KAUTH_CACHES_MAX_SIZE)) { in identitysvc()612 kauth_identity_cachemax = sz_arg.kcs_id_size; in identitysvc()617 kauth_groups_cachemax = sz_arg.kcs_group_size; in identitysvc()