Searched refs:Z_SYNC_FLUSH (Results 1 - 22 of 22) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_msgutil.py208 expected += compress.flush(zlib.Z_SYNC_FLUSH)
224 compressed_hello += compress.flush(zlib.Z_SYNC_FLUSH)
230 compressed_world += compress.flush(zlib.Z_SYNC_FLUSH)
255 compressed_hello += compress.flush(zlib.Z_SYNC_FLUSH)
263 compressed_2nd_hello += compress.flush(zlib.Z_SYNC_FLUSH)
282 compressed_message += compress.flush(zlib.Z_SYNC_FLUSH)
349 compressed_hello += compress.flush(zlib.Z_SYNC_FLUSH)
355 compressed_world += compress.flush(zlib.Z_SYNC_FLUSH)
376 compressed_hello += compress.flush(zlib.Z_SYNC_FLUSH)
382 compressed_world += compress.flush(zlib.Z_SYNC_FLUSH)
[all...]
/external/libppp/src/
H A Ddeflate.c123 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0)
131 flush = Z_SYNC_FLUSH;
252 flush = mi->m_next ? Z_NO_FLUSH : Z_SYNC_FLUSH;
268 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0)
276 flush = Z_SYNC_FLUSH;
331 inflate(&state->cx, Z_SYNC_FLUSH);
394 if (flush == Z_SYNC_FLUSH && state->cx.avail_out != 0)
402 flush = Z_SYNC_FLUSH;
/external/kernel-headers/original/linux/
H A Dzlib.h140 #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
142 #define Z_SYNC_FLUSH 3 macro
242 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
250 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
361 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
362 Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much
/external/zlib/src/contrib/testzlib/
H A Dtestzlib.c209 ret=deflate(&zcpr,(zcpr.avail_in==lOrigToDo) ? Z_FINISH : Z_SYNC_FLUSH);
250 ret=inflate(&zcpr,Z_SYNC_FLUSH);
/external/chromium/net/spdy/
H A Dspdy_framer.cc94 int rv = inflate(decompressor, Z_SYNC_FLUSH);
102 rv = inflate(decompressor, Z_SYNC_FLUSH);
1078 int rv = inflate(decompressor, Z_SYNC_FLUSH);
1469 int rv = deflate(compressor, Z_SYNC_FLUSH);
1533 int rv = inflate(decompressor, Z_SYNC_FLUSH);
1540 rv = inflate(decompressor, Z_SYNC_FLUSH);
/external/dropbear/
H A Dpacket.c382 result = inflate(zstream, Z_SYNC_FLUSH);
585 result = deflate(ses.keys->trans_zstream, Z_SYNC_FLUSH);
/external/openssl/crypto/comp/
H A Dc_zlib.c207 err = deflate(&state->ostream, Z_SYNC_FLUSH);
235 err = inflate(&state->istream, Z_SYNC_FLUSH);
/external/chromium/sdch/open-vcdiff/src/
H A Dzlib.h163 #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
164 #define Z_SYNC_FLUSH 2 macro
276 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
284 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
292 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that
392 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
393 Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
H A Dutil.py237 compressed_bytes += self._compress.flush(zlib.Z_SYNC_FLUSH)
326 # block added for Z_SYNC_FLUSH.
340 # for Z_SYNC_FLUSH.
/external/qemu/distrib/zlib-1.2.3/
H A Dzlib.h163 #define Z_PARTIAL_FLUSH 1 /* will be removed, use Z_SYNC_FLUSH instead */
164 #define Z_SYNC_FLUSH 2 macro
276 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
284 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
292 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that
392 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH,
393 Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much
/external/zlib/src/
H A Dzlib.h166 #define Z_SYNC_FLUSH 2 macro
280 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
292 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH.
299 for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to
308 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
316 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that
421 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH,
422 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much
598 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The
/external/zlib/
H A Dzlib.h166 #define Z_SYNC_FLUSH 2 macro
280 If the parameter flush is set to Z_SYNC_FLUSH, all pending output is
292 input data so far will be available to the decompressor, as for Z_SYNC_FLUSH.
299 for Z_SYNC_FLUSH, but the output is not aligned on a byte boundary, and up to
308 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
316 avail_out). In the case of a Z_FULL_FLUSH or Z_SYNC_FLUSH, make sure that
421 The flush parameter of inflate() can be Z_NO_FLUSH, Z_SYNC_FLUSH, Z_FINISH,
422 Z_BLOCK, or Z_TREES. Z_SYNC_FLUSH requests that inflate() flush as much
598 options Z_BLOCK, Z_PARTIAL_FLUSH, Z_SYNC_FLUSH, or Z_FULL_FLUSH. The
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas70 Z_SYNC_FLUSH = 2;
/external/chromium/net/tools/spdyshark/
H A Dpacket-spdy.c775 retcode = inflate(decomp, Z_SYNC_FLUSH);
785 retcode = inflate(decomp, Z_SYNC_FLUSH);
/external/zlib/src/as400/
H A Dzlib.inc39 D Z_SYNC_FLUSH C 2
/external/zlib/src/contrib/delphi/
H A DZLib.pas169 Z_SYNC_FLUSH = 2;
/external/libpng/
H A Dpngpread.c867 /* Using Z_SYNC_FLUSH here means that an unterminated
874 ret = inflate(&png_ptr->zstream, Z_SYNC_FLUSH);
H A Dpngwrite.c1001 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
/external/qemu/distrib/libpng-1.2.19/
H A Dpngwrite.c961 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
/external/zlib/src/contrib/minizip/
H A Dunzip.c1843 int flush=Z_SYNC_FLUSH;
/external/qemu/
H A Dvnc-android.c610 if (deflate(zstream, Z_SYNC_FLUSH) != Z_OK) {
H A Dvnc.c604 if (deflate(zstream, Z_SYNC_FLUSH) != Z_OK) {

Completed in 432 milliseconds