Lines Matching defs:infile
47 static const char *infile = NULL;
66 fprintf(stderr, "Removing %s\n", infile);
67 unlink(infile);
206 infile = argv[optind];
207 if (access(infile, R_OK) != 0)
208 terminate("Can't access %s", infile);
227 if (!file_read(filetd, infile, ignore_non_c))
228 terminate("%s doesn't have type data to convert\n", infile);
243 if (outfile && strcmp(infile, outfile) != 0) {
244 write_ctf(mstrtd, infile, outfile, dynsym);
246 char *tmpname = mktmpname(infile, ".ctf");
248 write_ctf(mstrtd, infile, tmpname, dynsym);
249 if (rename(tmpname, infile) != 0)