Lines Matching refs:new_value

527 	tmp = _php_find_ps_module(ZSTR_VAL(new_value));  in PHP_INI_MH()
540 php_error_docref(NULL, err_type, "Cannot find save handler '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
557 tmp = _php_find_ps_serializer(ZSTR_VAL(new_value)); in PHP_INI_MH()
570 php_error_docref(NULL, err_type, "Cannot find serialization handler '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
584 if (!strncasecmp(ZSTR_VAL(new_value), "on", sizeof("on"))) { in PHP_INI_MH()
587 PS(use_trans_sid) = (zend_bool) atoi(ZSTR_VAL(new_value)); in PHP_INI_MH()
600 if (memchr(ZSTR_VAL(new_value), '\0', ZSTR_LEN(new_value)) != NULL) { in PHP_INI_MH()
605 if ((p = strchr(ZSTR_VAL(new_value), ';'))) { in PHP_INI_MH()
612 p = ZSTR_VAL(new_value); in PHP_INI_MH()
620 OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
628 …if ((!ZSTR_LEN(new_value) || is_numeric_string(ZSTR_VAL(new_value), ZSTR_LEN(new_value), NULL, NUL… in PHP_INI_MH()
639 …rror_docref(NULL, err_type, "session.name cannot be a numeric or empty '%s'", ZSTR_VAL(new_value)); in PHP_INI_MH()
644 OnUpdateStringUnempty(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
654 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
672 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
689 tmp = zend_atoi(ZSTR_VAL(new_value), (int)ZSTR_LEN(new_value)); in PHP_INI_MH()
694 if(ZSTR_LEN(new_value) > 0 && ZSTR_VAL(new_value)[ZSTR_LEN(new_value)-1] == '%') { in PHP_INI_MH()
2158 static int php_session_start_set_ini(zend_string *varname, zend_string *new_value) {
2165 ret = zend_alter_ini_entry_ex(buf.s, new_value, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0);