HomeSort by: relevance | last modified time | path
    Searched defs:ipflowlist (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet/
ip_flow.c 87 static struct ipflowhead ipflowlist; variable in typeref:struct:ipflowhead
94 TAILQ_INSERT_HEAD(&ipflowlist, (ipf), ipf_list); \
100 TAILQ_REMOVE(&ipflowlist, (ipf), ipf_list); \
177 TAILQ_INIT(&ipflowlist);
341 /* move to head (LRU) for ipflowlist. ipflowtable ooes not care LRU. */
342 TAILQ_REMOVE(&ipflowlist, ipf, ipf_list);
343 TAILQ_INSERT_HEAD(&ipflowlist, ipf, ipf_list);
419 ipf = TAILQ_LAST(&ipflowlist, ipflowhead);
435 struct ipflow *maybe_ipf = TAILQ_LAST(&ipflowlist, ipflowhead);
437 TAILQ_FOREACH(ipf, &ipflowlist, ipf_list)
    [all...]
ip_flow.c 87 static struct ipflowhead ipflowlist; variable in typeref:struct:ipflowhead
94 TAILQ_INSERT_HEAD(&ipflowlist, (ipf), ipf_list); \
100 TAILQ_REMOVE(&ipflowlist, (ipf), ipf_list); \
177 TAILQ_INIT(&ipflowlist);
341 /* move to head (LRU) for ipflowlist. ipflowtable ooes not care LRU. */
342 TAILQ_REMOVE(&ipflowlist, ipf, ipf_list);
343 TAILQ_INSERT_HEAD(&ipflowlist, ipf, ipf_list);
419 ipf = TAILQ_LAST(&ipflowlist, ipflowhead);
435 struct ipflow *maybe_ipf = TAILQ_LAST(&ipflowlist, ipflowhead);
437 TAILQ_FOREACH(ipf, &ipflowlist, ipf_list)
    [all...]

Completed in 21 milliseconds