Searched refs:pzval (Results 1 – 4 of 4) sorted by relevance
/PHP-7.0/ext/iconv/ |
H A D | iconv.c | 2230 zval *pzval; in PHP_FUNCTION() local 2233 if (Z_TYPE_P(pzval) == IS_STRING && Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 2234 switch (Z_STRVAL_P(pzval)[0]) { in PHP_FUNCTION() local 2252 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 2253 in_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION() 2264 if (Z_STRLEN_P(pzval) > 0) { in PHP_FUNCTION() 2265 out_charset = Z_STRVAL_P(pzval); in PHP_FUNCTION() 2270 line_len = zval_get_long(pzval); in PHP_FUNCTION() 2274 if (Z_TYPE_P(pzval) != IS_STRING) { in PHP_FUNCTION() 2275 tmp_str = zval_get_string(pzval); in PHP_FUNCTION() [all …]
|
/PHP-7.0/main/ |
H A D | php_streams.h | 258 #define php_stream_from_zval(xstr, pzval) do { \ argument 259 if (((xstr) = (php_stream*)zend_fetch_resource2_ex((pzval), \ 270 #define php_stream_from_res_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2((res)… argument 271 #define php_stream_from_zval_no_verify(xstr, pzval) (xstr) = (php_stream*)zend_fetch_resource2_ex((… argument
|
/PHP-7.0/ext/fileinfo/libmagic/ |
H A D | softmagic.c | 2041 zval *pzval; in magiccheck() local 2043 if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { in magiccheck() 2049 if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && in magiccheck() 2050 (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) { in magiccheck()
|
/PHP-7.0/ext/fileinfo/ |
H A D | libmagic.patch | 3616 + zval *pzval; 3618 + if ((pzval = zend_hash_index_find(ht, 0)) != NULL && Z_TYPE_P(pzval) == IS_ARRAY) { 3624 + if ((match = zend_hash_index_find(Z_ARRVAL_P(pzval), 0)) && 3625 + (offset = zend_hash_index_find(Z_ARRVAL_P(pzval), 1))) {
|
Completed in 24 milliseconds