- t2ex
- bsd_source/lib/libc/src_bsd/include/sys/queue.h - 27.6KB - 568 lines
185: #define LIST_END(head) NULL
186: #define LIST_EMPTY(head) (LIST_FIRST(head) == LIST_END(head))
187: #define LIST_NEXT(elm, field) ((elm)->field.le_next)
- More results from queue.h
- bsd_source/t2ex/network/net/src_bsd/kern/subr_pool.c - 105.3KB - 3,534 lines
518:
519: while ((ph = LIST_FIRST(pq)) != NULL) {
520: LIST_REMOVE(ph, ph_pagelist);
- More results from subr_pool.c
- bsd_source/t2ex/network/net/src_bsd/net/if.c - 61.4KB - 2,117 lines
1110:
1111: for (ifc = LIST_FIRST(&if_cloners); ifc != NULL && count != 0;
1112: ifc = LIST_NEXT(ifc, ifc_list), count--, dst += IFNAMSIZ) {
- bsd_source/t2ex/network/net/src_bsd/net/if_ether.h - 12.8KB - 327 lines
220: { \
221: for ((enm) = LIST_FIRST(&(ec)->ec_multiaddrs); \
222: (enm) != NULL && \
- More results from if_ether.h
- bsd_source/t2ex/network/net/src_bsd/net/if_ethersubr.c - 51.3KB - 1,589 lines
1176: s = splnet();
1177: while ((enm = LIST_FIRST(&ec->ec_multiaddrs)) != NULL) {
1178: LIST_REMOVE(enm, enm_list);
- bsd_source/t2ex/network/net/src_bsd/net/route.c - 44.7KB - 1,375 lines
1121:
1122: while ((r = LIST_FIRST(&rt->rt_timer)) != NULL) {
1123: LIST_REMOVE(r, rtt_link);
- More results from route.c
- bsd_source/t2ex/network/net/src_bsd/netinet/if_arp.c - 55.2KB - 1,677 lines
373:
374: for (la = LIST_FIRST(&llinfo_arp); la != NULL; la = nla) {
375: nla = LIST_NEXT(la, la_list);
- More results from if_arp.c
- bsd_source/t2ex/network/net/src_bsd/netinet/in_pcb.c - 36.2KB - 1,082 lines
904: inph = &inp->inp_head;
905: if (inph != LIST_FIRST(head)) {
906: LIST_REMOVE(inph, inph_hash);
- More results from in_pcb.c
- bsd_source/t2ex/network/net/src_bsd/netinet/in_var.h - 13.0KB - 369 lines
280: while ((step).i_inm == NULL && (step).i_n < IN_MULTI_HASH_SIZE) \
281: (step).i_inm = LIST_FIRST(&in_multihashtbl[++(step).i_n]); \
282: if (((inm) = (step).i_inm) != NULL) \
- More results from in_var.h
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_flow.c - 15.7KB - 521 lines
363:
364: ipf = LIST_FIRST(&ipflowlist);
365: while (ipf != NULL) {
- More results from ip_flow.c