Searched refs:tap_list (Results 1 – 5 of 5) sorted by relevance
| /dpdk/examples/ip_pipeline/ |
| H A D | tap.c | 24 static struct tap_list tap_list; variable 29 TAILQ_INIT(&tap_list); in tap_init() 42 TAILQ_FOREACH(tap, &tap_list, node) in tap_find() 97 TAILQ_INSERT_TAIL(&tap_list, tap, node); in tap_create()
|
| H A D | tap.h | 18 TAILQ_HEAD(tap_list, tap);
|
| /dpdk/drivers/net/softnic/ |
| H A D | rte_eth_softnic_tap.c | 27 TAILQ_INIT(&p->tap_list); in softnic_tap_init() 38 tap = TAILQ_FIRST(&p->tap_list); in softnic_tap_free() 42 TAILQ_REMOVE(&p->tap_list, tap, node); in softnic_tap_free() 56 TAILQ_FOREACH(tap, &p->tap_list, node) in softnic_tap_find() 113 TAILQ_INSERT_TAIL(&p->tap_list, tap, node); in softnic_tap_create()
|
| H A D | rte_eth_softnic_internals.h | 634 struct softnic_tap_list tap_list; member
|
| /dpdk/examples/pipeline/ |
| H A D | obj.c | 42 TAILQ_HEAD(tap_list, tap); 57 struct tap_list tap_list; member 447 TAILQ_FOREACH(tap, &obj->tap_list, node) in tap_find() 458 TAILQ_FIRST(&obj->tap_list) : TAILQ_NEXT(tap, node); in tap_next() 509 TAILQ_INSERT_TAIL(&obj->tap_list, tap, node); in tap_create() 591 TAILQ_INIT(&obj->tap_list); in obj_init()
|