gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 33 for funcall:LIST_ENTRY (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/sys/file.h - 5.0KB - 115 lines
64: struct file {
65:         LIST_ENTRY(file) f_list;/* list of active files */
66:         short  f_flag;          /* see fcntl.h */
bsd_source/lib/libc/src_bsd/include/sys/proc.h - 24.6KB - 595 lines
71: struct  pgrp {
72:         LIST_ENTRY(pgrp) pg_hash;      /* Hash chain. */
73:         LIST_HEAD(, process) pg_members;/* Pointer to pgrp members. */
More results from proc.h
bsd_source/t2ex/network/net/src_bsd/config/rnd.h - 7.4KB - 209 lines
127: struct __rndsource_element {
128:         LIST_ENTRY(__rndsource_element) list; /* the linked list */
129:         rndsource_t    data;              /* the actual data */
bsd_source/t2ex/network/net/src_bsd/dev/mii/miivar.h - 9.6KB - 272 lines
114: 
115:         LIST_ENTRY(mii_softc) mii_list;        /* entry on parent's PHY list */
116: 
bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
77: struct ipflow {
78:         LIST_ENTRY(ipflow) ipf_list;   /* next in active list */
79:         LIST_ENTRY(ipflow) ipf_hash;   /* next ipflow in bucket */
More results from subr_pool.c
bsd_source/t2ex/network/net/src_bsd/net/bpfdesc.h - 6.2KB - 139 lines
93:         pid_t          bd_pid;         /* corresponding PID */
94:         LIST_ENTRY(bpf_d) bd_list;     /* list of all BPF's */
95:         void           *bd_sih; /* soft interrupt handle */
bsd_source/t2ex/network/net/src_bsd/net/if.h - 41.3KB - 977 lines
140: struct if_clone {
141:         LIST_ENTRY(if_clone) ifc_list; /* on list of cloners */
142:         const char *ifc_name;          /* name of device, e.g. `gif' */
bsd_source/t2ex/network/net/src_bsd/net/if_ether.h - 12.8KB - 327 lines
198:         u_int   enm_refcount;           /* no. claims to this addr/range */
199:         LIST_ENTRY(ether_multi) enm_list;
200: };
bsd_source/t2ex/network/net/src_bsd/net/if_ieee1394.h - 4.4KB - 120 lines
86: struct ieee1394_reass_pkt {
87:         LIST_ENTRY(ieee1394_reass_pkt) rp_next;
88:         struct mbuf    *rp_m;
More results from if_ieee1394.h
bsd_source/t2ex/network/net/src_bsd/net/if_tun.h - 2.1KB - 62 lines
44:         struct simplelock tun_lock;    /* lock for this tunnel */
45:         LIST_ENTRY(tun_softc) tun_list;        /* list of all tuns */
46:         void   *tun_osih;                /* soft interrupt handle */