Lines Matching refs:pzval
1987 zval *pzval; in PHP_FUNCTION() local
1989 …if ((pzval = zend_hash_str_find_deref(Z_ARRVAL_P(pref), "scheme", sizeof("scheme") - 1)) != NULL) { in PHP_FUNCTION()
1990 if (Z_TYPE_P(pzval) == IS_STRING && Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION()
1991 switch (Z_STRVAL_P(pzval)[0]) { in PHP_FUNCTION() local
2003 …if ((pzval = zend_hash_str_find_deref(Z_ARRVAL_P(pref), "input-charset", sizeof("input-charset") -… in PHP_FUNCTION()
2004 if (Z_STRLEN_P(pzval) >= ICONV_CSNMAXLEN) { in PHP_FUNCTION()
2009 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION()
2010 in_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION()
2015 …if ((pzval = zend_hash_str_find_deref(Z_ARRVAL_P(pref), "output-charset", sizeof("output-charset")… in PHP_FUNCTION()
2016 if (Z_STRLEN_P(pzval) >= ICONV_CSNMAXLEN) { in PHP_FUNCTION()
2021 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION()
2022 out_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION()
2026 …if ((pzval = zend_hash_str_find_deref(Z_ARRVAL_P(pref), "line-length", sizeof("line-length") - 1))… in PHP_FUNCTION()
2027 line_len = zval_get_long(pzval); in PHP_FUNCTION()
2030 …if ((pzval = zend_hash_str_find_deref(Z_ARRVAL_P(pref), "line-break-chars", sizeof("line-break-cha… in PHP_FUNCTION()
2031 if (Z_TYPE_P(pzval) != IS_STRING) { in PHP_FUNCTION()
2032 tmp_str = zval_try_get_string_func(pzval); in PHP_FUNCTION()
2038 lfchars = Z_STRVAL_P(pzval); in PHP_FUNCTION()