Lines Matching refs:cc
151 static struct cc {
152 struct cc *next;
379 struct cc *newcc;
380 struct cc *cc, *oldcc;
432 newcc = (struct cc *)malloc(sizeof(*newcc));
439 cc = classes;
442 while ((cc != NULL) && (cc->rdclass < rdclass)) {
443 oldcc = cc;
444 cc = cc->next;
447 if ((cc != NULL) && cc->rdclass == rdclass) {
452 newcc->next = cc;
509 struct cc *cc;
862 for (cc = classes; cc != NULL; cc = cc->next) {
863 if (cc->rdclass == 3)
865 else if (cc->rdclass == 255)
867 PRINTCLASS(cc->classname, cc->rdclass);