Lines Matching refs:new_value

523 	tmp = _php_find_ps_module(new_value TSRMLS_CC);  in PHP_INI_MH()
536 php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find save handler '%s'", new_value); in PHP_INI_MH()
553 tmp = _php_find_ps_serializer(new_value TSRMLS_CC); in PHP_INI_MH()
566 php_error_docref(NULL TSRMLS_CC, err_type, "Cannot find serialization handler '%s'", new_value); in PHP_INI_MH()
580 if (!strncasecmp(new_value, "on", sizeof("on"))) { in PHP_INI_MH()
583 PS(use_trans_sid) = (zend_bool) atoi(new_value); in PHP_INI_MH()
596 if (memchr(new_value, '\0', new_value_length) != NULL) { in PHP_INI_MH()
601 if ((p = strchr(new_value, ';'))) { in PHP_INI_MH()
608 p = new_value; in PHP_INI_MH()
616 OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC); in PHP_INI_MH()
624 if ((!new_value_length || is_numeric_string(new_value, new_value_length, NULL, NULL, 0))) { in PHP_INI_MH()
635 …rror_docref(NULL TSRMLS_CC, err_type, "session.name cannot be a numeric or empty '%s'", new_value); in PHP_INI_MH()
640 …OnUpdateStringUnempty(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_… in PHP_INI_MH()
654 val = strtol(new_value, &endptr, 10); in PHP_INI_MH()
663 strncasecmp(new_value, "md5", sizeof("md5") - 1) == 0) { in PHP_INI_MH()
670 strncasecmp(new_value, "sha1", sizeof("sha1") - 1) == 0) { in PHP_INI_MH()
678 php_hash_ops *ops = (php_hash_ops*)php_hash_fetch_ops(new_value, new_value_length); in PHP_INI_MH()
696 tmp = zend_atoi(new_value, new_value_length); in PHP_INI_MH()
701 if(new_value_length > 0 && new_value[new_value_length-1] == '%') { in PHP_INI_MH()
726 smart_str_sets(p, new_value); in ZEND_INI_MH()