Home
last modified time | relevance | path

Searched refs:string_key (Results 1 – 16 of 16) sorted by relevance

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php.c264 char *string_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()
286 if (!strncmp(string_key, key, string_len)) { in fpm_php_get_string_from_table()
/PHP-5.5/ext/mysqlnd/
H A Dphp_mysqlnd.c51 char *string_key; in mysqlnd_minfo_print_hash() local
55 …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()
58 php_info_print_table_row(2, string_key, Z_STRVAL_PP(values_entry)); in mysqlnd_minfo_print_hash()
H A Dmysqlnd_debug.c449 char *string_key = NULL; 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()
460 ,string_key in MYSQLND_METHOD()
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c139 char *xpath_expr, *string_key = NULL; 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()
168 params[i++] = string_key; in php_xsl_xslt_make_params()
171 efree(string_key); in php_xsl_xslt_make_params()
781 char *string_key, *name, *value, *namespace; in PHP_FUNCTION() local
794 …if (zend_hash_get_current_key_ex(Z_ARRVAL_P(array_value), &string_key, &string_key_len, &idx, 0, N… in PHP_FUNCTION()
803 … zend_hash_update(intern->parameter, string_key, string_key_len, &new_string, sizeof(zval*), NULL); in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Darray.c2137 char *string_key; in PHP_FUNCTION() local
2214 char *string_key; in php_array_merge() local
2271 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL); in php_array_merge()
2289 char *string_key; in php_array_replace_recursive() local
2638 char *string_key; in PHP_FUNCTION() local
2782 char *string_key; in PHP_FUNCTION() local
2804 new_key = estrndup(string_key, str_key_len - 1); in PHP_FUNCTION()
4006 char *string_key; in PHP_FUNCTION() local
4039 RETURN_STRINGL(string_key, string_key_len - 1, 1); in PHP_FUNCTION()
4046 add_next_index_stringl(return_value, string_key, string_key_len - 1, 1); in PHP_FUNCTION()
[all …]
H A Dproc_open.c79 char *string_key, *data; 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()
173 memcpy(p, string_key, string_length); in _php_array_to_envp()
H A Dinfo.c198 char *string_key; in php_print_gpcse_array() local
216 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_PP(data), &string_key, &string_len, &num_key, 0, NUL… in php_print_gpcse_array()
219 php_info_print_html_esc(string_key, string_len-1); in php_print_gpcse_array()
221 php_info_print(string_key); in php_print_gpcse_array()
H A Dstring.c2938 char *string_key; local
2943 switch (zend_hash_get_current_key_ex(pats, &string_key, &string_key_len, &num_key, 0, &hpos)) {
2945 string_key_len = 1 + zend_spprintf(&string_key, 0, "%ld", (long)num_key);
2946 zend_llist_add_element(*allocs, &string_key);
2971 S(&patterns[i].pat) = string_key;
3996 char *string_key; local
4036 switch (zend_hash_get_current_key_ex(Z_ARRVAL_PP(subject), &string_key,
4039 add_assoc_zval_ex(return_value, string_key, string_key_len, result);
/PHP-5.5/main/
H A Dphp_variables.c582 char *string_key; in php_autoglobal_merge() local
591 key_type = zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos); in php_autoglobal_merge()
593 …|| (key_type == HASH_KEY_IS_STRING && zend_hash_find(dest, string_key, string_key_len, (void **) &… in php_autoglobal_merge()
599 …if (!globals_check || string_key_len != sizeof("GLOBALS") || memcmp(string_key, "GLOBALS", sizeof(… in php_autoglobal_merge()
600 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL); in php_autoglobal_merge()
/PHP-5.5/Zend/
H A Dzend.c136 char *string_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()
158 …int mangled = zend_unmangle_property_name_ex(string_key, str_len - 1, &class_name, &prop_name, &pr… in print_hash()
171 ZEND_WRITE_EX(string_key, str_len-1); in print_hash()
198 char *string_key; in print_flat_hash() local
210 switch (zend_hash_get_current_key_ex(ht, &string_key, &str_len, &num_key, 0, &iterator)) { in print_flat_hash()
212 ZEND_PUTS(string_key); in print_flat_hash()
H A Dzend_builtin_functions.c573 char *string_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()
611 …add_get_index_stringl(return_value, 0, string_key, string_key_len-1, (void **) &inserted_pointer, … in ZEND_FUNCTION()
/PHP-5.5/ext/pcre/
H A Dphp_pcre.c1376 char *string_key; in preg_replace_impl() local
1428 switch(zend_hash_get_current_key(Z_ARRVAL_PP(subject), &string_key, &num_key, 0)) in preg_replace_impl()
1431 add_assoc_stringl(return_value, string_key, result, result_len, 0); in preg_replace_impl()
1807 char *string_key; in php_pcre_grep_impl() local
1866 switch (zend_hash_get_current_key(Z_ARRVAL_P(input), &string_key, &num_key, 0)) in php_pcre_grep_impl()
1869 zend_hash_update(Z_ARRVAL_P(return_value), string_key, in php_pcre_grep_impl()
1870 strlen(string_key)+1, entry, sizeof(zval *), NULL); in php_pcre_grep_impl()
/PHP-5.5/ext/curl/
H A Dinterface.c2602 char *string_key = NULL; in _php_curl_setopt() local
2610 if(!string_key) { in _php_curl_setopt()
2611 spprintf(&string_key, 0, "%ld", num_key); in _php_curl_setopt()
2612 string_key_len = strlen(string_key)+1; in _php_curl_setopt()
2625 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid filename for key %s", string_key); in _php_curl_setopt()
2642 CURLFORM_COPYNAME, string_key, in _php_curl_setopt()
2651 efree(string_key); in _php_curl_setopt()
2681 CURLFORM_COPYNAME, string_key, in _php_curl_setopt()
2695 CURLFORM_COPYNAME, string_key, in _php_curl_setopt()
2703 efree(string_key); in _php_curl_setopt()
[all …]
/PHP-5.5/sapi/apache_hooks/
H A Dphp_apache.c582 char *string_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()
601 … if (zend_hash_find(Z_ARRVAL_P(first), string_key, string_key_len, (void **)&value) == FAILURE) { in add_header_to_table()
612 ap_table_set(t, string_key, Z_STRVAL_PP(value)); in add_header_to_table()
614 ap_table_merge(t, string_key, Z_STRVAL_PP(value)); in add_header_to_table()
/PHP-5.5/ext/dom/
H A Dphp_dom.c504 char *string_key = NULL; in dom_get_debug_info_helper() local
512 if (zend_hash_get_current_key_ex(prop_handlers, &string_key, in dom_get_debug_info_helper()
533 zend_hash_add(debug_info, string_key, string_length, in dom_get_debug_info_helper()
/PHP-5.5/ext/spl/
H A Dspl_array.c928 char *string_key; in spl_array_skip_protected() local
934 …if (zend_hash_get_current_key_ex(aht, &string_key, &string_length, &num_key, 0, &intern->pos) == H… in spl_array_skip_protected()
942 if (!string_length || string_key[0] || string_length == 1) { in spl_array_skip_protected()

Completed in 208 milliseconds