Lines Matching refs:out_file_name
110 char *in_file_name, *out_file_name;
126 out_file_name = (char *)0;
175 out_file_name = *argv;
195 if (!strcmp(in_file_name, out_file_name)) {
197 if (access(out_file_name, 2))
198 error("%s not writable.", out_file_name);
199 strcpy(out_file_name, "/tmp/udXXXXXX");
200 tmpfd = mkstemp(out_file_name);
203 out_file_name);
209 out_stream = fopen(out_file_name, "w");
211 (void) unlink(out_file_name);
212 error("Couldn't open output file %s.", out_file_name);
227 (void) unlink(out_file_name);
452 error("Error writing to %s.", out_file_name);
464 in_stream = fopen(out_file_name, "r");
478 unlink(out_file_name);