per_dir_entry     567 sapi/apache/mod_php5.c static int php_apache_alter_ini_entries(php_per_dir_entry *per_dir_entry TSRMLS_DC)
per_dir_entry     569 sapi/apache/mod_php5.c 	zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, per_dir_entry->htaccess?PHP_INI_STAGE_HTACCESS:PHP_INI_STAGE_ACTIVATE);
per_dir_entry     713 sapi/apache/mod_php5.c static void destroy_per_dir_entry(php_per_dir_entry *per_dir_entry)
per_dir_entry     715 sapi/apache/mod_php5.c 	free(per_dir_entry->key);
per_dir_entry     716 sapi/apache/mod_php5.c 	free(per_dir_entry->value);
per_dir_entry     722 sapi/apache/mod_php5.c static void copy_per_dir_entry(php_per_dir_entry *per_dir_entry)
per_dir_entry     724 sapi/apache/mod_php5.c 	php_per_dir_entry tmp = *per_dir_entry;
per_dir_entry     726 sapi/apache/mod_php5.c 	per_dir_entry->key = (char *) malloc(tmp.key_length+1);
per_dir_entry     727 sapi/apache/mod_php5.c 	memcpy(per_dir_entry->key, tmp.key, tmp.key_length);
per_dir_entry     728 sapi/apache/mod_php5.c 	per_dir_entry->key[per_dir_entry->key_length] = 0;
per_dir_entry     730 sapi/apache/mod_php5.c 	per_dir_entry->value = (char *) malloc(tmp.value_length+1);
per_dir_entry     731 sapi/apache/mod_php5.c 	memcpy(per_dir_entry->value, tmp.value, tmp.value_length);
per_dir_entry     732 sapi/apache/mod_php5.c 	per_dir_entry->value[per_dir_entry->value_length] = 0;
per_dir_entry     798 sapi/apache/mod_php5.c 	php_per_dir_entry per_dir_entry;
per_dir_entry     808 sapi/apache/mod_php5.c 	per_dir_entry.type = mode;
per_dir_entry     809 sapi/apache/mod_php5.c 	per_dir_entry.htaccess = ((cmd->override & (RSRC_CONF|ACCESS_CONF)) == 0);
per_dir_entry     815 sapi/apache/mod_php5.c 	per_dir_entry.key_length = strlen(arg1);
per_dir_entry     816 sapi/apache/mod_php5.c 	per_dir_entry.value_length = strlen(arg2);
per_dir_entry     818 sapi/apache/mod_php5.c 	per_dir_entry.key = (char *) malloc(per_dir_entry.key_length+1);
per_dir_entry     819 sapi/apache/mod_php5.c 	memcpy(per_dir_entry.key, arg1, per_dir_entry.key_length);
per_dir_entry     820 sapi/apache/mod_php5.c 	per_dir_entry.key[per_dir_entry.key_length] = 0;
per_dir_entry     822 sapi/apache/mod_php5.c 	per_dir_entry.value = (char *) malloc(per_dir_entry.value_length+1);
per_dir_entry     823 sapi/apache/mod_php5.c 	memcpy(per_dir_entry.value, arg2, per_dir_entry.value_length);
per_dir_entry     824 sapi/apache/mod_php5.c 	per_dir_entry.value[per_dir_entry.value_length] = 0;
per_dir_entry     826 sapi/apache/mod_php5.c 	zend_hash_update(conf, per_dir_entry.key, per_dir_entry.key_length, &per_dir_entry, sizeof(php_per_dir_entry), NULL);
per_dir_entry     617 sapi/apache_hooks/mod_php5.c static int php_apache_alter_ini_entries(php_per_dir_entry *per_dir_entry TSRMLS_DC)
per_dir_entry     619 sapi/apache_hooks/mod_php5.c 	zend_alter_ini_entry(per_dir_entry->key, per_dir_entry->key_length+1, per_dir_entry->value, per_dir_entry->value_length, per_dir_entry->type, PHP_INI_STAGE_ACTIVATE);
per_dir_entry     766 sapi/apache_hooks/mod_php5.c static void destroy_per_dir_entry(php_per_dir_entry *per_dir_entry)
per_dir_entry     768 sapi/apache_hooks/mod_php5.c 	free(per_dir_entry->key);
per_dir_entry     769 sapi/apache_hooks/mod_php5.c 	free(per_dir_entry->value);
per_dir_entry     775 sapi/apache_hooks/mod_php5.c static void copy_per_dir_entry(php_per_dir_entry *per_dir_entry)
per_dir_entry     777 sapi/apache_hooks/mod_php5.c 	php_per_dir_entry tmp = *per_dir_entry;
per_dir_entry     779 sapi/apache_hooks/mod_php5.c 	per_dir_entry->key = (char *) malloc(tmp.key_length+1);
per_dir_entry     780 sapi/apache_hooks/mod_php5.c 	memcpy(per_dir_entry->key, tmp.key, tmp.key_length);
per_dir_entry     781 sapi/apache_hooks/mod_php5.c 	per_dir_entry->key[per_dir_entry->key_length] = 0;
per_dir_entry     783 sapi/apache_hooks/mod_php5.c 	per_dir_entry->value = (char *) malloc(tmp.value_length+1);
per_dir_entry     784 sapi/apache_hooks/mod_php5.c 	memcpy(per_dir_entry->value, tmp.value, tmp.value_length);
per_dir_entry     785 sapi/apache_hooks/mod_php5.c 	per_dir_entry->value[per_dir_entry->value_length] = 0;
per_dir_entry     897 sapi/apache_hooks/mod_php5.c 	php_per_dir_entry per_dir_entry;
per_dir_entry     907 sapi/apache_hooks/mod_php5.c 	per_dir_entry.type = mode;
per_dir_entry     913 sapi/apache_hooks/mod_php5.c 	per_dir_entry.key_length = strlen(arg1);
per_dir_entry     914 sapi/apache_hooks/mod_php5.c 	per_dir_entry.value_length = strlen(arg2);
per_dir_entry     916 sapi/apache_hooks/mod_php5.c 	per_dir_entry.key = (char *) malloc(per_dir_entry.key_length+1);
per_dir_entry     917 sapi/apache_hooks/mod_php5.c 	memcpy(per_dir_entry.key, arg1, per_dir_entry.key_length);
per_dir_entry     918 sapi/apache_hooks/mod_php5.c 	per_dir_entry.key[per_dir_entry.key_length] = 0;
per_dir_entry     920 sapi/apache_hooks/mod_php5.c 	per_dir_entry.value = (char *) malloc(per_dir_entry.value_length+1);
per_dir_entry     921 sapi/apache_hooks/mod_php5.c 	memcpy(per_dir_entry.value, arg2, per_dir_entry.value_length);
per_dir_entry     922 sapi/apache_hooks/mod_php5.c 	per_dir_entry.value[per_dir_entry.value_length] = 0;
per_dir_entry     924 sapi/apache_hooks/mod_php5.c 	zend_hash_update(conf, per_dir_entry.key, per_dir_entry.key_length, &per_dir_entry, sizeof(php_per_dir_entry), NULL);