| /PHP_TRUNK/ext/xsl/ |
| H A D | xsltprocessor.c | 776 int string_key_len, namespace_len, name_len, value_len; local 787 if (zend_hash_get_current_key_ex(Z_ARRVAL_P(array_value), &string_key, &string_key_len, &idx, 0, NULL) != HASH_KEY_IS_STRING) { 796 zend_hash_update(intern->parameter, string_key, string_key_len, &new_string, sizeof(zval*), NULL);
|
| /PHP_TRUNK/main/ |
| H A D | php_variables.c | 583 uint string_key_len; local 591 key_type = zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos); 593 || (key_type == HASH_KEY_IS_STRING && zend_hash_find(dest, string_key, string_key_len, (void **) &dest_entry) != SUCCESS) 599 if (!globals_check || string_key_len != sizeof("GLOBALS") || memcmp(string_key, "GLOBALS", sizeof("GLOBALS") - 1)) { 600 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL);
|
| /PHP_TRUNK/sapi/apache_hooks/ |
| H A D | php_apache.c | 583 uint string_key_len; local 599 switch(zend_hash_get_current_key_ex(Z_ARRVAL_P(first), &string_key, &string_key_len, &num_key, 0, &pos)) { 601 if (zend_hash_find(Z_ARRVAL_P(first), string_key, string_key_len, (void **)&value) == FAILURE) {
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_debug.c | 450 uint string_key_len; local 453 zend_hash_get_current_key_ex(&self->function_profiles, &string_key, &string_key_len, &num_key, 0, &pos_values);
|
| H A D | php_mysqlnd.c | 52 uint string_key_len; local 55 zend_hash_get_current_key_ex(Z_ARRVAL_P(values), &string_key, &string_key_len, &num_key, 0, &pos_values); local
|
| /PHP_TRUNK/ext/standard/ |
| H A D | string.c | 2903 uint string_key_len; local 2907 switch (zend_hash_get_current_key_ex(pats, &string_key, &string_key_len, &num_key, 0, &hpos)) { 2909 string_key_len = 1 + zend_spprintf(&string_key, 0, "%ld", (long)num_key); 2914 string_key_len--; /* exclude final '\0' */ 2915 if (string_key_len == 0) { /* empty string given as pattern */ 2922 if (string_key_len > slen) { /* this pattern can never match */ 2936 L(&patterns[i].pat) = string_key_len; 3950 uint string_key_len; local 3990 &string_key_len, &num_key, 0, NULL)) { 3992 add_assoc_zval_ex(return_value, string_key, string_key_len, resul [all...] |
| H A D | array.c | 2138 uint string_key_len; local 2192 switch (zend_hash_get_current_key_ex(Z_ARRVAL_P(input), &string_key, &string_key_len, &num_key, 0, &hpos)) { 2194 zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, entry, sizeof(zval *), NULL); local 2215 uint string_key_len; local 2221 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { 2223 if (recursive && zend_hash_find(dest, string_key, string_key_len, (void **)&dest_entry) == SUCCESS) { 2259 zend_hash_update(dest, string_key, string_key_len, src_entry, sizeof(zval *), NULL); 2278 uint string_key_len; local 2285 switch (zend_hash_get_current_key_ex(src, &string_key, &string_key_len, &num_key, 0, &pos)) { 2288 zend_hash_find(dest, string_key, string_key_len, (voi 2628 uint string_key_len; local 2646 zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, entry, sizeof(zval *), NULL); local 3996 uint string_key_len; local 4213 uint string_key_len; local 4259 zend_hash_update(Z_ARRVAL_P(return_value), string_key, string_key_len, operand, sizeof(zval *), NULL); local [all...] |
| /PHP_TRUNK/ext/curl/ |
| H A D | interface.c | 2544 uint string_key_len; local 2548 zend_hash_get_current_key_ex(postfields, &string_key, &string_key_len, &num_key, 0, NULL); 2553 string_key_len = strlen(string_key)+1; 2585 CURLFORM_NAMELENGTH, (long)string_key_len - 1, 2625 CURLFORM_NAMELENGTH, (long)string_key_len - 1, 2639 CURLFORM_NAMELENGTH, (long)string_key_len - 1,
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_builtin_functions.c | 574 uint string_key_len; local 609 switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_key_len, &num_key, 1, NULL)) { 611 add_get_index_stringl(return_value, 0, string_key, string_key_len-1, (void **) &inserted_pointer, 0);
|