Lines Matching refs:tt
157 static struct tt {
158 struct tt *next;
230 struct tt *tt;
240 for (tt = types; tt != NULL; tt = tt->next) {
246 if (tt->type != lasttype && subswitch) {
256 if (tt->rdclass && tt->type != lasttype) {
258 tt->type, csw);
261 if (tt->rdclass == 0)
264 tt->type, result, function,
265 funname(tt->typename, buf1), args);
269 tt->rdclass, result, function,
270 funname(tt->classname, buf1),
271 funname(tt->typename, buf2), args);
273 lasttype = tt->type;
377 struct tt *newtt = (struct tt *)malloc(sizeof(*newtt));
378 struct tt *tt, *oldtt;
402 tt = types;
405 while ((tt != NULL) && (tt->type < type)) {
406 oldtt = tt;
407 tt = tt->next;
410 while ((tt != NULL) && (tt->type == type) && (tt->rdclass < rdclass)) {
411 if (strcmp(tt->typename, typename) != 0)
413 oldtt = tt;
414 tt = tt->next;
417 if ((tt != NULL) && (tt->type == type) && (tt->rdclass == rdclass))
420 newtt->next = tt;
508 struct tt *tt;
638 for (tt = types; tt != NULL; tt = tt->next)
640 tt->dirname, tt->typename, tt->type);
797 for (tt = types; tt != NULL; tt = tt->next)
798 if (tt->type != lasttype)
801 funname(tt->typename, buf1),
802 lasttype = tt->type);
815 for (tt = types; tt != NULL; tt = tt->next)
816 if (tt->type != lasttype) {
817 s = funname(tt->typename, buf1);
823 lasttype = tt->type;
882 for (tt = types; tt != NULL; tt = tt->next) {
884 tt->dirname, tt->typename, tt->type);
899 for (tt = types; tt != NULL; tt = tt->next)
901 tt->dirname, tt->typename, tt->type);