Searched refs:setting (Results 1 - 10 of 10) sorted by relevance
| /PHP_TRUNK/ext/mysqli/tests/ |
| H A D | connect.inc | 24 /* Development setting: test experimal features and/or feature requests that never worked before? */ 85 * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)? 106 * @param enable_env_flags Enable setting of connection flags through env(MYSQL_TEST_CONNECT_FLAGS)
|
| /PHP_TRUNK/ext/pdo_mysql/tests/ |
| H A D | mysql_pdo_test.inc | 58 // no real parser - any excotic setting can fool us
|
| /PHP_TRUNK/ext/spl/internal/ |
| H A D | splfileobject.inc | 240 * @return current setting for max line
|
| /PHP_TRUNK/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_blowfish.h | 22 extern int _crypt_output_magic(const char *setting, char *output, int size);
24 extern char *php_crypt_blowfish_rn(const char *key, const char *setting,
|
| 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 | crypt_freesec.h | 46 char *_crypt_extended_r(const char *key, const char *setting,
|
| H A D | basic_functions.c | 663 ZEND_ARG_INFO(0, setting) 3426 /* VS.Net has a bug in putenv() when setting a variable that 3429 * We try to avoid this by setting our own value first */ 4070 /* {{{ proto bool putenv(string setting) 4074 char *setting; local 4077 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &setting, &setting_len) == FAILURE) { 4090 pe.putenv_string = estrndup(setting, setting_len); 4091 pe.key = estrndup(setting, setting_len); 4640 Get the current active configuration setting of magic_quotes_runtime */ 4651 Get the current active configuration setting o [all...] |
| /PHP_TRUNK/ |
| 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 19 milliseconds