Home
last modified time | relevance | path

Searched refs:pwd (Results 1 – 23 of 23) sorted by relevance

/PHP-8.2/ext/standard/tests/file/
H A Dparse_ini_file_variation3.phpt8 $pwd = getcwd();
10 $dir1 = $pwd."/".$f.".dir1";
11 $dir2 = $pwd."/".$f.".dir2";
12 $dir3 = $pwd."/".$f.".dir3";
51 $pwd = getcwd();
55 $dir1 = $pwd."/".$f.".dir1";
56 $dir2 = $pwd."/".$f.".dir2";
57 $dir3 = $pwd."/".$f.".dir3";
H A Dfopen_include_path.inc2 $pwd = getcwd();
4 $dir1 = $pwd."/".$f.".dir1";
5 $dir2 = $pwd."/".$f.".dir2";
6 $dir3 = $pwd."/".$f.".dir3";
8 $dir4 = $pwd."/".$f.".dir4";
/PHP-8.2/sapi/fpm/fpm/
H A Dfpm_unix.c58 if (!pwd) { in fpm_unix_get_passwd()
63 return pwd; in fpm_unix_get_passwd()
150 struct passwd *pwd; in fpm_unix_resolve_socket_permissions() local
158 if (pwd) { in fpm_unix_resolve_socket_permissions()
228 struct passwd *pwd; in fpm_unix_resolve_socket_permissions() local
231 if (!pwd) { in fpm_unix_resolve_socket_permissions()
322 struct passwd *pwd; in fpm_unix_conf_wp() local
330 if (pwd) { in fpm_unix_conf_wp()
335 struct passwd *pwd; in fpm_unix_conf_wp() local
338 if (!pwd) { in fpm_unix_conf_wp()
[all …]
/PHP-8.2/ext/zlib/tests/
H A Dgzopen_include_path.inc2 $pwd = getcwd();
4 $dir1 = $pwd."/".$f.".dir1";
5 $dir2 = $pwd."/".$f.".dir2";
6 $dir3 = $pwd."/".$f.".dir3";
8 $dir4 = $pwd."/".$f.".dir4";
/PHP-8.2/ext/pdo_odbc/
H A Dodbc_driver.c537 char *uid = NULL, *pwd = NULL; in pdo_odbc_handle_factory() local
549 pwd = emalloc(estimated_length); in pdo_odbc_handle_factory()
550 php_odbc_connstr_quote(pwd, dbh->password, estimated_length); in pdo_odbc_handle_factory()
552 pwd = dbh->password; in pdo_odbc_handle_factory()
555 + strlen(uid) + strlen(pwd) in pdo_odbc_handle_factory()
558 snprintf(dsn, new_dsn_size, "%s;UID=%s;PWD=%s", dbh->data_source, uid, pwd); in pdo_odbc_handle_factory()
564 if (pwd && should_quote_pwd) { in pdo_odbc_handle_factory()
565 efree(pwd); in pdo_odbc_handle_factory()
/PHP-8.2/ext/ftp/
H A Dftp.c202 if (ftp->pwd) { in ftp_gc()
203 efree(ftp->pwd); in ftp_gc()
204 ftp->pwd = NULL; in ftp_gc()
228 if (ftp->pwd) { in ftp_quit()
229 efree(ftp->pwd); in ftp_quit()
230 ftp->pwd = NULL; in ftp_quit()
466 char *pwd, *end; in ftp_pwd() local
473 if (ftp->pwd) { in ftp_pwd()
489 ftp->pwd = estrndup(pwd, end - pwd); in ftp_pwd()
541 if (ftp->pwd) { in ftp_chdir()
[all …]
H A Dftp.h64 char *pwd; /* cached pwd */ member
H A Dphp_ftp.c257 const char *pwd; in PHP_FUNCTION() local
264 if (!(pwd = ftp_pwd(ftp))) { in PHP_FUNCTION()
271 RETURN_STRING((char*) pwd); in PHP_FUNCTION()
/PHP-8.2/ext/openssl/tests/
H A Dbug81713.phpt119 ["openssl_pkcs12_export", $crt_file_null, &$out, $priv_key_file, "pwd"],
120 ["openssl_pkcs12_export", $crt_file, &$out, $priv_key_file_null, "pwd"],
121 …["openssl_pkcs12_export", $crt_file, &$out, $priv_key_file, "pwd", ["extracerts" => [$crt_file_nul…
122 ["openssl_pkcs12_export_to_file", $crt_file_null, $outfile, $priv_key_file, "pwd"],
123 ["openssl_pkcs12_export_to_file", $crt_file, $outfile_null, $priv_key_file_null, "pwd"],
124 ["openssl_pkcs12_export_to_file", $crt_file, $outfile, $priv_key_file_null, "pwd"],
125 …["openssl_pkcs12_export_to_file", $crt_file, $outfile, $priv_key_file, "pwd", ["extracerts" => [$c…
H A Dopenssl_error_string_basic.phpt112 @openssl_pkey_export($private_key_file_with_pass, $out, 'wrong pwd');
H A Dopenssl_error_string_basic_openssl3.phpt115 @openssl_pkey_export($private_key_file_with_pass, $out, 'wrong pwd', $options);
/PHP-8.2/scripts/
H A Dphpize.m431 abs_srcdir=`(cd $srcdir && pwd)`
32 abs_builddir=`pwd`
162 phplibdir="`pwd`/modules"
/PHP-8.2/win32/
H A Dglob.c345 struct passwd *pwd; in globtilde() local
374 if ((pwd = getpwuid(getuid())) == NULL) in globtilde()
377 h = pwd->pw_dir; in globtilde()
387 if ((pwd = getpwnam((char*) patbuf)) == NULL) in globtilde()
390 h = pwd->pw_dir; in globtilde()
/PHP-8.2/
H A D.travis.yml89 - sapi/cli/php -d extension_dir=`pwd`/modules -r 'dl("zend_test");'
H A Dconfigure.ac114 abs_srcdir=`(cd $srcdir; pwd)`
115 abs_builddir=`pwd`
414 pwd.h \
1376 phplibdir=`pwd`/modules
1378 phptempdir=`pwd`/libs
/PHP-8.2/ext/snmp/tests/
H A DREADME.md22 To run test suite you may use this command (presuming that you pwd is where this
/PHP-8.2/ext/odbc/
H A Dphp_odbc.c2058 int odbc_sqlconnect(odbc_connection **conn, char *db, char *uid, char *pwd, int cur_opt, int persis… in odbc_sqlconnect() argument
2108 bool is_pwd_set = pwd && *pwd in odbc_sqlconnect()
2114 bool should_quote_pwd = !php_odbc_connstr_is_quoted(pwd) && php_odbc_connstr_should_quote(pwd); in odbc_sqlconnect()
2123 size_t estimated_length = php_odbc_connstr_estimate_quote_length(pwd); in odbc_sqlconnect()
2125 php_odbc_connstr_quote(pwd_quoted, pwd, estimated_length); in odbc_sqlconnect()
2127 pwd_quoted = pwd; in odbc_sqlconnect()
2154 rc = SQLConnect((*conn)->hdbc, (SQLCHAR *) db, SQL_NTS, uid, SQL_NTS, pwd, SQL_NTS); in odbc_sqlconnect()
2176 char *db, *uid, *pwd; in odbc_do_connect() local
2214 hashed_len = spprintf(&hashed_details, 0, "%s_%s_%s_%s_%d", ODBC_TYPE, db, uid, pwd, cur_opt); in odbc_do_connect()
2229 if (!odbc_sqlconnect(&db_conn, db, uid, pwd, cur_opt, 1)) { in odbc_do_connect()
[all …]
/PHP-8.2/.github/scripts/windows/
H A Dtest_task.bat51 …r SQL Server};Server=^(local^)\SQLEXPRESS;Database=master;uid=%ODBC_TEST_USER%;pwd=%ODBC_TEST_PASS%
/PHP-8.2/main/
H A Dmain.c1457 struct passwd *pwd; in php_get_current_user()
1489 pwd = &_pw; in php_get_current_user()
1491 if ((pwd=getpwuid(pstat->st_uid))==NULL) { in php_get_current_user()
1495 SG(request_info).current_user_length = strlen(pwd->pw_name); in php_get_current_user()
1496 SG(request_info).current_user = estrndup(pwd->pw_name, SG(request_info).current_user_length); in php_get_current_user()
/PHP-8.2/ext/imap/
H A Dphp_imap.c4505 PHP_IMAP_EXPORT void mm_login(NETMBX *mb, char *user, char *pwd, long trial) in mm_login() argument
4513 strlcpy (pwd, IMAPG(imap_password), MAILTMPLEN); in mm_login()
/PHP-8.2/build/
H A Dphp.m467 ep_realdir=`(cd "$ep_dir" && pwd)`
/PHP-8.2/ext/fileinfo/tests/
H A Dmagic29803 # by PlanMaker "Pocket Word-Handheld PC" for pwd
29805 0 string {\\pwd Pocket Word document or template
29806 # by SoftMaker Office http://extension.nirsoft.net/pwd
29812 !:ext pwd/psw/pwt
H A Dmagic私はガラスを食べられます29803 # by PlanMaker "Pocket Word-Handheld PC" for pwd
29805 0 string {\\pwd Pocket Word document or template
29806 # by SoftMaker Office http://extension.nirsoft.net/pwd
29812 !:ext pwd/psw/pwt

Completed in 248 milliseconds