Lines Matching refs:deflate
54 const deflate = zlib.createDeflate({ dictionary: spdyDict });
58 deflate.on('data', function(chunk) {
66 deflate.on('end', function() {
74 deflate.write(input);
75 deflate.end();
81 const deflate = zlib.createDeflate({ dictionary: spdyDict });
85 deflate.on('data', function(chunk) {
94 deflate.on('end', function() {
102 deflate.write(input);
103 deflate.flush(function() {
104 deflate.reset();
106 deflate.write(input);
107 deflate.end();
113 const deflate = zlib.createDeflateRaw({ dictionary: spdyDict });
117 deflate.on('data', function(chunk) {
125 deflate.on('end', function() {
133 deflate.write(input);
134 deflate.end();
140 const deflate = zlib.createDeflateRaw({ dictionary: spdyDict });
144 deflate.on('data', function(chunk) {
153 deflate.on('end', function() {
161 deflate.write(input);
162 deflate.flush(function() {
163 deflate.reset();
165 deflate.write(input);
166 deflate.end();