Home
last modified time | relevance | path

Searched refs:unpcb (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/sys/
H A Dunpcb.h76 LIST_HEAD(unp_head, unpcb);
78 struct unpcb { struct
81 struct unpcb *unp_conn; /* (p) connected socket */ argument
91 LIST_ENTRY(unpcb) unp_reflink; /* (l) link in unp_refs list */ argument
92 LIST_ENTRY(unpcb) unp_link; /* (g) glue on list of all PCBs */
99 LIST_ENTRY(unpcb) unp_dead; /* (g) link in dead list */ argument
132 #define sotounpcb(so) ((struct unpcb *)((so)->so_pcb))
185 unp_copy_peercred(struct thread *td, struct unpcb *client_unp,
186 struct unpcb *server_unp, struct unpcb *listen_unp);
H A Dvnode.h126 struct unpcb *v_unpcb; /* v unix domain net (VSOCK) */
/f-stack/tools/compat/include/sys/
H A Dunpcb.h76 LIST_HEAD(unp_head, unpcb);
78 struct unpcb { struct
81 struct unpcb *unp_conn; /* (p) connected socket */ argument
91 LIST_ENTRY(unpcb) unp_reflink; /* (l) link in unp_refs list */ argument
92 LIST_ENTRY(unpcb) unp_link; /* (g) glue on list of all PCBs */
99 LIST_ENTRY(unpcb) unp_dead; /* (g) link in dead list */ argument
132 #define sotounpcb(so) ((struct unpcb *)((so)->so_pcb))
185 unp_copy_peercred(struct thread *td, struct unpcb *client_unp,
186 struct unpcb *server_unp, struct unpcb *listen_unp);
/f-stack/freebsd/kern/
H A Duipc_usrreq.c297 static void unp_disconnect(struct unpcb *unp, struct unpcb *unp2);
348 unp_pcb_lock_pair(struct unpcb *unp, struct unpcb *unp2) in unp_pcb_lock_pair()
365 unp_pcb_unlock_pair(struct unpcb *unp, struct unpcb *unp2) in unp_pcb_unlock_pair()
381 struct unpcb *unp2; in unp_pcb_lock_peer()
520 struct unpcb *unp; in uipc_attach()
594 struct unpcb *unp; in uipc_bindat()
886 struct unpcb *unp; in uipc_listen()
1268 struct unpcb *unp; in uipc_sense()
1282 struct unpcb *unp; in uipc_shutdown()
1669 struct unpcb *server_unp, struct unpcb *listen_unp) in unp_copy_peercred()
[all …]
H A Dsys_socket.c375 struct unpcb *unpcb; in soo_fill_kinfo() local
404 unpcb = (struct unpcb *)(so->so_pcb); in soo_fill_kinfo()
405 if (unpcb->unp_conn) { in soo_fill_kinfo()
407 (uintptr_t)unpcb->unp_conn; in soo_fill_kinfo()
H A Dvnode_if.src723 IN struct unpcb *unpcb;
731 OUT struct unpcb **unpcb;
H A Duipc_syscalls.c621 struct unpcb *unp, *unp2; in kern_socketpair()
/f-stack/lib/
H A Dff_glue.c1302 unp_copy_peercred(struct thread *td, struct unpcb *client_unp, in unp_copy_peercred()
1303 struct unpcb *server_unp, struct unpcb *listen_unp) in unp_copy_peercred()
/f-stack/tools/netstat/
H A Dunix.c110 struct unpcb *unp, unp0, unp_conn; in pcblist_kvm()