Searched refs:unp_conn (Results 1 - 8 of 8) sorted by relevance

/freebsd-11.0-release/usr.bin/netstat/
H A Dunix.c103 struct unpcb *unp, unp_conn; local
162 if (unp->unp_conn != NULL) {
163 KREAD(unp->unp_conn, &unp_conn, sizeof(unp_conn));
164 if (unp_conn.unp_addr != NULL) {
165 KREAD(unp_conn.unp_addr, &sun_len,
167 KREAD(unp_conn.unp_addr, &xu.xu_caddr, sun_len);
322 (long)unp->unp_conn,
/freebsd-11.0-release/sys/sys/
H A Dunpcb.h50 * is given by unp_conn.
73 struct unpcb *unp_conn; /* control block of connected socket */ member in struct:unpcb
/freebsd-11.0-release/sys/kern/
H A Duipc_usrreq.c212 * unp->unp_conn->unp_socket, you need unlock the lock on unp, not unp_conn,
213 * as unp_socket remains valid as long as the reference to unp_conn is valid.
354 unp2 = unp->unp_conn;
379 unp2 = unp->unp_conn;
614 unp2 = unp->unp_conn;
670 unp2 = unp->unp_conn;
718 unp2 = unp->unp_conn;
741 error = unp->unp_conn != NULL ? EINVAL : EDESTADDRREQ;
774 unp2 = unp->unp_conn;
[all...]
H A Dsys_socket.c367 if (unpcb->unp_conn) {
369 (uintptr_t)unpcb->unp_conn;
/freebsd-11.0-release/usr.bin/fstat/
H A Dfstat.c372 if (sock.unp_conn) {
383 (u_long)sock.unp_conn);
/freebsd-11.0-release/lib/libprocstat/
H A Dlibprocstat.h149 uint64_t unp_conn; member in struct:sockstat
H A Dlibprocstat.c1506 } else if (unpcb.unp_conn) {
1509 sock->unp_conn = (uintptr_t)unpcb.unp_conn;
1563 sock->unp_conn =
/freebsd-11.0-release/usr.bin/sockstat/
H A Dsockstat.c770 if ((xup->xu_unp.unp_conn == NULL && !opt_l) ||
771 (xup->xu_unp.unp_conn != NULL && !opt_c))
787 else if (xup->xu_unp.unp_conn != NULL)
788 *(void **)&(faddr->address) = xup->xu_unp.unp_conn;

Completed in 108 milliseconds