Lines Matching refs:ini_directives

96 	EG(ini_directives) = registered_zend_ini_directives;  in zend_ini_startup()
105 zend_ini_dtor(EG(ini_directives)); in zend_ini_shutdown()
109 ZEND_API void zend_ini_dtor(HashTable *ini_directives) /* {{{ */ in zend_ini_dtor() argument
111 zend_hash_destroy(ini_directives); in zend_ini_dtor()
112 free(ini_directives); in zend_ini_dtor()
162 EG(ini_directives) = (HashTable *) malloc(sizeof(HashTable)); in zend_copy_ini_directives()
163 …zend_hash_init(EG(ini_directives), registered_zend_ini_directives->nNumOfElements, NULL, free_ini_… in zend_copy_ini_directives()
164 zend_hash_copy(EG(ini_directives), registered_zend_ini_directives, copy_ini_entry); in zend_copy_ini_directives()
190 zend_hash_sort(EG(ini_directives), ini_key_compare, 0); in zend_ini_sort_entries()
212 if (directives != EG(ini_directives)) { in zend_register_ini_entries()
213 directives = EG(ini_directives); in zend_register_ini_entries()
269 ZEND_HASH_FOREACH_PTR(EG(ini_directives), p) { in zend_ini_refresh_caches()
316 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { in zend_alter_ini_entry_ex()
365 if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL || in zend_restore_ini_entry()
404 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_long()
421 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_double()
438 ini_entry = zend_hash_str_find_ptr(EG(ini_directives), name, name_length); in zend_ini_string_ex()
477 ini_entry = zend_hash_find_ptr(EG(ini_directives), name); in zend_ini_get_value()