Lines Matching refs:te
145 struct da_node *te; in slp_new_target_list() local
241 for (te = tl->DAs; te; te = te->next) in slp_new_target_list()
242 add2scopes_list(te, tl); in slp_new_target_list()
375 static void add2scopes_list(struct da_node *te, struct target_list *tl) { in add2scopes_list() argument
389 if (slp_onlist(s, te->scopes)) { in add2scopes_list()
397 st->da = te; in add2scopes_list()
416 struct da_node *te, *p; in add_da_entry() local
418 if (!(te = malloc(sizeof (*te)))) { in add_da_entry()
422 te->scopes = scopes; in add_da_entry()
423 te->coverage = c; in add_da_entry()
424 te->proximity = proximity; in add_da_entry()
425 (void) memcpy(&(te->sin), sin, sizeof (te->sin)); in add_da_entry()
426 te->used = SLP_FALSE; in add_da_entry()
427 te->failed = SLP_FALSE; in add_da_entry()
428 te->prev = NULL; in add_da_entry()
429 te->next = NULL; in add_da_entry()
433 *tel = te; in add_da_entry()
447 te->next = p; in add_da_entry()
448 te->prev = p->prev; in add_da_entry()
450 p->prev->next = te; in add_da_entry()
453 (*tel) = te; in add_da_entry()
454 p->prev = te; in add_da_entry()
462 p->next = te; in add_da_entry()
463 te->prev = p; in add_da_entry()