Searched refs:pzval (Results 1 – 4 of 4) sorted by relevance
/php-src/ext/iconv/ |
H A D | iconv.c | 1986 zval *pzval; in PHP_FUNCTION() local 1989 if (Z_TYPE_P(pzval) == IS_STRING && Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 1990 switch (Z_STRVAL_P(pzval)[0]) { in PHP_FUNCTION() local 2003 if (Z_STRLEN_P(pzval) >= ICONV_CSNMAXLEN) { in PHP_FUNCTION() 2008 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 2009 in_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION() 2020 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 2021 out_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION() 2026 line_len = zval_get_long(pzval); in PHP_FUNCTION() 2030 if (Z_TYPE_P(pzval) != IS_STRING) { in PHP_FUNCTION() [all …]
|
/php-src/main/ |
H A D | php_streams.h | 273 #define php_stream_from_zval(xstr, pzval) do { \ argument 274 if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \ 285 #define php_stream_from_res_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2((res)… argument 286 #define php_stream_from_zval_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2_ex((… argument
|
/php-src/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 2314 zval *pzval; in magiccheck() local 2316 if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { in magiccheck() 2322 if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && in magiccheck() 2323 (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) { in magiccheck()
|
/php-src/ext/fileinfo/ |
H A D | libmagic.patch | 3318 + zval *pzval; 3320 + if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { 3326 + if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && 3327 + (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) {
|
Completed in 44 milliseconds