Lines Matching refs:config
49 HashTable config; member
64 …g((stderr, "Getting %s=%s for %p (%d)\n", name, value, dummy, zend_hash_num_elements(&d->config))); in real_value_hnd()
75 zend_hash_str_update_mem(&d->config, (char *) name, strlen(name), &e, sizeof(e)); in real_value_hnd()
160 ZEND_HASH_MAP_FOREACH_STR_KEY_VAL(&d->config, str, data) { in merge_php_config()
167 new_entry = zend_hash_add(&n->config, key, data); in merge_php_config()
172 zend_hash_copy(&n->config, &d->config, config_entry_ctor); in merge_php_config()
176 …zend_hash_merge_ex(&n->config, &e->config, config_entry_ctor, should_overwrite_per_dir_entry, NULL… in merge_php_config()
185 if ((pe = zend_hash_str_find_ptr(&d->config, name, name_len)) != NULL) { in get_php_config()
198 ZEND_HASH_MAP_FOREACH_STR_KEY_PTR(&d->config, str, data) { in apply_config()
221 zend_hash_destroy(&d->config); in destroy_php_config()
236 zend_hash_init(&newx->config, 0, NULL, config_entry_dtor, 1); in create_php_config()