Lines Matching refs:te
322 TAILQ_FOREACH(te, lpm_list, next) { in rte_lpm6_create()
323 lpm = (struct rte_lpm6 *) te->data; in rte_lpm6_create()
328 if (te != NULL) { in rte_lpm6_create()
334 te = rte_zmalloc("LPM6_TAILQ_ENTRY", sizeof(*te), 0); in rte_lpm6_create()
335 if (te == NULL) { in rte_lpm6_create()
389 struct rte_tailq_entry *te;
395 TAILQ_FOREACH(te, lpm_list, next) {
396 l = (struct rte_lpm6 *) te->data;
402 if (te == NULL) {
419 struct rte_tailq_entry *te; in rte_lpm6_free()
430 TAILQ_FOREACH(te, lpm_list, next) { in rte_lpm6_free()
431 if (te->data == (void *) lpm) in rte_lpm6_free()
435 if (te != NULL) in rte_lpm6_free()
436 TAILQ_REMOVE(lpm_list, te, next); in rte_lpm6_free()