Lines Matching refs:ini_name

1698 	zend_string *ini_name;  in PHP_FUNCTION()  local
1794 ini_name = ZSTR_INIT_LITERAL("session.cookie_lifetime", 0); in PHP_FUNCTION()
1795 result = zend_alter_ini_entry(ini_name, lifetime, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1796 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1803 ini_name = ZSTR_INIT_LITERAL("session.cookie_path", 0); in PHP_FUNCTION()
1804 result = zend_alter_ini_entry(ini_name, path, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1805 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1812 ini_name = ZSTR_INIT_LITERAL("session.cookie_domain", 0); in PHP_FUNCTION()
1813 result = zend_alter_ini_entry(ini_name, domain, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1814 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1821 ini_name = ZSTR_INIT_LITERAL("session.cookie_secure", 0); in PHP_FUNCTION()
1822 …result = zend_alter_ini_entry_chars(ini_name, secure ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE_R… in PHP_FUNCTION()
1823 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1830 ini_name = ZSTR_INIT_LITERAL("session.cookie_httponly", 0); in PHP_FUNCTION()
1831 …result = zend_alter_ini_entry_chars(ini_name, httponly ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE… in PHP_FUNCTION()
1832 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1839 ini_name = ZSTR_INIT_LITERAL("session.cookie_samesite", 0); in PHP_FUNCTION()
1840 result = zend_alter_ini_entry(ini_name, samesite, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1841 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1882 zend_string *ini_name; in PHP_FUNCTION() local
1901 ini_name = ZSTR_INIT_LITERAL("session.name", 0); in PHP_FUNCTION()
1902 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1903 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1912 zend_string *ini_name; in PHP_FUNCTION() local
1951 ini_name = ZSTR_INIT_LITERAL("session.save_handler", 0); in PHP_FUNCTION()
1952 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
1953 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
1973 zend_string *ini_name, *ini_val; in set_user_save_handler_ini() local
1975 ini_name = ZSTR_INIT_LITERAL("session.save_handler", 0); in set_user_save_handler_ini()
1978 zend_alter_ini_entry(ini_name, ini_val, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in set_user_save_handler_ini()
1981 zend_string_release_ex(ini_name, 0); in set_user_save_handler_ini()
2188 zend_string *ini_name; in PHP_FUNCTION() local
2207 ini_name = ZSTR_INIT_LITERAL("session.save_path", 0); in PHP_FUNCTION()
2208 zend_alter_ini_entry(ini_name, name, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2209 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
2426 zend_string *ini_name; in PHP_FUNCTION() local
2445 ini_name = ZSTR_INIT_LITERAL("session.cache_limiter", 0); in PHP_FUNCTION()
2446 zend_alter_ini_entry(ini_name, limiter, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2447 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()
2475 zend_string *ini_name = ZSTR_INIT_LITERAL("session.cache_expire", 0); in PHP_FUNCTION() local
2477 zend_alter_ini_entry(ini_name, ini_value, ZEND_INI_USER, ZEND_INI_STAGE_RUNTIME); in PHP_FUNCTION()
2478 zend_string_release_ex(ini_name, 0); in PHP_FUNCTION()