Lines Matching defs:flush
82 // Zlib flush levels
91 // Brotli operations (~flush levels)
245 function ZlibBase(opts, mode, handle, { flush, finishFlush, fullFlush }) {
269 flush = checkRangesOrGetDefault(
270 opts.flush, 'options.flush',
271 FLUSH_BOUND[flushBoundIdx][0], FLUSH_BOUND[flushBoundIdx][1], flush);
301 this._defaultFlushFlag = flush;
354 // If a flush is scheduled while another flush is still pending, a way to figure
355 // out which one is the "stronger" flush is needed.
356 // This is currently only used to figure out which flush flag to use for the
374 // from the .flush() code as a way of introducing flushing operations into the
385 ZlibBase.prototype.flush = function(kind, callback) {
643 flush: Z_NO_FLUSH,
720 // This callback is used by `.params()` to wait until a full flush happened
739 this.flush(Z_SYNC_FLUSH,
831 flush: BROTLI_OPERATION_PROCESS,