Lines Matching refs:status

307 	int status;  in php_zlib_encode()  local
314 …if (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRAT… in php_zlib_encode()
323 status = deflate(&Z, Z_FINISH); in php_zlib_encode()
326 if (Z_STREAM_END == status) { in php_zlib_encode()
339 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status)); in php_zlib_encode()
347 int status, round = 0; in php_zlib_inflate_rounds() local
357 status = Z_MEM_ERROR; in php_zlib_inflate_rounds()
363 …%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buff… in php_zlib_inflate_rounds()
365 status = inflate(Z, Z_NO_FLUSH); in php_zlib_inflate_rounds()
370 …%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buff… in php_zlib_inflate_rounds()
374 } while ((Z_BUF_ERROR == status || (Z_OK == status && Z->avail_in)) && ++round < 100); in php_zlib_inflate_rounds()
376 if (status == Z_STREAM_END) { in php_zlib_inflate_rounds()
387 status = (status == Z_OK) ? Z_DATA_ERROR : status; in php_zlib_inflate_rounds()
389 return status; in php_zlib_inflate_rounds()
396 int status = Z_DATA_ERROR; in php_zlib_decode() local
405 status = inflateInit2(&Z, encoding); in php_zlib_decode()
406 if (Z_OK == status) { in php_zlib_decode()
410 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode()
430 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status)); in php_zlib_decode()
868 int status, int_value; in PHP_INI_MH() local
891 status = php_output_get_status(TSRMLS_C); in PHP_INI_MH()
892 if (status & PHP_OUTPUT_SENT) { in PHP_INI_MH()
898status = OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
907 return status; in PHP_INI_MH()