Lines Matching refs:data
143 php_dir_entry *data; in merge_php_config() local
161 zend_hash_get_current_data(&d->config, (void **) &data); in merge_php_config()
163 if (pe->status >= data->status) continue; in merge_php_config()
165 phpapdebug((stderr, "ADDING/OVERWRITING %s (%d vs. %d)\n", str, data->status, pe?pe->status:-1)); in merge_php_config()
166 zend_hash_update(&n->config, str, str_len, data, sizeof(*data), NULL); in merge_php_config()
189 php_dir_entry *data; in apply_config() local
195 if (zend_hash_get_current_data(&d->config, (void **) &data) == SUCCESS) { in apply_config()
196 phpapdebug((stderr, "APPLYING (%s)(%s)\n", str, data->value)); in apply_config()
197 …if (zend_alter_ini_entry(str, str_len, data->value, data->value_len, data->status, data->htaccess?… in apply_config()
214 static apr_status_t destroy_php_config(void *data) in destroy_php_config() argument
216 php_conf_rec *d = data; in destroy_php_config()
218 phpapdebug((stderr, "Destroying config %p\n", data)); in destroy_php_config()