Lines Matching full:flush
74 fails to allocate memory, otherwise 0. flush is assumed to be a valid
75 deflate() flush value. If flush is Z_FINISH, then the deflate() state is
77 to the output file without compressing, and ignore flush. */
78 local int gz_comp(state, flush) in gz_comp() argument
80 int flush;
110 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH &&
111 (flush != Z_FINISH || ret == Z_STREAM_END))) {
131 ret = deflate(strm, flush);
141 if (flush == Z_FINISH)
559 int ZEXPORT gzflush(file, flush) in gzflush() argument
561 int flush;
574 /* check flush parameter */
575 if (flush < 0 || flush > Z_FINISH)
585 /* compress remaining data with requested flush */
586 (void)gz_comp(state, flush);
622 /* flush previous input with previous parameters before changing */
655 /* flush, free memory, and close file */