Lines Matching refs:new_value
546 tmp = _php_find_ps_module(ZSTR_VAL(new_value)); in PHP_INI_MH()
555 …p_error_docref(NULL, err_type, "Session save handler \"%s\" cannot be found", ZSTR_VAL(new_value)); in PHP_INI_MH()
581 tmp = _php_find_ps_serializer(ZSTR_VAL(new_value)); in PHP_INI_MH()
594 …_error_docref(NULL, err_type, "Serialization handler \"%s\" cannot be found", ZSTR_VAL(new_value)); in PHP_INI_MH()
609 if (zend_string_equals_literal_ci(new_value, "on")) { in PHP_INI_MH()
612 PS(use_trans_sid) = (bool) atoi(ZSTR_VAL(new_value)); in PHP_INI_MH()
629 if (memchr(ZSTR_VAL(new_value), '\0', ZSTR_LEN(new_value)) != NULL) { in PHP_INI_MH()
634 if ((p = strchr(ZSTR_VAL(new_value), ';'))) { in PHP_INI_MH()
641 p = ZSTR_VAL(new_value); in PHP_INI_MH()
649 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
660 …if ((!ZSTR_LEN(new_value) || is_numeric_string(ZSTR_VAL(new_value), ZSTR_LEN(new_value), NULL, NUL… in PHP_INI_MH()
671 …rror_docref(NULL, err_type, "session.name \"%s\" cannot be numeric or empty", ZSTR_VAL(new_value)); in PHP_INI_MH()
676 return OnUpdateStringUnempty(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
685 if (atol(ZSTR_VAL(new_value)) < 0) { in PHP_INI_MH()
689 return OnUpdateLongGEZero(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
698 return OnUpdateLong(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
707 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
716 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
728 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
748 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
766 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
774 int tmp = ZEND_ATOL(ZSTR_VAL(new_value)); in PHP_INI_MH()
779 if(ZSTR_LEN(new_value) > 0 && ZSTR_VAL(new_value)[ZSTR_LEN(new_value)-1] == '%') { in PHP_INI_MH()
2447 static int php_session_start_set_ini(zend_string *varname, zend_string *new_value) { in php_session_start_set_ini() argument
2454 ret = zend_alter_ini_entry_ex(buf.s, new_value, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0); in php_session_start_set_ini()