Home
last modified time | relevance | path

Searched refs:flush_mode (Results 1 – 6 of 6) sorted by relevance

/php-src/ext/zlib/tests/
H A Ddeflate_add_error.phpt27 deflate_add(): Argument #3 ($flush_mode) must be one of ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYN…
H A Dinflate_add_error.phpt26 inflate_add(): Argument #3 ($flush_mode) must be one of ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYN…
/php-src/ext/zlib/
H A Dzlib.stub.php275 function deflate_add(DeflateContext $context, string $data, int $flush_mode = ZLIB_SYNC_FLUSH): str… argument
279 function inflate_add(InflateContext $context, string $data, int $flush_mode = ZLIB_SYNC_FLUSH): str… argument
H A Dzlib_filter.c198 int flush_mode; in php_zlib_deflate_filter() local
207flush_mode = flags & PSFS_FLAG_FLUSH_CLOSE ? Z_FULL_FLUSH : (flags & PSFS_FLAG_FLUSH_INC ? Z_SYNC_… in php_zlib_deflate_filter()
208 data->finished = flush_mode != Z_NO_FLUSH; in php_zlib_deflate_filter()
209 status = deflate(&(data->strm), flush_mode); in php_zlib_deflate_filter()
H A Dzlib_arginfo.h115 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flush_mode, IS_LONG, 0, "ZLIB_SYNC_FLUSH")
126 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, flush_mode, IS_LONG, 0, "ZLIB_SYNC_FLUSH")
/php-src/ext/bz2/
H A Dbz2_filter.c231 int flush_mode; in php_bz2_compress_filter() local
240flush_mode = flags & PSFS_FLAG_FLUSH_CLOSE ? BZ_FINISH : (flags & PSFS_FLAG_FLUSH_INC ? BZ_FLUSH :… in php_bz2_compress_filter()
241 data->is_flushed = flush_mode != BZ_RUN; in php_bz2_compress_filter()
242 status = BZ2_bzCompress(&(data->strm), flush_mode); in php_bz2_compress_filter()

Completed in 13 milliseconds