Lines Matching refs:xu
2182 struct xucred xu; in linux_getsockopt_so_peergroups() local
2186 xulen = sizeof(xu); in linux_getsockopt_so_peergroups()
2188 LOCAL_PEERCRED, &xu, UIO_SYSSPACE, &xulen); in linux_getsockopt_so_peergroups()
2192 len = xu.cr_ngroups * sizeof(l_gid_t); in linux_getsockopt_so_peergroups()
2203 for (i = 0; i < xu.cr_ngroups - 1; i++) { in linux_getsockopt_so_peergroups()
2204 error = copyout(xu.cr_groups + i + 1, in linux_getsockopt_so_peergroups()
2258 struct xucred xu; in linux_getsockopt() local
2300 xulen = sizeof(xu); in linux_getsockopt()
2302 name, &xu, UIO_SYSSPACE, &xulen); in linux_getsockopt()
2305 lxu.pid = xu.cr_pid; in linux_getsockopt()
2306 lxu.uid = xu.cr_uid; in linux_getsockopt()
2307 lxu.gid = xu.cr_gid; in linux_getsockopt()