Home | History | Annotate | Download | only in cvt

Lines Matching refs:infile

53 static char *infile = NULL;
73 fprintf(stderr, "Removing %s\n", infile);
74 unlink(infile);
213 infile = argv[optind];
214 if (access(infile, R_OK) != 0)
215 terminate("Can't access %s", infile);
240 if (!file_read(filetd, infile, ignore_non_c))
241 terminate("%s doesn't have type data to convert\n", infile);
256 if (outfile && strcmp(infile, outfile) != 0) {
257 write_ctf(mstrtd, infile, outfile, dynsym | keep_stabs);
259 char *tmpname = mktmpname(infile, ".ctf");
260 write_ctf(mstrtd, infile, tmpname, dynsym | keep_stabs);
261 if (rename(tmpname, infile) != 0)