Lines Matching refs:new_value

582 	tmp = _php_find_ps_module(ZSTR_VAL(new_value));  in PHP_INI_MH()
591 …p_error_docref(NULL, err_type, "Session save handler \"%s\" cannot be found", ZSTR_VAL(new_value)); in PHP_INI_MH()
617 tmp = _php_find_ps_serializer(ZSTR_VAL(new_value)); in PHP_INI_MH()
630 …_error_docref(NULL, err_type, "Serialization handler \"%s\" cannot be found", ZSTR_VAL(new_value)); in PHP_INI_MH()
649 if (memchr(ZSTR_VAL(new_value), '\0', ZSTR_LEN(new_value)) != NULL) { in PHP_INI_MH()
654 if ((p = strchr(ZSTR_VAL(new_value), ';'))) { in PHP_INI_MH()
661 p = ZSTR_VAL(new_value); in PHP_INI_MH()
669 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
680 …if ((!ZSTR_LEN(new_value) || is_numeric_string(ZSTR_VAL(new_value), ZSTR_LEN(new_value), NULL, NUL… in PHP_INI_MH()
691 …rror_docref(NULL, err_type, "session.name \"%s\" cannot be numeric or empty", ZSTR_VAL(new_value)); in PHP_INI_MH()
696 return OnUpdateStringUnempty(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
705 if (atol(ZSTR_VAL(new_value)) < 0) { in PHP_INI_MH()
709 return OnUpdateLongGEZero(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
718 return OnUpdateLong(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
727 return OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
736 return OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
748 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
768 val = ZEND_STRTOL(ZSTR_VAL(new_value), &endptr, 10); in PHP_INI_MH()
783 int tmp = ZEND_ATOL(ZSTR_VAL(new_value)); in PHP_INI_MH()
788 if(ZSTR_LEN(new_value) > 0 && ZSTR_VAL(new_value)[ZSTR_LEN(new_value)-1] == '%') { in PHP_INI_MH()
2512 static zend_result php_session_start_set_ini(zend_string *varname, zend_string *new_value) { in php_session_start_set_ini() argument
2519 ret = zend_alter_ini_entry_ex(buf.s, new_value, PHP_INI_USER, PHP_INI_STAGE_RUNTIME, 0); in php_session_start_set_ini()