Searched refs:configuration_hash (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_4/main/ |
| H A D | SAPI.h | 267 void (*ini_defaults)(HashTable *configuration_hash);
|
| H A D | php_ini.c | 67 static HashTable configuration_hash; variable 237 /* All other entries are added into either configuration_hash or active ini section array */ 375 if (zend_hash_init(&configuration_hash, 0, NULL, (dtor_func_t) config_zval_dtor, 1) == FAILURE) { 380 sapi_module.ini_defaults(&configuration_hash); 579 zend_parse_ini_file(&fh, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t) php_ini_parser_cb, &configuration_hash TSRMLS_CC); 589 zend_hash_update(&configuration_hash, "cfg_file_path", sizeof("cfg_file_path"), (void *) &tmp, sizeof(zval), NULL); 642 if (zend_parse_ini_file(&fh2, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t) php_ini_parser_cb, &configuration_hash TSRMLS_CC) == SUCCESS) { 681 zend_parse_ini_string(sapi_module.ini_entries, 1, ZEND_INI_SCANNER_NORMAL, (zend_ini_parser_cb_t) php_ini_parser_cb, &configuration_hash TSRMLS_CC); 692 zend_hash_destroy(&configuration_hash); 799 /* Walk through each directory in path and apply any found per-dir-system-configuration from configuration_hash */ [all...] |
| /PHP_5_4/sapi/cli/ |
| H A D | php_cli.c | 428 zend_hash_update(configuration_hash, name, sizeof(name), &tmp, sizeof(zval), NULL);\ 430 static void sapi_cli_ini_defaults(HashTable *configuration_hash) argument
|
| /PHP_5_4/sapi/litespeed/ |
| H A D | lsapi_main.c | 107 zend_hash_update(configuration_hash, name, sizeof(name), tmp, sizeof(zval), (void**)&entry);\ 110 static void sapi_lsapi_ini_defaults(HashTable *configuration_hash) argument
|
Completed in 11 milliseconds