Searched defs:infile (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Deinfo.c50 * @v infile Filename
53 static void einfo ( const char *infile, argument
62 if ( ( fd = open ( infile, O_RDONLY ) ) < 0 ) {
64 infile, strerror ( errno ) );
71 infile, strerror ( errno ) );
82 infile, strerror ( errno ) );
152 const char *infile; local
163 infile = argv[infile_index];
164 einfo ( infile, &opts );
H A Defirom.c173 "infile outfile\n", program_name );
234 FILE *infile; local
248 infile = fopen ( infile_name, "r" );
249 if ( ! infile ) {
262 make_efi_rom ( infile, outfile, &opts );
265 fclose ( infile );
H A Dzbin.c7 FILE *infile, *outfile; variable
H A Delf2efi.c740 eprintf ( "Syntax: %s [--subsystem=<number>] infile outfile\n",
795 const char *infile; local
807 infile = argv[infile_index];
811 elf2pe ( infile, outfile, &opts );
/vbox/src/libs/libpng-1.2.8/contrib/gregbook/
H A Dreadpng.c63 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) argument
71 fread(sig, 1, 8, infile);
103 png_init_io(png_ptr, infile);
H A Dwritepng.h71 FILE *infile; member in struct:_mainprog_info
H A Drpng-win.c93 static FILE *infile; variable
159 infile = fopen("/etc/config/system.glGammaVal", "r");
160 if (infile) {
163 fgets(tmpline, 80, infile);
164 fclose(infile);
252 } else if (!(infile = fopen(filename, "rb"))) {
256 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
279 fclose(infile);
357 fclose(infile);
H A Drpng-x.c95 static FILE *infile; variable
167 infile = fopen("/etc/config/system.glGammaVal", "r");
168 if (infile) {
171 fgets(tmpline, 80, infile);
172 fclose(infile);
240 } else if (!(infile = fopen(filename, "rb"))) {
244 if ((rc = readpng_init(infile, &image_width, &image_height)) != 0) {
275 fclose(infile);
349 fclose(infile);
H A Drpng2-win.c127 static FILE *infile; variable
273 infile = fopen("/etc/config/system.glGammaVal", "r");
274 if (infile) {
277 fgets(tmpline, 80, infile);
278 fclose(infile);
394 } else if (!(infile = fopen(filename, "rb"))) {
398 incount = fread(inbuf, 1, INBUFSIZE, infile);
422 fclose(infile);
517 if (error || feof(infile) || rpng2_info.done)
521 incount = fread(inbuf, 1, INBUFSIZE, infile);
[all...]
H A Drpng2-x.c133 static FILE *infile; variable
280 infile = fopen("/etc/config/system.glGammaVal", "r");
281 if (infile) {
284 fgets(tmpline, 80, infile);
285 fclose(infile);
390 } else if (!(infile = fopen(filename, "rb"))) {
394 incount = fread(inbuf, 1, INBUFSIZE, infile);
426 fclose(infile);
513 if (error || feof(infile) || rpng2_info.done)
517 incount = fread(inbuf, 1, INBUFSIZE, infile);
[all...]
/vbox/src/libs/zlib-1.2.6/examples/
H A Dgun.c81 int infile; member in struct:ind
102 ret = (int)read(me->infile, next, ret);
370 /* Decompress a gzip file from infile to outfile. strm is assumed to have been
382 local int gunpipe(z_stream *strm, int infile, int outfile) argument
391 ind.infile = infile;
550 int infile, outfile; local
555 infile = 0; /* stdin */
558 infile = open(inname, O_RDONLY, 0);
559 if (infile
[all...]
/vbox/src/libs/zlib-1.2.6/test/
H A Dminigzip.c492 char *infile, *outfile; local
505 infile = file;
510 infile = buf;
511 strcat(infile, GZ_SUFFIX);
513 in = gzopen(infile, "rb");
515 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
526 unlink(infile);

Completed in 90 milliseconds