Lines Matching defs:Zlib
82 // Zlib flush levels
84 // Zlib option values
244 // The base class for all Zlib-style streams.
649 function Zlib(opts, mode) {
699 const handle = new binding.Zlib(mode);
717 ObjectSetPrototypeOf(Zlib.prototype, ZlibBase.prototype);
718 ObjectSetPrototypeOf(Zlib, ZlibBase);
734 Zlib.prototype.params = function params(level, strategy, callback) {
752 ReflectApply(Zlib, this, [opts, DEFLATE]);
754 ObjectSetPrototypeOf(Deflate.prototype, Zlib.prototype);
755 ObjectSetPrototypeOf(Deflate, Zlib);
760 ReflectApply(Zlib, this, [opts, INFLATE]);
762 ObjectSetPrototypeOf(Inflate.prototype, Zlib.prototype);
763 ObjectSetPrototypeOf(Inflate, Zlib);
768 ReflectApply(Zlib, this, [opts, GZIP]);
770 ObjectSetPrototypeOf(Gzip.prototype, Zlib.prototype);
771 ObjectSetPrototypeOf(Gzip, Zlib);
776 ReflectApply(Zlib, this, [opts, GUNZIP]);
778 ObjectSetPrototypeOf(Gunzip.prototype, Zlib.prototype);
779 ObjectSetPrototypeOf(Gunzip, Zlib);
785 ReflectApply(Zlib, this, [opts, DEFLATERAW]);
787 ObjectSetPrototypeOf(DeflateRaw.prototype, Zlib.prototype);
788 ObjectSetPrototypeOf(DeflateRaw, Zlib);
793 ReflectApply(Zlib, this, [opts, INFLATERAW]);
795 ObjectSetPrototypeOf(InflateRaw.prototype, Zlib.prototype);
796 ObjectSetPrototypeOf(InflateRaw, Zlib);
801 ReflectApply(Zlib, this, [opts, UNZIP]);
803 ObjectSetPrototypeOf(Unzip.prototype, Zlib.prototype);
804 ObjectSetPrototypeOf(Unzip, Zlib);
871 ObjectSetPrototypeOf(Brotli.prototype, Zlib.prototype);
872 ObjectSetPrototypeOf(Brotli, Zlib);
904 ObjectDefineProperty(binding.Zlib.prototype, 'jsref', {