Lines Matching refs:te
147 struct da_node *te; in slp_new_target_list() local
243 for (te = tl->DAs; te; te = te->next) in slp_new_target_list()
244 add2scopes_list(te, tl); in slp_new_target_list()
377 static void add2scopes_list(struct da_node *te, struct target_list *tl) { in add2scopes_list() argument
391 if (slp_onlist(s, te->scopes)) { in add2scopes_list()
399 st->da = te; in add2scopes_list()
418 struct da_node *te, *p; in add_da_entry() local
420 if (!(te = malloc(sizeof (*te)))) { in add_da_entry()
424 te->scopes = scopes; in add_da_entry()
425 te->coverage = c; in add_da_entry()
426 te->proximity = proximity; in add_da_entry()
427 (void) memcpy(&(te->sin), sin, sizeof (te->sin)); in add_da_entry()
428 te->used = SLP_FALSE; in add_da_entry()
429 te->failed = SLP_FALSE; in add_da_entry()
430 te->prev = NULL; in add_da_entry()
431 te->next = NULL; in add_da_entry()
435 *tel = te; in add_da_entry()
449 te->next = p; in add_da_entry()
450 te->prev = p->prev; in add_da_entry()
452 p->prev->next = te; in add_da_entry()
455 (*tel) = te; in add_da_entry()
456 p->prev = te; in add_da_entry()
464 p->next = te; in add_da_entry()
465 te->prev = p; in add_da_entry()