Lines Matching refs:newrefs
90 FILE *newrefs; /* new cross-reference */ variable
1106 if ((newrefs = fopen(newreffile, "w")) == NULL) { in build()
1217 if (fflush(newrefs) == EOF) { in build()
1263 rewind(newrefs); in build()
1265 (void) fclose(newrefs); in build()
1317 dboffset = fprintf(newrefs, "cscope %d %s", FILEVERSION, dir); in putheader()
1319 dboffset += fprintf(newrefs, " -c"); in putheader()
1322 dboffset += fprintf(newrefs, " -q %.10ld", totalterms); in putheader()
1329 dboffset += fprintf(newrefs, " "); in putheader()
1332 dboffset += fprintf(newrefs, " -T"); in putheader()
1334 dbfprintf(newrefs, " %.10ld\n", traileroffset); in putheader()
1344 (void) fprintf(newrefs, "%d\n", count); in putlist()
1351 (void) fprintf(newrefs, "%d\n", size); in putlist()
1354 if (fputs(names[i], newrefs) == EOF || in putlist()
1355 putc('\n', newrefs) == EOF) { in putlist()