Lines Matching refs:te
114 struct rte_tailq_entry *te;
120 TAILQ_FOREACH(te, lpm_list, next) {
121 l = te->data;
127 if (te == NULL) {
172 TAILQ_FOREACH(te, lpm_list, next) { in rte_lpm_create()
173 lpm = te->data; in rte_lpm_create()
178 if (te != NULL) { in rte_lpm_create()
185 te = rte_zmalloc("LPM_TAILQ_ENTRY", sizeof(*te), 0); in rte_lpm_create()
186 if (te == NULL) { in rte_lpm_create()
251 struct rte_tailq_entry *te; in rte_lpm_free()
262 TAILQ_FOREACH(te, lpm_list, next) { in rte_lpm_free()
263 if (te->data == (void *) lpm) in rte_lpm_free()
266 if (te != NULL) in rte_lpm_free()
267 TAILQ_REMOVE(lpm_list, te, next); in rte_lpm_free()