Lines Matching refs:out_stream
105 FILE *out_stream = NULL;
129 out_stream = stdout;
206 out_stream = fopen(out_file_name, "w");
207 if (out_stream == NULL) {
215 setmode(fileno(out_stream), O_BINARY);
386 /* While not EOF, read in chars and send them to out_stream
451 out_len != (i= fwrite(&tmp_buff[0], 1, out_len, out_stream)))
456 fclose(out_stream);
461 out_stream = fopen(in_file_name, "w");
464 setmode(fileno(out_stream), O_BINARY);
467 if( num_read != fwrite(tmp_buff, 1, num_read, out_stream))
470 fclose(out_stream);