Lines Matching refs:string_key

2137 	char *string_key;  in PHP_FUNCTION()  local
2192 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0,… in PHP_FUNCTION()
2194 …zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, entry, sizeof(zval *), NULL… in PHP_FUNCTION()
2214 char *string_key; in php_array_merge() local
2221 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { in php_array_merge()
2223 …if (recursive && zend_hash_find(dest, string_key, string_key_len, (void **)&dest_entry) == SUCCESS… in php_array_merge()
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
2297 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { in php_array_replace_recursive()
2300 zend_hash_find(dest, string_key, string_key_len, (void **)&dest_entry) == FAILURE || in php_array_replace_recursive()
2304 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL); in php_array_replace_recursive()
2638 char *string_key; in PHP_FUNCTION() local
2655 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0,… in PHP_FUNCTION()
2657 …zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, entry, sizeof(zval *), NULL… in PHP_FUNCTION()
2782 char *string_key; in PHP_FUNCTION() local
2799 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(array), &string_key, &str_key_len, &num_key, 0, &p… in PHP_FUNCTION()
2804 new_key = estrndup(string_key, str_key_len - 1); in PHP_FUNCTION()
4006 char *string_key; in PHP_FUNCTION() local
4031 …while (num_req && (key_type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string… in PHP_FUNCTION()
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()
4210 char *string_key; in PHP_FUNCTION() local
4257 …switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(array), &string_key, &string_key_len, &num_key, 0,… in PHP_FUNCTION()
4259 …zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, operand, sizeof(zval *), NU… in PHP_FUNCTION()