Lines Matching refs:xpcb
772 struct xvsockpcb xpcb; variable
773 bzero(&xpcb, xpcb_len);
774 xpcb.xv_len = xpcb_len;
775 xpcb.xv_vsockpp = (uint64_t)VM_KERNEL_ADDRHASH(pcb);
776 xpcb.xvp_local_cid = pcb->local_address.cid;
777 xpcb.xvp_local_port = pcb->local_address.port;
778 xpcb.xvp_remote_cid = pcb->remote_address.cid;
779 xpcb.xvp_remote_port = pcb->remote_address.port;
780 xpcb.xvp_rxcnt = pcb->fwd_cnt;
781 xpcb.xvp_txcnt = pcb->tx_cnt;
782 xpcb.xvp_peer_rxhiwat = pcb->peer_buf_alloc;
783 xpcb.xvp_peer_rxcnt = pcb->peer_fwd_cnt;
784 xpcb.xvp_last_pid = pcb->so->last_pid;
785 xpcb.xvp_gencnt = pcb->vsock_gencnt;
787 sotoxsocket(pcb->so, &xpcb.xv_socket);
791 error = SYSCTL_OUT(req, &xpcb, xpcb_len);