Searched defs:setting (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | crypt_blowfish.c | 649 static char *BF_crypt(const char *key, const char *setting, argument 678 if (setting[0] != '$' || 679 setting[1] != '2' || 680 setting[2] < 'a' || setting[2] > 'z' || 681 !flags_by_subtype[(unsigned int)(unsigned char)setting[2] - 'a'] || 682 setting[3] != '$' || 683 setting[4] < '0' || setting[4] > '3' || 684 setting[ 784 _crypt_output_magic(const char *setting, char *output, int size) argument 819 php_crypt_blowfish_rn(const char *key, const char *setting, char *output, int size) argument [all...] |
| H A D | crypt_freesec.c | 616 _crypt_extended_r(const char *key, const char *setting, argument 639 if (*setting == _PASSWORD_EFMT1) { 642 * setting - underscore, 4 chars of count, 4 chars of salt 646 int value = ascii_to_bin(setting[i]); 647 if (ascii64[value] != setting[i]) 655 int value = ascii_to_bin(setting[i]); 656 if (ascii64[value] != setting[i]) 678 memcpy(data->output, setting, 9); 684 * setting - 2 chars of salt 689 if (ascii_is_unsafe(setting[ 731 _crypt_extended(const char *key, const char *setting) argument [all...] |
| H A D | basic_functions.c | 663 ZEND_ARG_INFO(0, setting) 3425 /* VS.Net has a bug in putenv() when setting a variable that 3428 * We try to avoid this by setting our own value first */ 4069 /* {{{ proto bool putenv(string setting) 4073 char *setting; local 4076 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &setting, &setting_len) == FAILURE) { 4089 pe.putenv_string = estrndup(setting, setting_len); 4090 pe.key = estrndup(setting, setting_len); 4639 Get the current active configuration setting of magic_quotes_runtime */ 4650 Get the current active configuration setting o [all...] |
| /PHP_5_5/ |
| H A D | server-tests.php | 75 | You can still test older extecutables by setting | 103 foreach($settings as $setting) { 104 if (strpos($setting, '=')!==false) { 105 $setting = explode("=", $setting, 2); variable 106 $name = trim($setting[0]); 107 $value = trim($setting[1]); 670 $this->error("Invalid argument setting for argument $opt, should be [{$this->xargs[$opt][1]}]\n"); 705 # initialize the default setting 1188 // ini setting o [all...] |
| H A D | run-tests.php | 1448 //$ini_overwrites[] = 'setting=value'; 2247 foreach($settings as $setting) { 2249 if (strpos($setting, '=') !== false) { 2250 $setting = explode("=", $setting, 2); variable 2251 $name = trim($setting[0]); 2252 $value = trim($setting[1]);
|
Completed in 23 milliseconds