Lines Matching refs:ini_directives

109 	EG(ini_directives) = registered_zend_ini_directives;  in zend_ini_startup()
119 zend_ini_dtor(EG(ini_directives)); in zend_ini_shutdown()
124 ZEND_API void zend_ini_dtor(HashTable *ini_directives) /* {{{ */ in zend_ini_dtor() argument
126 zend_hash_destroy(ini_directives); in zend_ini_dtor()
127 free(ini_directives); in zend_ini_dtor()
175 EG(ini_directives) = (HashTable *) malloc(sizeof(HashTable)); in zend_copy_ini_directives()
176 …zend_hash_init_ex(EG(ini_directives), registered_zend_ini_directives->nNumOfElements, NULL, free_i… in zend_copy_ini_directives()
177 zend_hash_copy(EG(ini_directives), registered_zend_ini_directives, copy_ini_entry); in zend_copy_ini_directives()
205 zend_hash_sort(EG(ini_directives), ini_key_compare, 0); in zend_ini_sort_entries()
227 if (directives != EG(ini_directives)) { in zend_register_ini_entries()
228 directives = EG(ini_directives); in zend_register_ini_entries()
294 …zend_hash_apply_with_argument(EG(ini_directives), zend_ini_refresh_cache, (void *)(zend_intptr_t) … in zend_ini_refresh_caches()
337 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { in zend_alter_ini_entry_ex()
386 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL || in zend_restore_ini_entry()
425 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_long()
442 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_double()
459 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_string_ex()