Searched defs:str_index (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_4/Zend/ |
| 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; 1213 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 1240 if (IS_INTERNED(str_index)) { 1241 h = INTERNED_HASH(str_index); 1243 h = zend_inline_hash_func(str_index, str_length); 1246 if (p->arKey == str_index || 1249 memcmp(p->arKey, str_index, str_length) == 0)) { 1256 if (q->arKey == str_index || [all...] |
| H A D | zend_execute_API.c | 586 char *str_index; local 613 if (zend_hash_get_current_key_ex(Z_ARRVAL_P(p), &str_index, &str_index_len, &num_index, 0, NULL) != HASH_KEY_IS_STRING) { 617 if (!zend_get_constant_ex(str_index, str_index_len - 3, &const_value, scope, str_index[str_index_len - 2] TSRMLS_CC)) { 619 const char *save = str_index; 620 if ((colon = (char*)zend_memrchr(str_index, ':', str_index_len - 3))) { 621 zend_error(E_ERROR, "Undefined class constant '%s'", str_index); 622 str_index_len -= ((colon - str_index) + 1); 623 str_index = colon; 625 if (str_index[str_index_le [all...] |
| /PHP_5_4/ext/soap/ |
| H A D | php_encoding.c | 3615 char *str_index; local 3618 if (zend_hash_get_current_key(Z_ARRVAL_P(array), &str_index, &num_index, 0) == HASH_KEY_IS_STRING ||
|
| /PHP_5_4/ext/standard/ |
| H A D | proc_open.c | 508 char *str_index; local 512 str_index = NULL; 513 zend_hash_get_current_key_ex(Z_ARRVAL_P(descriptorspec), &str_index, NULL, &nindex, 0, &pos); local 515 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_5_4/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_5_4/ext/spl/ |
| H A D | spl_fixedarray.c | 673 char *str_index; local 681 if (zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0) != HASH_KEY_IS_LONG || (long)num_index < 0) { 705 zend_hash_get_current_key(Z_ARRVAL_P(data), &str_index, &num_index, 0); local
|
Completed in 25 milliseconds