Lines Matching refs:string_key_len

2138 	uint string_key_len;  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()
2215 uint string_key_len; 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()
2290 uint string_key_len; 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()
2639 uint string_key_len; 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()
4007 uint string_key_len; in PHP_FUNCTION() local
4031 …type = zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, … 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()
4213 uint string_key_len; 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()