Lines Matching defs:old

131 static void movefile(char *new, char *old);
140 int oldnum; /* number in old cross-ref */
142 FILE *oldrefs; /* old cross-reference file */
950 FILE *oldrefs; /* old cross-reference file */
951 time_t reftime; /* old crossref modification time */
953 char *oldfile; /* file in old cross-reference */
955 char olddir[PATHLEN + 1]; /* directory in old cross-reference */
956 char oldname[PATHLEN + 1]; /* name in old cross-reference */
957 int oldnum; /* number in old cross-ref */
979 * if there is an old cross-reference and its current directory
1019 /* check the old and new option settings */
1024 "command line and old symbol database\n");
1030 "command line and old symbol database\n");
1074 /* the old cross-reference is up-to-date */
1090 /* reopen the old cross-reference file for fast scanning */
1095 /* get the first file name in the old cross-reference */
1149 /* if the old file has been deleted get the next one */
1155 * if there isn't an old database or this is
1168 * skip its old crossref so modifying the last
1267 /* close the old database file */
1286 /* get the next file name in the old cross-reference */
1291 static char file[PATHLEN + 1]; /* file name in old crossref */
1367 char oldname[PATHLEN + 1]; /* name in old cross-reference */
1519 /* process the #included file in the old database */
1530 /* replace the old file with the new file */
1533 movefile(char *new, char *old)
1535 (void) unlink(old);
1536 if (link(new, old) == -1) {
1539 "cscope: cannot link file %s to file %s\n", new, old);