Lines Matching refs:newrefs
88 FILE *newrefs; /* new cross-reference */ variable
1104 if ((newrefs = fopen(newreffile, "w")) == NULL) { in build()
1215 if (fflush(newrefs) == EOF) { in build()
1261 rewind(newrefs); in build()
1263 (void) fclose(newrefs); in build()
1315 dboffset = fprintf(newrefs, "cscope %d %s", FILEVERSION, dir); in putheader()
1317 dboffset += fprintf(newrefs, " -c"); in putheader()
1320 dboffset += fprintf(newrefs, " -q %.10ld", totalterms); in putheader()
1327 dboffset += fprintf(newrefs, " "); in putheader()
1330 dboffset += fprintf(newrefs, " -T"); in putheader()
1332 dbfprintf(newrefs, " %.10ld\n", traileroffset); in putheader()
1342 (void) fprintf(newrefs, "%d\n", count); in putlist()
1349 (void) fprintf(newrefs, "%d\n", size); in putlist()
1352 if (fputs(names[i], newrefs) == EOF || in putlist()
1353 putc('\n', newrefs) == EOF) { in putlist()