- t2ex
- bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
191: (var)!= LIST_END(head); \
192: (var) = LIST_NEXT(var, field))
193:
- More results from queue.h
- bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
1955: for (ph = LIST_FIRST(&pp->pr_emptypages); ph != NULL; ph = phnext) {
1956: phnext = LIST_NEXT(ph, ph_pagelist);
1957:
- More results from subr_pool.c
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_domain.c - 21.1KB - 741 lines
583: LIST_FOREACH(fp, &filehead, f_list) {
584: np = LIST_NEXT(fp, f_list);
585: if (fp->f_count == 0 || fp->f_type != DTYPE_SOCKET ||
- More results from uipc_domain.c
- bsd_source/t2ex/network/net/src_bsd/net/if.c - 61.4KB - 2,117 lines
1111: for (ifc = LIST_FIRST(&if_cloners); ifc != NULL && count != 0;
1112: ifc = LIST_NEXT(ifc, ifc_list), count--, dst += IFNAMSIZ) {
1113: (void)strncpy(outbuf, ifc->ifc_name, sizeof(outbuf));
- bsd_source/t2ex/network/net/src_bsd/net/if_ether.h - 12.8KB - 327 lines
224: bcmp((enm)->enm_addrhi, (addrhi), ETHER_ADDR_LEN) != 0); \
225: (enm) = LIST_NEXT((enm), enm_list)); \
226: }
- More results from if_ether.h
- bsd_source/t2ex/network/net/src_bsd/netinet/if_arp.c - 55.2KB - 1,677 lines
374: for (la = LIST_FIRST(&llinfo_arp); la != NULL; la = nla) {
375: nla = LIST_NEXT(la, la_list);
376:
- More results from if_arp.c
- bsd_source/t2ex/network/net/src_bsd/netinet/in_var.h - 13.0KB - 369 lines
180: do { \
181: ia = LIST_NEXT(ia, ia_hash); \
182: } while ((ia != NULL) && !in_hosteq(ia->ia_addr.sin_addr, addr)); \
- More results from in_var.h
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_flow.c - 15.7KB - 521 lines
383: maybe_ipf = ipf;
384: ipf = LIST_NEXT(ipf, ipf_list);
385: }
- More results from ip_flow.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
239: for (mc = LIST_FIRST(&icmp_mtudisc_callbacks); mc != NULL;
240: mc = LIST_NEXT(mc, mc_list)) {
241: if (mc->mc_func == func)
- More results from ip_icmp.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_input.c - 90.8KB - 2,575 lines
1471: 0 : fp->ipq_ttl - ticks);
1472: nfp = LIST_NEXT(fp, ipq_q);
1473: if (fp->ipq_ttl == 0) {