Lines Matching refs:hte

271 	hte_t	*hte;
330 hte = _hsearch(renametab, name, 0);
331 if (hte != NULL)
332 hte = hte->h_hte;
334 hte = hsearch(name, 1);
335 hte->h_used = 1;
339 *hte->h_lcall = fcall;
340 hte->h_lcall = &fcall->f_nxt;
355 hte_t *hte, *renamehte = NULL;
445 hte = hsearch(rename, 1);
446 renamehte->h_hte = hte;
448 } else if (strcmp((hte = renamehte->h_hte)->h_name, rename)) {
457 hte = _hsearch(renametab, name, 0);
458 if (hte != NULL)
459 hte = hte->h_hte;
461 hte = hsearch(name, 1);
463 hte->h_used |= used;
465 hte->h_def = 1;
476 for (symp = hte->h_syms; symp != NULL; symp = symp->s_nxt) {
496 *hte->h_lsym = symp;
497 hte->h_lsym = &symp->s_nxt;
515 hte_t *hte;
526 hte = _hsearch(renametab, name, 0);
527 if (hte != NULL)
528 hte = hte->h_hte;
530 hte = hsearch(name, 1);
531 hte->h_used = 1;
533 *hte->h_lusym = usym;
534 hte->h_lusym = &usym->u_nxt;
1129 mkstatic(hte_t *hte)
1138 for (sym1 = hte->h_syms; sym1 != NULL; sym1 = sym1->s_nxt) {
1147 for (sym = hte->h_syms; sym != NULL && !ofnd; sym = sym->s_nxt) {
1151 for (call = hte->h_calls; call != NULL && !ofnd; call = call->f_nxt) {
1155 for (usym = hte->h_usyms; usym != NULL && !ofnd; usym = usym->u_nxt) {
1160 hte->h_used = 1;
1162 hte->h_def = 1;
1163 hte->h_static = 1;
1173 for (nhte = hte; nhte->h_link != NULL; nhte = nhte->h_link)
1177 nhte->h_name = hte->h_name;
1194 for (symp = &hte->h_syms; (sym = *symp) != NULL; ) {
1198 if (hte->h_lsym == &sym->s_nxt)
1199 hte->h_lsym = symp;
1207 for (callp = &hte->h_calls; (call = *callp) != NULL; ) {
1210 if (hte->h_lcall == &call->f_nxt)
1211 hte->h_lcall = callp;
1219 for (usymp = &hte->h_usyms; (usym = *usymp) != NULL; ) {
1222 if (hte->h_lusym == &usym->u_nxt)
1223 hte->h_lusym = usymp;
1232 /* h_def must be recalculated for old hte */
1233 hte->h_def = nhte->h_def = 0;
1234 for (sym = hte->h_syms; sym != NULL; sym = sym->s_nxt) {
1236 hte->h_def = 1;
1241 mkstatic(hte);