Home
last modified time | relevance | path

Searched refs:num_key (Results 1 – 23 of 23) sorted by relevance

/PHP-5.4/ext/standard/
H A Darray.c932 ulong num_key; in PHP_FUNCTION() local
1060 ulong num_key; in php_array_walk() local
1208 ulong num_key; in php_search_array() local
1323 ulong num_key; in PHP_FUNCTION() local
2174 ulong num_key; in PHP_FUNCTION() local
2251 ulong num_key; in php_array_merge() local
2314 ulong num_key; in php_array_replace_recursive() local
2696 ulong num_key; in PHP_FUNCTION() local
2740 ulong num_key; in PHP_FUNCTION() local
3963 ulong num_key; in PHP_FUNCTION() local
[all …]
H A Dstreamsfuncs.c550 ulong num_key; in PHP_FUNCTION() local
562 &num_key, 0, &pos) == HASH_KEY_IS_STRING) { in PHP_FUNCTION()
580 ulong num_key; in PHP_FUNCTION() local
590 …ey_ex(url_stream_wrappers_hash, &stream_protocol, &stream_protocol_len, &num_key, 0, &pos)) != HAS… in PHP_FUNCTION()
932 ulong num_key; in parse_context_options() local
936 …IS_STRING == zend_hash_get_current_key_ex(Z_ARRVAL_P(options), &wkey, &wkey_len, &num_key, 0, &pos) in parse_context_options()
942 …_STRING == zend_hash_get_current_key_ex(Z_ARRVAL_PP(wval), &okey, &okey_len, &num_key, 0, &opos)) { in parse_context_options()
H A Duser_filters.c555 ulong num_key; in PHP_FUNCTION() local
567 …(key_flags = zend_hash_get_current_key_ex(filters_hash, &filter_name, &filter_name_len, &num_key, … in PHP_FUNCTION()
H A Dproc_open.c85 ulong num_key; in _php_array_to_envp() local
132 …switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_length, &num_key, 0, &pos))… in _php_array_to_envp()
166 …switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_length, &num_key, 0, &pos))… in _php_array_to_envp()
H A Dinfo.c208 ulong num_key; in php_print_gpcse_array() local
224 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_PP(data), &string_key, &string_len, &num_key, 0, NUL… in php_print_gpcse_array()
233 php_info_printf("%ld", num_key); in php_print_gpcse_array()
H A Dstring.c2976 ulong num_key; local
2979 switch (zend_hash_get_current_key_ex(pats, &string_key, &string_key_len, &num_key, 0, &hpos)) {
2981 string_key_len = 1 + zend_spprintf(&string_key, 0, "%ld", (long)num_key);
4021 ulong num_key; local
4060 &string_key_len, &num_key, 0, NULL)) {
4066 add_index_zval(return_value, num_key, result);
/PHP-5.4/ext/mysqlnd/
H A Dphp_mysqlnd.c54 ulong num_key; in mysqlnd_minfo_print_hash() local
59 …zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_v… in mysqlnd_minfo_print_hash()
84 ulong num_key; in mysqlnd_minfo_print_hash() local
86 …zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_v… in mysqlnd_minfo_print_hash()
H A Dmysqlnd_debug.c451 ulong num_key; in MYSQLND_METHOD() local
453 …zend_hash_get_current_key_ex(&self->function_profiles, &string_key, &string_key_len, &num_key, 0, … in MYSQLND_METHOD()
/PHP-5.4/ext/session/
H A Dphp_session.h248 ulong num_key; \
256 …(key_type = zend_hash_get_current_key_ex(_ht, &key, &key_length, &num_key, 0, NULL)) != HASH_KEY_N…
259 php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Skipping numeric key %ld", num_key); \
/PHP-5.4/sapi/fpm/fpm/
H A Dfpm_php.c266 ulong num_key; in fpm_php_get_string_from_table() local
284 …if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(data), &string_key, &string_len, &num_key, 0, NULL) =… in fpm_php_get_string_from_table()
/PHP-5.4/Zend/
H A Dzend.c138 ulong num_key; in print_hash() local
153 switch (zend_hash_get_current_key_ex(ht, &string_key, &str_len, &num_key, 0, &iterator)) { in print_hash()
176 snprintf(key, sizeof(key), "%ld", num_key); in print_hash()
199 ulong num_key; in print_flat_hash() local
209 switch (zend_hash_get_current_key_ex(ht, &string_key, &str_len, &num_key, 0, &iterator)) { in print_flat_hash()
214 zend_printf("%ld", num_key); in print_flat_hash()
H A Dzend_builtin_functions.c575 ulong num_key; in ZEND_FUNCTION() local
609 …switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_key_len, &num_key, 1, NULL)… in ZEND_FUNCTION()
614 add_get_index_long(return_value, 0, num_key, (void **) &inserted_pointer); in ZEND_FUNCTION()
/PHP-5.4/main/
H A Dphp_variables.c601 ulong num_key; in php_autoglobal_merge() local
608 key_type = zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos); in php_autoglobal_merge()
611 …|| (key_type == HASH_KEY_IS_LONG && zend_hash_index_find(dest, num_key, (void **)&dest_entry) != S… in php_autoglobal_merge()
622 zend_hash_index_update(dest, num_key, src_entry, sizeof(zval *), NULL); in php_autoglobal_merge()
/PHP-5.4/ext/pcre/
H A Dphp_pcre.c1342 ulong num_key; in preg_replace_impl() local
1393 switch(zend_hash_get_current_key(Z_ARRVAL_PP(subject), &string_key, &num_key, 0)) in preg_replace_impl()
1400 add_index_stringl(return_value, num_key, result, result_len, 0); in preg_replace_impl()
1769 ulong num_key; in php_pcre_grep_impl() local
1827 switch (zend_hash_get_current_key(Z_ARRVAL_P(input), &string_key, &num_key, 0)) in php_pcre_grep_impl()
1835 zend_hash_index_update(Z_ARRVAL_P(return_value), num_key, entry, in php_pcre_grep_impl()
/PHP-5.4/ext/spl/
H A Dspl_array.c920 ulong num_key; in spl_array_skip_protected() local
924 …if (zend_hash_get_current_key_ex(aht, &string_key, &string_length, &num_key, 0, &intern->pos) == H… in spl_array_skip_protected()
1559 ulong num_key; in spl_array_iterator_key() local
1566 …switch (zend_hash_get_current_key_ex(aht, &string_key, &string_length, &num_key, 1, &intern->pos))… in spl_array_iterator_key()
1571 RETVAL_LONG(num_key); in spl_array_iterator_key()
/PHP-5.4/ext/xsl/
H A Dxsltprocessor.c140 ulong num_key; in php_xsl_xslt_make_params() local
152 if (zend_hash_get_current_key(parht, &string_key, &num_key, 1) != HASH_KEY_IS_STRING) { in php_xsl_xslt_make_params()
/PHP-5.4/ext/sockets/
H A Dsockets.c985 ulong num_key; local
1001 … switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(sock_array), &key, &key_len, &num_key, 0, NULL)) {
1006 …zend_hash_index_update(new_hash, num_key, (void *)element, sizeof(zval *), (void **)&dest_element);
/PHP-5.4/sapi/apache_hooks/
H A Dphp_apache.c584 ulong num_key; in add_header_to_table() local
599 …switch(zend_hash_get_current_key_ex(Z_ARRVAL_P(first), &string_key, &string_key_len, &num_key, 0, … in add_header_to_table()
/PHP-5.4/ext/curl/
H A Dinterface.c2075 ulong num_key; in _php_curl_setopt() local
2081 zend_hash_get_current_key_ex(postfields, &string_key, &string_key_len, &num_key, 0, NULL); in _php_curl_setopt()
2085 spprintf(&string_key, 0, "%ld", num_key); in _php_curl_setopt()
/PHP-5.4/ext/dom/
H A Dphp_dom.c506 ulong num_key; in dom_get_debug_info_helper() local
513 &string_length, &num_key, 0, &pos) != HASH_KEY_IS_STRING) { in dom_get_debug_info_helper()
/PHP-5.4/ext/zip/
H A Dphp_zip.c1028 ulong num_key; in php_zip_get_properties() local
1039 zend_hash_get_current_key_ex(obj->prop_handler, &key, &key_len, &num_key, 0, &pos); in php_zip_get_properties()
/PHP-5.4/ext/snmp/
H A Dsnmp.c2109 ulong num_key; in php_snmp_get_properties() local
2117 zend_hash_get_current_key_ex(&php_snmp_properties, &key, &key_len, &num_key, 0, &pos); in php_snmp_get_properties()
/PHP-5.4/ext/gd/
H A Dgd.c3978 ulong num_key; in php_imagettftext_common() local
3980 …if (zend_hash_get_current_key_ex(HASH_OF(EXT), &key, NULL, &num_key, 0, &pos) != HASH_KEY_IS_STRIN… in php_imagettftext_common()

Completed in 140 milliseconds