gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 15 of 15 for funcall:LIST_FIRST (0.02 seconds)
t2ex
bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
238: 
239:         for (mc = LIST_FIRST(&icmp_mtudisc_callbacks); mc != NULL;
240:              mc = LIST_NEXT(mc, mc_list)) {
More results from ip_icmp.c
bsd_source/t2ex/network/net/src_bsd/netinet/ip_input.c - 90.8KB - 2,575 lines
1468:         for (i = 0; i < IPREASS_NHASH; i++) {
1469:                 for (fp = LIST_FIRST(&ipq[i]); fp != NULL; fp = nfp) {
1470:                         fp->ipq_ttl = ((fp->ipq_ttl  <= ticks) ?
More results from ip_input.c
bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
3536: 
3537:         for (sc = LIST_FIRST(&tp->t_sc); sc != NULL; sc = nsc) {
3538:                 nsc = LIST_NEXT(sc, sc_tpq);
bsd_source/t2ex/network/net/src_bsd/netinet6/in6_var.h - 28.7KB - 703 lines
595:         while (step->i_ia != NULL) {
596:                 in6m = LIST_FIRST(&step->i_ia->ia6_multiaddrs);
597:                 step->i_ia = step->i_ia->ia_next;
bsd_source/t2ex/network/net/src_bsd/sys/proc.h - 24.8KB - 616 lines
585: #define PROCLIST_FOREACH(var, head)                                     \
586:         for ((var) = LIST_FIRST(head);                                 \
587:                 ((var) = _proclist_skipmarker(var)) != NULL;          \