Lines Matching refs:new_value

575 	tmp = _php_find_ps_module(new_value TSRMLS_CC);  in PHP_INI_MH()
588 php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find save handler '%s'", new_value); in PHP_INI_MH()
605 tmp = _php_find_ps_serializer(new_value TSRMLS_CC); in PHP_INI_MH()
618 php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find serialization handler '%s'", new_value); in PHP_INI_MH()
632 if (!strncasecmp(new_value, "on", sizeof("on"))) { in PHP_INI_MH()
635 PS(use_trans_sid) = (zend_bool) atoi(new_value); in PHP_INI_MH()
648 if (memchr(new_value, '\0', new_value_length) != NULL) { in PHP_INI_MH()
653 if ((p = strchr(new_value, ';'))) { in PHP_INI_MH()
660 p = new_value; in PHP_INI_MH()
668 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
676 if ((!new_value_length || is_numeric_string(new_value, new_value_length, NULL, NULL, 0))) { in PHP_INI_MH()
687 …rror_docref(NULL TSRMLS_CC, err_type, "session.name cannot be a numeric or empty '%s'", new_value); in PHP_INI_MH()
692 …OnUpdateStringUnempty(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
706 val = strtol(new_value, &endptr, 10); in PHP_INI_MH()
715 strncasecmp(new_value, "md5", sizeof("md5") - 1) == 0) { in PHP_INI_MH()
722 strncasecmp(new_value, "sha1", sizeof("sha1") - 1) == 0) { in PHP_INI_MH()
730 php_hash_ops *ops = (php_hash_ops*)php_hash_fetch_ops(new_value, new_value_length); in PHP_INI_MH()
748 tmp = zend_atoi(new_value, new_value_length); in PHP_INI_MH()
753 if(new_value_length > 0 && new_value[new_value_length-1] == '%') { in PHP_INI_MH()
778 smart_str_sets(p, new_value); in ZEND_INI_MH()