Lines Matching refs:cpp_temp_file
135 static char *cpp_temp_file; variable
324 cpp_temp_file = (char *) xmalloc (strlen (fileprefix) + 5); in open_input_stream()
325 sprintf (cpp_temp_file, "%s.irc", fileprefix); in open_input_stream()
328 if (run_cmd (cmd, cpp_temp_file)) in open_input_stream()
331 cpp_pipe = fopen (cpp_temp_file, FOPEN_RT);; in open_input_stream()
334 cpp_temp_file, strerror (errno)); in open_input_stream()
339 cpp_temp_file); in open_input_stream()
550 if (cpp_temp_file != NULL) in close_input_stream()
554 unlink (cpp_temp_file); in close_input_stream()
556 free (cpp_temp_file); in close_input_stream()
567 cpp_temp_file = NULL; in close_input_stream()