Searched refs:outfile (Results 1 – 9 of 9) sorted by relevance
/haiku/src/add-ons/translators/jpeg/ |
H A D | be_jdatadst.cpp | 56 BPositionIO * outfile; /* target stream */ member 112 if (dest->outfile->Write(dest->buffer, OUTPUT_BUF_SIZE) != (ssize_t) OUTPUT_BUF_SIZE) in be_empty_output_buffer() 139 if (dest->outfile->Write(dest->buffer, datacount) != (ssize_t) datacount) in be_term_destination() 152 be_jpeg_stdio_dest (j_compress_ptr cinfo, BPositionIO * outfile) in be_jpeg_stdio_dest() argument 171 dest->outfile = outfile; in be_jpeg_stdio_dest()
|
H A D | JPEGTranslator.h | 192 EXTERN(void) be_jpeg_stdio_dest(j_compress_ptr cinfo, BPositionIO *outfile); // from "be_jdatadst.c…
|
/haiku/src/bin/ |
H A D | unchop.c | 84 do_unchop(char *outfile, char *basename) in do_unchop() argument 86 int fdout = open(outfile, O_WRONLY|O_CREAT|O_APPEND); in do_unchop() 88 fprintf(stderr, "can't open '%s': %s\n", outfile, strerror(errno)); in do_unchop()
|
/haiku/src/bin/unzip/ |
H A D | fileio.c | 368 if ((G.outfile = fopen(tfilnam, FOPW)) == (FILE *)NULL) { in open_outfile() 378 G.outfile = fopen(G.filename, FOPWT); in open_outfile() 380 G.outfile = fopen(G.filename, FOPW); in open_outfile() 381 if (G.outfile == (FILE *)NULL) { in open_outfile() 390 if ((G.outfile = fopen(G.filename, FOPR)) == (FILE *)NULL) in open_outfile() 398 fclose(G.outfile); in open_outfile() 402 if (G.dne && ((G.outfile = fopen(G.filename, FOPR)) != (FILE *)NULL)) { in open_outfile() 405 fclose(G.outfile); in open_outfile() 411 if ((G.outfile = fopen(G.filename, FOPW)) == (FILE *)NULL) { in open_outfile() 424 setbuf(G.outfile, (char *)NULL); /* make output unbuffered */ in open_outfile() [all …]
|
H A D | beos.c | 818 fclose(G.outfile); /* close "data" file... */ in close_outfile() 819 G.outfile = fopen(G.filename, FOPR); /* ...and reopen for reading */ in close_outfile() 821 || fread(linktarget, 1, ucsize, G.outfile) != (size_t)ucsize) { in close_outfile() 826 fclose(G.outfile); in close_outfile() 829 fclose(G.outfile); /* close "data" file for good... */ in close_outfile() 851 fclose(G.outfile); in close_outfile()
|
H A D | globals.h | 276 FILE *outfile; member
|
H A D | extract.c | 1401 G.outfile = freopen("", "wb", stdout); /* VAC++ ignores setmode */ 1403 G.outfile = stdout; 1407 setmode(G.outfile, _BINARY); 1409 setmode(fileno(G.outfile), O_BINARY);
|
H A D | unzpriv.h | 449 # define close_outfile() fclose(G.outfile) /* can't set time on files */
|
/haiku/src/apps/codycam/ |
H A D | FtpClient.cpp | 284 BFile outfile(local.c_str(), B_READ_WRITE | B_CREATE_FILE); in GetFile() local 290 if (outfile.InitCheck() != B_NO_ERROR) in GetFile() 334 if (outfile.Write(stmp, slen) < 0) in GetFile()
|