Home
last modified time | relevance | path

Searched refs:configuration_hash (Results 1 – 5 of 5) sorted by relevance

/php-src/main/
H A Dphp_ini.c60 static HashTable configuration_hash; variable
419 zend_hash_init(&configuration_hash, 8, NULL, config_zval_dtor, 1); in php_init_config()
422 sapi_module.ini_defaults(&configuration_hash); in php_init_config()
734 zend_hash_destroy(&configuration_hash); in php_shutdown_config()
853 if ((tmp2 = zend_hash_str_find(&configuration_hash, path, strlen(path))) != NULL) {
877 if ((tmp = zend_hash_str_find(&configuration_hash, host, host_len)) != NULL) {
887 return zend_hash_find(&configuration_hash, name);
894 return zend_hash_str_find(&configuration_hash, name, name_length);
903 if ((tmp = zend_hash_str_find(&configuration_hash, varname, strlen(varname))) == NULL) {
917 if ((tmp = zend_hash_str_find(&configuration_hash, varname, strlen(varname))) == NULL) {
[all …]
H A DSAPI.h284 void (*ini_defaults)(HashTable *configuration_hash);
/php-src/sapi/embed/
H A DREADME.md128 static void example_ini_defaults(HashTable *configuration_hash)
132 zend_hash_str_update(configuration_hash, ZEND_STRL("error_prepend_string"), &ini_value);
/php-src/sapi/cli/
H A Dphp_cli.c419 zend_hash_str_update(configuration_hash, name, sizeof(name)-1, &tmp);\
421 static void sapi_cli_ini_defaults(HashTable *configuration_hash) in sapi_cli_ini_defaults() argument
/php-src/sapi/litespeed/
H A Dlsapi_main.c113 zend_hash_update(configuration_hash, name, sizeof(name), tmp, sizeof(zval), (void**)&entry);\
116 static void sapi_lsapi_ini_defaults(HashTable *configuration_hash) in sapi_lsapi_ini_defaults() argument

Completed in 21 milliseconds