| /PHP_TRUNK/ext/intl/msgformat/ |
| H A D | msgformat_helpers.cpp | 390 char *str_index; local 397 args, &str_index, &str_len, &num_index, 0, &pos), 422 intl_stringFromChar(key, str_index, str_len-1, &err.code); 427 "Invalid UTF-8 data in argument key: '%s'", str_index);
|
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fastcgi.c | 596 char * str_index; local 613 while ((key_type = zend_hash_get_current_key_ex(req->env, &str_index, &str_length, &num_index, 0, &pos)) != HASH_KEY_NON_EXISTANT) { 619 if (zend_hash_find(&fcgi_mgmt_vars, str_index, str_length, (void**) &value) != SUCCESS) { 643 memcpy(p, str_index, str_length);
|
| /PHP_TRUNK/ext/standard/ |
| H A D | proc_open.c | 521 char *str_index; local 525 str_index = NULL; 526 zend_hash_get_current_key_ex(Z_ARRVAL_P(descriptorspec), &str_index, NULL, &nindex, 0, &pos); local 528 if (str_index) {
|
| H A D | string.c | 2412 char *str_index = NULL; local 2566 if (zend_hash_get_current_key_ex(Z_ARRVAL_PP(str), &str_index, &str_index_len, &num_index, 0, &pos_str) == HASH_KEY_IS_STRING) { 2567 add_assoc_stringl_ex(return_value, str_index, str_index_len, result, result_len, 0);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_hash.h | 178 ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos); 184 ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos); 200 #define zend_hash_get_current_key(ht, str_index, num_index, duplicate) \ 201 zend_hash_get_current_key_ex(ht, str_index, NULL, num_index, duplicate, NULL) 212 #define zend_hash_update_current_key(ht, key_type, str_index, str_length, num_index) \ 213 zend_hash_update_current_key_ex(ht, key_type, str_index, str_length, num_index, HASH_UPDATE_KEY_ANYWAY, NULL)
|
| H A D | zend_execute_API.c | 565 char *str_index; local 592 if (zend_hash_get_current_key_ex(Z_ARRVAL_P(p), &str_index, &str_index_len, &num_index, 0, NULL) != HASH_KEY_IS_STRING) { 596 if (!zend_get_constant_ex(str_index, str_index_len - 3, &const_value, scope, str_index[str_index_len - 2] TSRMLS_CC)) { 598 const char *save = str_index; 599 if ((colon = (char*)zend_memrchr(str_index, ':', str_index_len - 3))) { 600 zend_error(E_ERROR, "Undefined class constant '%s'", str_index); 601 str_index_len -= ((colon - str_index) + 1); 602 str_index = colon; 604 if (str_index[str_index_le [all...] |
| H A D | zend_hash.c | 1147 ZEND_API int zend_hash_get_current_key_ex(const HashTable *ht, char **str_index, uint *str_length, ulong *num_index, zend_bool duplicate, HashPosition *pos) argument 1158 *str_index = estrndup(p->arKey, p->nKeyLength - 1); 1160 *str_index = (char*)p->arKey; 1231 ZEND_API int zend_hash_update_current_key_ex(HashTable *ht, int key_type, const char *str_index, uint str_length, ulong num_index, int mode, HashPosition *pos) argument 1258 if (IS_INTERNED(str_index)) { 1259 h = INTERNED_HASH(str_index); 1261 h = zend_inline_hash_func(str_index, str_length); 1264 if (p->arKey == str_index || 1267 memcmp(p->arKey, str_index, str_length) == 0)) { 1274 if (q->arKey == str_index || [all...] |
| /PHP_TRUNK/ext/soap/ |
| H A D | php_encoding.c | 3606 char *str_index; local 3609 if (zend_hash_get_current_key(Z_ARRVAL_P(array), &str_index, &num_index, 0) == HASH_KEY_IS_STRING ||
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl_fixedarray.c | 705 char *str_index; local 713 if (zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0) != HASH_KEY_IS_LONG || (long)num_index < 0) { 737 zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0); local
|