Lines Matching refs:outfile
161 write_code(FILE *outfile, PyObject *marshalled, const char *varname)
166 fprintf(outfile, "const unsigned char %s[] = {\n", varname);
169 fprintf(outfile, " ");
171 fprintf(outfile, "%u,", (unsigned int) data[i]);
173 fprintf(outfile, "\n");
175 fprintf(outfile, "};\n");
184 FILE *outfile = fopen(outpath, "w");
185 if (outfile == NULL) {
190 fprintf(outfile, "%s\n", header);
192 write_code(outfile, marshalled, arrayname);
195 if (ferror(outfile)) {
197 fclose(outfile);
200 fclose(outfile);