Home | History | Annotate | Download | only in libprofile

Lines Matching defs:output_file

39 static FILE *output_file = NULL;
42 fwrite(&i, 4, 1, output_file);
59 fwrite(s, strlen(s), 1, output_file);
60 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
110 output_file = fopen(filename, "w+b");
112 if (!output_file) {
114 output_file = fopen(cptr ? cptr + 1 : orig_filename, "w+b");
116 if (!output_file) {
127 fwrite("adcg*204MVLL", 12, 1, output_file);
129 fwrite("adcg*404MVLL", 12, 1, output_file);
167 if (!output_file) return;
170 fwrite("\0\0\0\1", 4, 1, output_file);
182 if (!output_file) return;
183 fwrite("\0\0\xa1\1", 4, 1, output_file);
197 if (!output_file) return;
198 fwrite("\0\0\0\0\0\0\0\0", 8, 1, output_file);
199 fclose(output_file);
200 output_file = NULL;