Lines Matching refs:new_value

539 	tmp = _php_find_ps_module(ZSTR_VAL(new_value));  in PHP_INI_MH()
552 php_error_docref(NULL, err_type, "Cannot find save handler '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
578 tmp = _php_find_ps_serializer(ZSTR_VAL(new_value)); in PHP_INI_MH()
591 php_error_docref(NULL, err_type, "Cannot find serialization handler '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
606 if (!strncasecmp(ZSTR_VAL(new_value), "on", sizeof("on"))) { in PHP_INI_MH()
609 PS(use_trans_sid) = (zend_bool) atoi(ZSTR_VAL(new_value)); in PHP_INI_MH()
626 if (memchr(ZSTR_VAL(new_value), '\0', ZSTR_LEN(new_value)) != NULL) { in PHP_INI_MH()
631 if ((p = strchr(ZSTR_VAL(new_value), ';'))) { in PHP_INI_MH()
638 p = ZSTR_VAL(new_value); in PHP_INI_MH()
646 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
657 …if ((!ZSTR_LEN(new_value) || is_numeric_string(ZSTR_VAL(new_value), ZSTR_LEN(new_value), NULL, NUL… in PHP_INI_MH()
668 …rror_docref(NULL, err_type, "session.name cannot be a numeric or empty '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
673 return OnUpdateStringUnempty(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
682 if (atol(ZSTR_VAL(new_value)) < 0) { in PHP_INI_MH()
686 return OnUpdateLongGEZero(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
695 return OnUpdateLong(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
704 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
713 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
725 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
745 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
763 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
772 tmp = zend_atoi(ZSTR_VAL(new_value), ZSTR_LEN(new_value)); in PHP_INI_MH()
777 if(ZSTR_LEN(new_value) > 0 && ZSTR_VAL(new_value)[ZSTR_LEN(new_value)-1] == '%') { in PHP_INI_MH()
2430 static int php_session_start_set_ini(zend_string *varname, zend_string *new_value) { in php_session_start_set_ini() argument
2437 ret = zend_alter_ini_entry_ex(buf.s, new_value, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0); in php_session_start_set_ini()