Lines Matching defs:temp_pcred

3852 	posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
3875 temp_pcred->cr_uid = euid;
3878 temp_pcred->cr_ruid = ruid;
3881 temp_pcred->cr_svuid = svuid;
3889 if ((temp_pcred->cr_gmuid = gmuid) == KAUTH_UID_NONE) {
3890 temp_pcred->cr_flags |= CRF_NOMEMBERD;
3927 posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
3953 temp_pcred->cr_flags |= CRF_NOMEMBERD;
3954 temp_pcred->cr_gmuid = KAUTH_UID_NONE;
3960 temp_pcred->cr_rgid = rgid;
3963 temp_pcred->cr_svgid = svgid;
4024 posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
4054 temp_pcred->cr_ngroups = groupcount;
4055 bcopy(groups, temp_pcred->cr_groups, sizeof(temp_pcred->cr_groups));
4056 temp_pcred->cr_gmuid = gmuid;
4058 temp_pcred->cr_flags |= CRF_NOMEMBERD;
4060 temp_pcred->cr_flags &= ~CRF_NOMEMBERD;
4159 posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
4181 temp_pcred->cr_uid = uid;
4182 temp_pcred->cr_ruid = uid;
4183 temp_pcred->cr_svuid = uid;
4184 temp_pcred->cr_flags = pcred->cr_flags;
4187 temp_pcred->cr_gmuid = KAUTH_UID_NONE;
4188 temp_pcred->cr_flags |= CRF_NOMEMBERD;
4190 temp_pcred->cr_gmuid = uid;
4191 temp_pcred->cr_flags &= ~CRF_NOMEMBERD;
4193 temp_pcred->cr_ngroups = 1;
4196 temp_pcred->cr_gmuid = KAUTH_UID_NONE;
4197 temp_pcred->cr_flags |= CRF_NOMEMBERD;
4199 temp_pcred->cr_rgid = gid;
4200 temp_pcred->cr_svgid = gid;
4237 posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
4261 temp_pcred->cr_svuid = uid;
4262 temp_pcred->cr_svgid = gid;
4873 posix_cred_t temp_pcred = posix_cred_get(&temp_cred);
4888 temp_pcred->cr_uid = pcred->cr_ruid;
4891 temp_pcred->cr_flags |= CRF_NOMEMBERD;
4892 temp_pcred->cr_gmuid = KAUTH_UID_NONE;
4898 if (temp_pcred->cr_gmuid != KAUTH_UID_NONE)
4899 temp_pcred->cr_gmuid = pcred->cr_ruid;