Home
last modified time | relevance | path

Searched refs:setting (Results 1 – 25 of 174) sorted by relevance

1234567

/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c680 if (setting[0] != '$' || in BF_crypt()
681 setting[1] != '2' || in BF_crypt()
682 setting[2] < 'a' || setting[2] > 'z' || in BF_crypt()
684 setting[3] != '$' || in BF_crypt()
685 setting[4] < '0' || setting[4] > '3' || in BF_crypt()
686 setting[5] < '0' || setting[5] > '9' || in BF_crypt()
687 (setting[4] == '3' && setting[5] > '1') || in BF_crypt()
688 setting[6] != '$') { in BF_crypt()
693 count = (BF_word)1 << ((setting[4] - '0') * 10 + (setting[5] - '0')); in BF_crypt()
795 if (setting[0] == '*' && setting[1] == '0') in _crypt_output_magic()
[all …]
H A Dcrypt_blowfish.h22 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 Dcrypt_freesec.c639 if (*setting == _PASSWORD_EFMT1) { in _crypt_extended_r()
646 int value = ascii_to_bin(setting[i]); in _crypt_extended_r()
647 if (ascii64[value] != setting[i]) in _crypt_extended_r()
655 int value = ascii_to_bin(setting[i]); in _crypt_extended_r()
656 if (ascii64[value] != setting[i]) in _crypt_extended_r()
678 memcpy(data->output, setting, 9); in _crypt_extended_r()
689 if (ascii_is_unsafe(setting[0]) || ascii_is_unsafe(setting[1])) in _crypt_extended_r()
692 salt = (ascii_to_bin(setting[1]) << 6) in _crypt_extended_r()
693 | ascii_to_bin(setting[0]); in _crypt_extended_r()
695 data->output[0] = setting[0]; in _crypt_extended_r()
[all …]
H A Dcrypt_freesec.h46 char *_crypt_extended_r(const char *key, const char *setting,
/PHP-5.5/ext/mysql/tests/
H A Dmysql_phpinfo.phpt26 printf("[003] php.ini setting mysql.default_host not shown.\n");
29 printf("[004] php.ini setting mysql.default_port not shown.\n");
32 printf("[005] php.ini setting mysql.default_password not shown.\n");
35 printf("[006] php.ini setting mysql.default_socket not shown.\n");
38 printf("[007] php.ini setting mysql.default_user not shown.\n");
41 printf("[008] php.ini setting mysql.max_links not shown.\n");
44 printf("[009] php.ini setting mysql.max_persistent not shown.\n");
47 printf("[010] php.ini setting mysql.connect_timeout not shown.\n");
50 printf("[011] php.ini setting mysql.allow_persistent not shown.\n");
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_phpinfo.phpt27 printf("[003] php.ini setting mysqli.default_host not shown.\n");
30 printf("[004] php.ini setting mysqli.default_port not shown.\n");
33 printf("[005] php.ini setting mysqli.default_pw not shown.\n");
36 printf("[006] php.ini setting mysqli.default_socket not shown.\n");
39 printf("[007] php.ini setting mysqli.default_user not shown.\n");
42 printf("[008] php.ini setting mysqli.max_links not shown.\n");
45 printf("[009] php.ini setting mysqli.reconnect not shown.\n");
/PHP-5.5/ext/standard/tests/strings/
H A Dsetlocale_variation3.phpt2 Test setlocale() function : usage variations - setting system locale = 0
21 /* If locale is "0", the locale setting is not affected, only the current setting is returned */
23 echo "*** Testing setlocale() : usage variations - setting system locale = 0 ***\n";
30 echo "Locale info, before setting the locale\n";
40 echo "Locale info, after setting the locale\n";
57 *** Testing setlocale() : usage variations - setting system locale = 0 ***
58 Locale info, before setting the locale
108 Locale info, after setting the locale
H A Dsetlocale_variation5.phpt25 echo "*** Testing setlocale() : usage variations - setting system locale = \"\" ***\n";
27 //initially setting the locale
30 echo "Locale info, before setting the locale\n";
41 echo "Locale info, after setting the locale\n";
59 *** Testing setlocale() : usage variations - setting system locale = "" ***
60 Locale info, before setting the locale
110 Locale info, after setting the locale
H A Dsetlocale_variation4.phpt2 Test setlocale() function : usage variations - setting system locale as null
27 //initially setting the locale
30 echo "Locale info, before setting the locale\n";
39 echo "Locale info, after setting the locale\n";
56 Locale info, before setting the locale
106 Locale info, after setting the locale
/PHP-5.5/ext/gd/tests/
H A Dimageinterlace_variation2.phpt2 Testing setting the interlace bit off with imageinterlace() of GD library
15 //setting the interlace bit to on
18 //setting de interlace bit to off
/PHP-5.5/ext/curl/tests/
H A Dcurl_basic_004.phpt2 Test curl_opt() function with setting referer
20 echo '*** Testing curl setting referer ***' . "\n";
37 *** Testing curl setting referer ***
/PHP-5.5/ext/pdo_oci/tests/
H A Dpdo_oci_attr_autocommit_1.phpt23 echo "Change setting to false - ";
30 echo "Change setting back to true - ";
59 Change setting to false - PDO::ATTR_AUTOCOMMIT: bool(false)
60 Change setting back to true - PDO::ATTR_AUTOCOMMIT: bool(true)
/PHP-5.5/ext/pdo_mysql/tests/
H A Dpdo_mysql_attr_oracle_nulls.phpt17 …printf("[001] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.…
21 …printf("[002] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.…
24 …printf("[003] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS.…
85 [002] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS...
86 [003] Maybe PDO could indicate that this is not a proper way of setting ATTR_ORACLE_NULLS...
/PHP-5.5/sapi/cli/
H A DREADME15 php.ini setting.
20 * max_execution_time is set to unlimited, overriding php.ini setting.
/PHP-5.5/sapi/cli/tests/
H A Dcli_process_title_unix.phpt10 echo "*** Testing setting the process title ***\n";
46 *** Testing setting the process title ***
/PHP-5.5/ext/date/tests/
H A Ddefault-timezone-1.phpt2 date.timezone setting [1]
H A Ddefault-timezone-2.phpt2 date.timezone setting [2]
H A Ddate_default_timezone_get-1.phpt16 … system's timezone settings. You are *required* to use the date.timezone setting or the date_defau…
19 … system's timezone settings. You are *required* to use the date.timezone setting or the date_defau…
/PHP-5.5/Zend/tests/
H A Dbug38461.phpt2 Bug #38461 (setting private attribute with __set() produces segfault)
H A Dbug52484.phpt2 Bug #52484 (__set() ignores setting properties with empty names)
H A Dbug52484_2.phpt2 Bug #52484.2 (__set() ignores setting properties with empty names)
H A Dbug52484_3.phpt2 Bug #52484.3 (__set() ignores setting properties with empty names)
/PHP-5.5/ext/phar/tests/
H A Dpharfileinfo_setmetadata.phpt49 Write operations disabled by the php.ini setting phar.readonly
50 Write operations disabled by the php.ini setting phar.readonly
/PHP-5.5/ext/session/tests/
H A D017.phpt2 setting $_SESSION before session_start() should not cause segfault
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug40752.phpt2 Bug #40752 (parse_ini_file() segfaults when a scalar setting is redeclared as an array)

Completed in 99 milliseconds

1234567