Searched defs:outfile (Results 1 - 11 of 11) sorted by relevance

/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/
H A Dxpidl_doc.c84 print_list(FILE *outfile, IDL_tree list) argument
89 fprintf(outfile, "<ul>\n");
91 fprintf(outfile, " <li>%s\n",
95 fprintf(outfile, "</ul>\n");
158 write_type(IDL_tree type_tree, FILE *outfile) argument
161 fputs("void", outfile);
170 fputs(sign ? "PRInt16" : "PRUint16", outfile);
173 fputs(sign ? "PRInt32" : "PRUint32", outfile);
176 fputs(sign ? "PRInt64" : "PRUint64", outfile);
186 fputs("char", outfile);
[all...]
H A Dxpidl_header.c49 static gboolean write_method_signature(IDL_tree method_tree, FILE *outfile,
51 static gboolean write_attr_accessor(IDL_tree attr_tree, FILE * outfile,
56 write_indent(FILE *outfile) { argument
57 fputs(" ", outfile);
626 write_type(IDL_tree type_tree, gboolean is_out, FILE *outfile) argument
629 fputs("void", outfile);
638 fputs(sign ? "PRInt16" : "PRUint16", outfile);
641 fputs(sign ? "PRInt32" : "PRUint32", outfile);
644 fputs(sign ? "PRInt64" : "PRUint64", outfile);
654 fputs("char", outfile);
736 write_attr_accessor(IDL_tree attr_tree, FILE * outfile, gboolean getter, int mode, const char *className) argument
921 write_param(IDL_tree param_tree, FILE *outfile) argument
967 fputs(IDL_IDENT(IDL_PARAM_DCL(param_tree).simple_declarator).str, outfile); local
997 write_method_signature(IDL_tree method_tree, FILE *outfile, int mode, const char *className) argument
1042 outfile); local
[all...]
H A Dxpidl_util.c779 printlist(FILE *outfile, GSList *slist) argument
785 fprintf(outfile,
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Defirom.c173 "infile outfile\n", program_name );
235 FILE *outfile; local
254 outfile = fopen ( outfile_name, "w" );
255 if ( ! outfile ) {
262 make_efi_rom ( infile, outfile, &opts );
264 fclose ( outfile );
H A Dzbin.c7 FILE *infile, *outfile; variable
H A Delf2efi.c740 eprintf ( "Syntax: %s [--subsystem=<number>] infile outfile\n",
796 const char *outfile; local
808 outfile = argv[infile_index + 1];
811 elf2pe ( infile, outfile, &opts );
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgun.c119 int outfile; member in struct:outd
139 if (me->outfile != -1)
144 ret = (int)write(me->outfile, buf, ret);
190 /* Decompress a compress (LZW) file from indp to outfile. The compress magic
200 int outfile, z_stream *strm)
221 outd.outfile = outfile;
370 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
373 to the output file. If outfile is -1, then the gzip stream(s) integrity is
382 local int gunpipe(z_stream *strm, int infile, int outfile) argument
199 lunpipe(unsigned have, unsigned char *next, struct ind *indp, int outfile, z_stream *strm) argument
550 int infile, outfile; local
[all...]
/vbox/src/libs/zlib-1.2.6/test/
H A Dminigzip.c457 local char outfile[MAX_NAME_LEN]; local
461 if (strlen(file) + strlen(GZ_SUFFIX) >= sizeof(outfile)) {
466 strcpy(outfile, file);
467 strcat(outfile, GZ_SUFFIX);
474 out = gzopen(outfile, mode);
476 fprintf(stderr, "%s: can't gzopen %s\n", prog, outfile);
492 char *infile, *outfile; local
506 outfile = buf;
507 outfile[len-3] = '\0';
509 outfile
[all...]
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dwritepng.h72 FILE *outfile; member in struct:_mainprog_info
/vbox/src/libs/zlib-1.2.6/contrib/untgz/
H A Duntgz.c393 FILE *outfile = NULL; local
482 outfile = fopen(fname,"wb");
483 if (outfile == NULL) {
490 outfile = fopen(fname,"wb");
493 if (outfile != NULL)
499 outfile = NULL;
531 if (outfile != NULL)
533 if (fwrite(&buffer,sizeof(char),bytes,outfile) != bytes)
537 fclose(outfile);
538 outfile
[all...]
/vbox/src/recompiler/tcg/
H A Dtcg.c853 void tcg_dump_ops(TCGContext *s, FILE *outfile) argument
877 fprintf(outfile, "\n");
878 fprintf(outfile, " ---- 0x%" PRIx64, pc);
892 fprintf(outfile, " %s ", def->name);
895 fprintf(outfile, "%s",
898 fprintf(outfile, ",$0x%" TCG_PRIlx,
901 fprintf(outfile, ",$%d", nb_oargs);
903 fprintf(outfile, ",");
904 fprintf(outfile, "%s",
908 fprintf(outfile, ",");
[all...]

Completed in 79 milliseconds