Lines Matching refs:new_value

1238 	no_language = mbfl_name2no_language(ZSTR_VAL(new_value));  in PHP_INI_MH()
1255 if (!new_value) { in PHP_INI_MH()
1264 …if (FAILURE == php_mb_parse_encoding_list(ZSTR_VAL(new_value), ZSTR_LEN(new_value), &list, &size, … in PHP_INI_MH()
1277 static int _php_mb_ini_mbstring_http_input_set(const char *new_value, size_t new_value_length) { in _php_mb_ini_mbstring_http_input_set() argument
1280 if (FAILURE == php_mb_parse_encoding_list(new_value, new_value_length, &list, &size, 1)) { in _php_mb_ini_mbstring_http_input_set()
1298 if (!new_value || !ZSTR_VAL(new_value)) { in PHP_INI_MH()
1306 return _php_mb_ini_mbstring_http_input_set(ZSTR_VAL(new_value), ZSTR_LEN(new_value)); in PHP_INI_MH()
1310 static int _php_mb_ini_mbstring_http_output_set(const char *new_value) { in _php_mb_ini_mbstring_http_output_set() argument
1311 const mbfl_encoding *encoding = mbfl_name2encoding(new_value); in _php_mb_ini_mbstring_http_output_set()
1328 if (new_value == NULL || ZSTR_LEN(new_value) == 0) { in PHP_INI_MH()
1335 return _php_mb_ini_mbstring_http_output_set(ZSTR_VAL(new_value)); in PHP_INI_MH()
1340 static int _php_mb_ini_mbstring_internal_encoding_set(const char *new_value, size_t new_value_lengt… in _php_mb_ini_mbstring_internal_encoding_set() argument
1344 if (!new_value || !new_value_length || !(encoding = mbfl_name2encoding(new_value))) { in _php_mb_ini_mbstring_internal_encoding_set()
1352 const char *enc_name = new_value; in _php_mb_ini_mbstring_internal_encoding_set()
1358 php_mb_regex_set_mbctype(new_value); in _php_mb_ini_mbstring_internal_encoding_set()
1372 if (OnUpdateString(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage) == FAILURE) { in PHP_INI_MH()
1376 if (new_value && ZSTR_LEN(new_value)) { in PHP_INI_MH()
1378 return _php_mb_ini_mbstring_internal_encoding_set(ZSTR_VAL(new_value), ZSTR_LEN(new_value)); in PHP_INI_MH()
1393 if (new_value != NULL) { in PHP_INI_MH()
1394 if (strcasecmp("none", ZSTR_VAL(new_value)) == 0) { in PHP_INI_MH()
1397 } else if (strcasecmp("long", ZSTR_VAL(new_value)) == 0) { in PHP_INI_MH()
1400 } else if (strcasecmp("entity", ZSTR_VAL(new_value)) == 0) { in PHP_INI_MH()
1406 if (ZSTR_LEN(new_value) > 0) { in PHP_INI_MH()
1407 c = strtol(ZSTR_VAL(new_value), &endptr, 0); in PHP_INI_MH()
1428 if (new_value == NULL) { in PHP_INI_MH()
1432 OnUpdateBool(entry, new_value, mh_arg1, mh_arg2, mh_arg3, stage); in PHP_INI_MH()
1452 if (!new_value) { in PHP_INI_MH()
1453 new_value = entry->orig_value; in PHP_INI_MH()
1455 tmp = php_trim(new_value, NULL, 0, 3); in PHP_INI_MH()