Lines Matching refs:out_file_name
108 char *in_file_name, *out_file_name;
119 out_file_name = (char *)0;
170 out_file_name = *argv;
192 if(!strcmp(in_file_name, out_file_name)){
194 if (access(out_file_name, 2))
195 error("%s not writable.", out_file_name);
196 strcpy(out_file_name, "/tmp/udXXXXXX");
197 tmpfd = mkstemp(out_file_name);
200 out_file_name);
206 out_stream = fopen(out_file_name, "w");
208 (void) unlink(out_file_name);
209 error("Couldn't open output file %s.", out_file_name);
222 (void) unlink(out_file_name);
452 error("Error writing %s.", out_file_name);
460 in_stream = fopen(out_file_name, "r");
472 unlink(out_file_name);