Lines Matching refs:EG

103 	EG(ini_directives) = registered_zend_ini_directives;  in zend_ini_startup()
104 EG(modified_ini_directives) = NULL; in zend_ini_startup()
105 EG(error_reporting_ini_entry) = NULL; in zend_ini_startup()
112 zend_ini_dtor(EG(ini_directives)); in zend_ini_shutdown()
132 if (EG(modified_ini_directives)) { in zend_ini_deactivate()
135 ZEND_HASH_MAP_FOREACH_PTR(EG(modified_ini_directives), ini_entry) { in zend_ini_deactivate()
138 zend_hash_destroy(EG(modified_ini_directives)); in zend_ini_deactivate()
139 FREE_HASHTABLE(EG(modified_ini_directives)); in zend_ini_deactivate()
140 EG(modified_ini_directives) = NULL; in zend_ini_deactivate()
167 EG(modified_ini_directives) = NULL; in zend_copy_ini_directives()
168 EG(error_reporting_ini_entry) = NULL; in zend_copy_ini_directives()
169 EG(ini_directives) = (HashTable *) malloc(sizeof(HashTable)); in zend_copy_ini_directives()
170 …zend_hash_init(EG(ini_directives), registered_zend_ini_directives->nNumOfElements, NULL, free_ini_… in zend_copy_ini_directives()
171 zend_hash_copy(EG(ini_directives), registered_zend_ini_directives, copy_ini_entry); in zend_copy_ini_directives()
197 zend_hash_sort(EG(ini_directives), ini_key_compare, 0); in zend_ini_sort_entries()
219 if (directives != EG(ini_directives)) { in zend_register_ini_entries_ex()
220 directives = EG(ini_directives); in zend_register_ini_entries_ex()
288 ini_directives = EG(ini_directives); in zend_unregister_ini_entries_ex()
316 ZEND_HASH_MAP_FOREACH_PTR(EG(ini_directives), p) { in zend_ini_refresh_caches()
363 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { in zend_alter_ini_entry_ex()
380 if (!EG(modified_ini_directives)) { in zend_alter_ini_entry_ex()
381 ALLOC_HASHTABLE(EG(modified_ini_directives)); in zend_alter_ini_entry_ex()
382 zend_hash_init(EG(modified_ini_directives), 8, NULL, NULL, 0); in zend_alter_ini_entry_ex()
388 zend_hash_add_ptr(EG(modified_ini_directives), ini_entry->name, ini_entry); in zend_alter_ini_entry_ex()
412 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL || in zend_restore_ini_entry()
417 if (EG(modified_ini_directives)) { in zend_restore_ini_entry()
419 zend_hash_del(EG(modified_ini_directives), name); in zend_restore_ini_entry()
451 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_long()
468 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_double()
485 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_string_ex()
525 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_str_ex()
564 ini_entry = zend_hash_find_ptr(EG(ini_directives), name); in zend_ini_get_value()