Searched defs:target_hash (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/mbstring/ |
| H A D | mbstring.c | 787 HashTable *target_hash; local 793 target_hash = Z_ARRVAL_P(array); 794 zend_hash_internal_pointer_reset(target_hash); 795 i = zend_hash_num_elements(target_hash); 803 if (zend_hash_get_current_data(target_hash, (void **) &hash_entry) == FAILURE) { 828 zend_hash_move_forward(target_hash); 3046 HashTable *target_hash; local 3055 target_hash = Z_ARRVAL_P(arg_old); 3056 zend_hash_internal_pointer_reset(target_hash); 3057 i = zend_hash_num_elements(target_hash); 3493 HashTable *target_hash; local 3712 HashTable *target_hash; local [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | proc_open.c | 86 HashTable *target_hash; local 105 target_hash = HASH_OF(environment); 106 if (!target_hash) { 111 for (zend_hash_internal_pointer_reset_ex(target_hash, &pos); 112 zend_hash_get_current_data_ex(target_hash, (void **) &element, &pos) == SUCCESS; 113 zend_hash_move_forward_ex(target_hash, &pos)) { 123 switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_length, &num_key, 0, &pos)) { 138 for (zend_hash_internal_pointer_reset_ex(target_hash, &pos); 139 zend_hash_get_current_data_ex(target_hash, (void **) &element, &pos) == SUCCESS; 140 zend_hash_move_forward_ex(target_hash, [all...] |
| H A D | array.c | 1041 static int php_array_walk(HashTable *target_hash, zval *userdata, int recursive TSRMLS_DC) /* {{{ */ argument 1060 zend_hash_internal_pointer_reset(target_hash); 1061 while (!EG(exception) && zend_hash_get_current_data(target_hash, (void **)&args[0]) == SUCCESS) { 1091 zend_hash_get_current_key_zval(target_hash, key); 1111 zend_hash_move_forward(target_hash); 2836 /* create and sort array with pointers to the target_hash buckets */
|
| /PHP_TRUNK/main/ |
| H A D | php_ini.c | 210 static void php_ini_parser_cb(zval *arg1, zval *arg2, zval *arg3, int callback_type, HashTable *target_hash) argument 219 active_hash = target_hash; 327 if (zend_hash_find(target_hash, key, key_len + 1, (void **) &entry) == FAILURE) { 335 zend_hash_update(target_hash, key, key_len + 1, section_arr, sizeof(zval), (void **) &entry); 736 PHPAPI int php_parse_user_ini_file(const char *dirname, char *ini_filename, HashTable *target_hash TSRMLS_DC) 754 if (zend_parse_ini_file(&fh, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t) php_ini_parser_cb, target_hash TSRMLS_CC) == SUCCESS) {
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_builtin_functions.c | 577 HashTable *target_hash; local 583 target_hash = HASH_OF(array); 584 if (!target_hash) { 588 if (zend_hash_get_current_data(target_hash, (void **) &entry_ptr)==FAILURE) { 609 switch (zend_hash_get_current_key_ex(target_hash, &string_key, &string_key_len, &num_key, 1, NULL)) { 619 zend_hash_move_forward(target_hash);
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 562 HashTable *target_hash; local 568 target_hash = HASH_OF(arr); 570 for (zend_hash_internal_pointer_reset(target_hash); 571 zend_hash_get_current_data(target_hash, (void**)&ent) == SUCCESS; 572 zend_hash_move_forward(target_hash)) { 574 type = zend_hash_get_current_key(target_hash, &key, &idx, 0); 592 snprintf(tmp_buf, sizeof(tmp_buf), WDDX_ARRAY_S, zend_hash_num_elements(target_hash)); 596 for (zend_hash_internal_pointer_reset(target_hash); 597 zend_hash_get_current_data(target_hash, (void**)&ent) == SUCCESS; 598 zend_hash_move_forward(target_hash)) { 695 HashTable *target_hash; local 918 HashTable *target_hash; local [all...] |
Completed in 21 milliseconds