Lines Matching refs:hte

272 	hte_t	*hte;
331 hte = _hsearch(renametab, name, 0);
332 if (hte != NULL)
333 hte = hte->h_hte;
335 hte = hsearch(name, 1);
336 hte->h_used = 1;
340 *hte->h_lcall = fcall;
341 hte->h_lcall = &fcall->f_nxt;
356 hte_t *hte, *renamehte = NULL;
444 hte = hsearch(rename, 1);
445 renamehte->h_hte = hte;
447 } else if (strcmp((hte = renamehte->h_hte)->h_name, rename)) {
456 hte = _hsearch(renametab, name, 0);
457 if (hte != NULL)
458 hte = hte->h_hte;
460 hte = hsearch(name, 1);
462 hte->h_used |= used;
464 hte->h_def = 1;
475 for (symp = hte->h_syms; symp != NULL; symp = symp->s_nxt) {
495 *hte->h_lsym = symp;
496 hte->h_lsym = &symp->s_nxt;
514 hte_t *hte;
525 hte = _hsearch(renametab, name, 0);
526 if (hte != NULL)
527 hte = hte->h_hte;
529 hte = hsearch(name, 1);
530 hte->h_used = 1;
532 *hte->h_lusym = usym;
533 hte->h_lusym = &usym->u_nxt;
1132 mkstatic(hte_t *hte)
1141 for (sym1 = hte->h_syms; sym1 != NULL; sym1 = sym1->s_nxt) {
1150 for (sym = hte->h_syms; sym != NULL && !ofnd; sym = sym->s_nxt) {
1154 for (call = hte->h_calls; call != NULL && !ofnd; call = call->f_nxt) {
1158 for (usym = hte->h_usyms; usym != NULL && !ofnd; usym = usym->u_nxt) {
1163 hte->h_used = 1;
1165 hte->h_def = 1;
1166 hte->h_static = 1;
1176 for (nhte = hte; nhte->h_link != NULL; nhte = nhte->h_link)
1180 nhte->h_name = hte->h_name;
1197 for (symp = &hte->h_syms; (sym = *symp) != NULL; ) {
1201 if (hte->h_lsym == &sym->s_nxt)
1202 hte->h_lsym = symp;
1210 for (callp = &hte->h_calls; (call = *callp) != NULL; ) {
1213 if (hte->h_lcall == &call->f_nxt)
1214 hte->h_lcall = callp;
1222 for (usymp = &hte->h_usyms; (usym = *usymp) != NULL; ) {
1225 if (hte->h_lusym == &usym->u_nxt)
1226 hte->h_lusym = usymp;
1235 /* h_def must be recalculated for old hte */
1236 hte->h_def = nhte->h_def = 0;
1237 for (sym = hte->h_syms; sym != NULL; sym = sym->s_nxt) {
1239 hte->h_def = 1;
1244 mkstatic(hte);