Lines Matching refs:xu
1378 struct xucred xu; in uipc_ctloutput() local
1393 xu = unp->unp_peercred; in uipc_ctloutput()
1402 error = sooptcopyout(sopt, &xu, sizeof(xu)); in uipc_ctloutput()
1794 struct xunpcb *xu; in unp_pcblist() local
1869 xu = malloc(sizeof(*xu), M_TEMP, M_WAITOK | M_ZERO); in unp_pcblist()
1877 xu->xu_len = sizeof *xu; in unp_pcblist()
1878 xu->xu_unpp = (uintptr_t)unp; in unp_pcblist()
1884 bcopy(unp->unp_addr, &xu->xu_addr, in unp_pcblist()
1887 bzero(&xu->xu_addr, sizeof(xu->xu_addr)); in unp_pcblist()
1891 &xu->xu_caddr, in unp_pcblist()
1894 bzero(&xu->xu_caddr, sizeof(xu->xu_caddr)); in unp_pcblist()
1895 xu->unp_vnode = (uintptr_t)unp->unp_vnode; in unp_pcblist()
1896 xu->unp_conn = (uintptr_t)unp->unp_conn; in unp_pcblist()
1897 xu->xu_firstref = (uintptr_t)LIST_FIRST(&unp->unp_refs); in unp_pcblist()
1898 xu->xu_nextref = (uintptr_t)LIST_NEXT(unp, unp_reflink); in unp_pcblist()
1899 xu->unp_gencnt = unp->unp_gencnt; in unp_pcblist()
1900 sotoxsocket(unp->unp_socket, &xu->xu_socket); in unp_pcblist()
1902 error = SYSCTL_OUT(req, xu, sizeof *xu); in unp_pcblist()
1907 free(xu, M_TEMP); in unp_pcblist()
2919 db_print_xucred(int indent, struct xucred *xu) in db_print_xucred() argument
2925 xu->cr_version, xu->cr_uid, xu->cr_pid, xu->cr_ngroups); in db_print_xucred()
2929 for (i = 0; i < xu->cr_ngroups; i++) { in db_print_xucred()
2930 db_printf("%s%u", comma ? ", " : "", xu->cr_groups[i]); in db_print_xucred()