Home
last modified time | relevance | path

Searched refs:pass (Results 26 – 50 of 363) sorted by last modified time

12345678910>>...15

/php-src/ext/odbc/tests/
H A Dodbc_fetch_row_001.phpt12 $conn = odbc_connect($dsn, $user, $pass);
39 $conn = odbc_connect($dsn, $user, $pass);
/php-src/ext/mbstring/tests/
H A Dmb_encode_mimeheader_basic4.phpt91 // ASCII strings with no spaces should pass through unchanged
H A Dgh13123.phpt18 mbstring.http_input=pass
/php-src/Zend/asm/
H A Djump_loongarch64_sysv_elf_gas.S106 # pass transfer_t as first arg in context function
/php-src/ext/standard/
H A Durl_scanner_ex.re249 if (url_parts->pass) {
250 smart_str_appends(dest, ZSTR_VAL(url_parts->pass));
H A Dhttp_fopen_wrapper.c533 if (resource->pass) { in php_stream_url_wrap_http_ex()
534 php_url_decode(ZSTR_VAL(resource->pass), ZSTR_LEN(resource->pass)); in php_stream_url_wrap_http_ex()
535 strcat(scratch, ZSTR_VAL(resource->pass)); in php_stream_url_wrap_http_ex()
916 CHECK_FOR_CNTRL_CHARS(resource->pass); in php_stream_url_wrap_http_ex()
/php-src/ext/ftp/
H A Dphp_ftp.c221 char *user, *pass; in PHP_FUNCTION() local
224 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Oss", &z_ftp, php_ftp_ce, &user, &user_len, &pass, &pa… in PHP_FUNCTION()
230 if (!ftp_login(ftp, user, user_len, pass, pass_len)) { in PHP_FUNCTION()
/php-src/
H A Dphp.ini-development255 ; "form" tag is special tag. It will add hidden input tag to pass values.
H A Dphp.ini-production255 ; "form" tag is special tag. It will add hidden input tag to pass values.
/php-src/sapi/apache2handler/
H A Dconfig.m428 AC_MSG_RESULT([2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs])
/php-src/build/
H A Dltmain.sh2250 test "$pass" = conv && continue
2255 if test "$pass" = conv; then
2259 if test "$pass" = scan; then
2274 if test "$pass" = link; then
2287 if test "$pass" = conv; then
2325 if test "$pass" != link; then
2336 if test "$pass" = conv; then
2398 if test "$pass" = conv; then
2438 if test "$pass" = dlopen; then
2499 if test "$pass" = dlpreopen; then
[all …]
/php-src/Zend/Optimizer/
H A Dzend_optimizer.c41 zend_optimizer_pass_t pass[ZEND_OPTIMIZER_MAX_REGISTERED_PASSES]; member
1551 if (!zend_optimizer_registered_passes.pass[i]) { in zend_optimizer_call_registered_passes()
1555 zend_optimizer_registered_passes.pass[i](script, ctx); in zend_optimizer_call_registered_passes()
1729 ZEND_API int zend_optimizer_register_pass(zend_optimizer_pass_t pass) in zend_optimizer_register_pass() argument
1731 if (!pass) { in zend_optimizer_register_pass()
1739 zend_optimizer_registered_passes.pass[ in zend_optimizer_register_pass()
1740 zend_optimizer_registered_passes.last++] = pass; in zend_optimizer_register_pass()
1747 zend_optimizer_registered_passes.pass[idx-1] = NULL; in zend_optimizer_unregister_pass()
H A Dblock_pass.c1679 int pass; in zend_optimize_cfg() local
1707 for (pass = 0; pass < PASSES; pass++) { in zend_optimize_cfg()
/php-src/ext/phar/phar/
H A Dpharcommand.inc209 * @param string $cfg Configuration to pass to a new file
274 * @param string $cfg Configuration to pass to a new file
/php-src/sapi/phpdbg/tests/
H A Dphpdbg_get_executable_stream_wrapper.phpt78 * If we call phpdbg_get_executable() and pass no options, the realpath of the
/php-src/ext/mysqlnd/
H A Dmysqlnd.h82 #define mysqlnd_connect(conn, host, user, pass, pass_len, db, db_len, port, socket, mysql_flags, cl… argument
83 …mysqlnd_connection_connect((conn), (host), (user), (pass), (pass_len), (db), (db_len), (port), (so…
/php-src/ext/standard/tests/mail/
H A Dmail_basic7.phpt13 // Should pass
/php-src/docs-old/
H A Doutput-api.md117 pass a void*** pointer as second arg to receive the address of a pointer
120 pass a int* pointer as second arg to receive the flags set for the output handler
122 pass a int* pointer as second arg to receive the level of this output handler
H A Dparameter-parsing-api.md116 `zend_string` with `size_t` as length, so make sure you pass `zend_long`s to "l"
117 and `size_t` to strings length (i.e. for "s" you need to pass char `*` and
H A Dstreams.md111 If you want to copy all remaining data from the src stream, pass
H A Dunix-build-system.md103 I.e. specify the source-code files as above and also pass the information
/php-src/Zend/tests/multibyte/
H A Dmultibyte_encoding_007.phpt2 Don't segfault when zend.script_encoding=pass
7 zend.script_encoding=pass
14 Warning: PHP Startup: INI setting contains invalid encoding "pass" in Unknown on line 0
/php-src/ext/pdo_mysql/tests/inc/
H A Dmysql_pdo_test.inc14 $pass = PDO_MYSQL_TEST_PASS;
23 $db = new $classname($dsn, $user, $pass, $attr);
/php-src/ext/pdo_dblib/tests/
H A Dconfig.inc30 $pass = getenv('PDO_DBLIB_TEST_PASS');
32 $pass = 'password';
35 return [$dsn, $user, $pass];
44 [$dsn, $user, $pass] = getCredentials();
47 $db = new $class($dsn, $user, $pass, $attributes);
59 [$dsn, $user, $pass] = getCredentials();
62 $db = PDO::connect($dsn, $user, $pass);
/php-src/ext/pdo/tests/
H A Dpdo_test.inc24 $pass = getenv('PDOTEST_PASS');
33 if ($pass === false) $pass = NULL;
35 $db = new $classname($dsn, $user, $pass, $attr);

Completed in 71 milliseconds

12345678910>>...15