Lines Matching refs:status

319 	int status;  in php_zlib_encode()  local
326 …if (Z_OK == (status = deflateInit2(&Z, level, Z_DEFLATED, encoding, MAX_MEM_LEVEL, Z_DEFAULT_STRAT… in php_zlib_encode()
335 status = deflate(&Z, Z_FINISH); in php_zlib_encode()
338 if (Z_STREAM_END == status) { in php_zlib_encode()
351 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status)); in php_zlib_encode()
359 int status, round = 0; in php_zlib_inflate_rounds() local
369 status = Z_MEM_ERROR; in php_zlib_inflate_rounds()
375 …%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buff… in php_zlib_inflate_rounds()
377 status = inflate(Z, Z_NO_FLUSH); in php_zlib_inflate_rounds()
382 …%7lu,\tfree=%7lu,\tused=%7lu,\tavail_in=%7lu,\tavail_out=%7lu\n", round, status, buffer.size, buff… in php_zlib_inflate_rounds()
386 } while ((Z_BUF_ERROR == status || (Z_OK == status && Z->avail_in)) && ++round < 100); in php_zlib_inflate_rounds()
388 if (status == Z_STREAM_END) { in php_zlib_inflate_rounds()
399 status = (status == Z_OK) ? Z_DATA_ERROR : status; in php_zlib_inflate_rounds()
401 return status; in php_zlib_inflate_rounds()
408 int status = Z_DATA_ERROR; in php_zlib_decode() local
417 status = inflateInit2(&Z, encoding); in php_zlib_decode()
418 if (Z_OK == status) { in php_zlib_decode()
422 switch (status = php_zlib_inflate_rounds(&Z, max_len, out_buf, out_len)) { in php_zlib_decode()
442 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", zError(status)); in php_zlib_decode()
880 int status, int_value; in PHP_INI_MH() local
903 status = php_output_get_status(TSRMLS_C); in PHP_INI_MH()
904 if (status & PHP_OUTPUT_SENT) { in PHP_INI_MH()
910status = OnUpdateLong(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
919 return status; in PHP_INI_MH()