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