Lines Matching refs:ini_name

1683 	zend_string *ini_name;  in PHP_FUNCTION()  local
1778 ini_name = ZSTR_INIT_LITERAL("session.cookie_lifetime", 0); in PHP_FUNCTION()
1779 result = zend_alter_ini_entry(ini_name, lifetime, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1780 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1787 ini_name = ZSTR_INIT_LITERAL("session.cookie_path", 0); in PHP_FUNCTION()
1788 result = zend_alter_ini_entry(ini_name, path, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1789 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1796 ini_name = ZSTR_INIT_LITERAL("session.cookie_domain", 0); in PHP_FUNCTION()
1797 result = zend_alter_ini_entry(ini_name, domain, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1798 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1805 ini_name = ZSTR_INIT_LITERAL("session.cookie_secure", 0); in PHP_FUNCTION()
1806 …result = zend_alter_ini_entry_chars(ini_name, secure ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE_R… in PHP_FUNCTION()
1807 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1814 ini_name = ZSTR_INIT_LITERAL("session.cookie_httponly", 0); in PHP_FUNCTION()
1815 …result = zend_alter_ini_entry_chars(ini_name, httponly ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE… in PHP_FUNCTION()
1816 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1823 ini_name = ZSTR_INIT_LITERAL("session.cookie_samesite", 0); in PHP_FUNCTION()
1824 result = zend_alter_ini_entry(ini_name, samesite, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1825 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1866 zend_string *ini_name; in PHP_FUNCTION() local
1885 ini_name = ZSTR_INIT_LITERAL("session.name", 0); in PHP_FUNCTION()
1886 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1887 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1896 zend_string *ini_name; in PHP_FUNCTION() local
1935 ini_name = ZSTR_INIT_LITERAL("session.save_handler", 0); in PHP_FUNCTION()
1936 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1937 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1957 zend_string *ini_name, *ini_val; in set_user_save_handler_ini() local
1959 ini_name = ZSTR_INIT_LITERAL("session.save_handler", 0); in set_user_save_handler_ini()
1962 zend_alter_ini_entry(ini_name, ini_val, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in set_user_save_handler_ini()
1965 zend_string_release_ex(ini_name, 0); in set_user_save_handler_ini()
2177 zend_string *ini_name; in PHP_FUNCTION() local
2196 ini_name = ZSTR_INIT_LITERAL("session.save_path", 0); in PHP_FUNCTION()
2197 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2198 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
2415 zend_string *ini_name; in PHP_FUNCTION() local
2434 ini_name = ZSTR_INIT_LITERAL("session.cache_limiter", 0); in PHP_FUNCTION()
2435 zend_alter_ini_entry(ini_name, limiter, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2436 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
2464 zend_string *ini_name = ZSTR_INIT_LITERAL("session.cache_expire", 0); in PHP_FUNCTION() local
2466 zend_alter_ini_entry(ini_name, ini_value, ZEND_INI_USER, ZEND_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2467 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()