- t2ex
- bsd_source/lib/libc/src_bsd/include/sys/event.h - 7.9KB - 193 lines
141: SLIST_ENTRY(knote) kn_selnext; /* for struct selinfo */
142: TAILQ_ENTRY(knote) kn_tqe;
143: struct kqueue *kn_kq; /* which queue we are on */
- bsd_source/lib/libc/src_bsd/include/sys/proc.h - 24.6KB - 595 lines
247: struct proc {
248: TAILQ_ENTRY(proc) p_runq;
249: LIST_ENTRY(proc) p_list; /* List of all processes. */
- More results from proc.h
- bsd_source/t2ex/network/net/src_bsd/net/if.h - 41.3KB - 977 lines
241: void *if_softc; /* lower-level data for this if */
242: TAILQ_ENTRY(ifnet) if_list; /* all struct ifnets are chained */
243: TAILQ_HEAD(, ifaddr) if_addrlist; /* linked list of addresses per if */
- More results from if.h
- bsd_source/t2ex/network/net/src_bsd/net/if_media.h - 32.9KB - 643 lines
95: struct ifmedia_entry {
96: TAILQ_ENTRY(ifmedia_entry) ifm_list;
97: u_int ifm_media; /* description of this media attachment */
- bsd_source/t2ex/network/net/src_bsd/net/pfil.h - 4.2KB - 142 lines
53: struct packet_filter_hook {
54: TAILQ_ENTRY(packet_filter_hook) pfil_link;
55: int (*pfil_func)(void *, struct mbuf **, struct ifnet *, int);
- bsd_source/t2ex/network/net/src_bsd/net/route.h - 17.7KB - 470 lines
279: struct rttimer {
280: TAILQ_ENTRY(rttimer) rtt_next; /* entry on timer queue */
281: LIST_ENTRY(rttimer) rtt_link; /* multiple timers per rtentry */
- bsd_source/t2ex/network/net/src_bsd/netinet/in_var.h - 13.0KB - 369 lines
93: LIST_ENTRY(in_ifaddr) ia_hash; /* entry in bucket of inet addresses */
94: TAILQ_ENTRY(in_ifaddr) ia_list; /* list of internet addresses */
95: struct sockaddr_in ia_addr; /* reserve space for interface name */
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_var.h - 10.8KB - 263 lines
67: struct ipqent {
68: TAILQ_ENTRY(ipqent) ipqe_q;
69: union {
- More results from ip_var.h
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_congctl.h - 3.0KB - 78 lines
37: struct tcp_congctlent {
38: TAILQ_ENTRY(tcp_congctlent) congctl_ent;
39: const struct tcp_congctl *congctl_ctl;
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_var.h - 41.5KB - 925 lines
172:
173: TAILQ_ENTRY(sackhole) sackhole_q;
174: };
- More results from tcp_var.h