Searched refs:pwd (Results 1 - 19 of 19) sorted by relevance
| /PHP_5_3/build/ |
| H A D | build.mk | 47 myname=`basename \`pwd\`` ; \
|
| /PHP_5_3/sapi/fpm/fpm/ |
| H A D | fpm_unix.c | 13 #include <pwd.h> 45 struct passwd *pwd; local 47 pwd = getpwnam(c->listen_owner); 48 if (!pwd) { 53 wp->socket_uid = pwd->pw_uid; 54 wp->socket_gid = pwd->pw_gid; 77 struct passwd *pwd; local 85 struct passwd *pwd; local 87 pwd = getpwnam(wp->config->user); 88 if (!pwd) { [all...] |
| /PHP_5_3/win32/ |
| H A D | glob.c | 82 #include <pwd.h> 360 struct passwd *pwd; local 389 if ((pwd = getpwuid(getuid())) == NULL) 392 h = pwd->pw_dir; 402 if ((pwd = getpwnam((char*) patbuf)) == NULL) 405 h = pwd->pw_dir;
|
| /PHP_5_3/ext/ftp/ |
| H A D | ftp.c | 203 if (ftp->pwd) { 204 efree(ftp->pwd); 205 ftp->pwd = NULL; 230 if (ftp->pwd) { 231 efree(ftp->pwd); 232 ftp->pwd = NULL; 411 char *pwd, *end; local 418 if (ftp->pwd) { 419 return ftp->pwd; 427 /* copy out the pwd fro [all...] |
| H A D | ftp.h | 67 char *pwd; /* cached pwd */ member in struct:ftpbuf
|
| H A D | php_ftp.c | 441 const char *pwd; local 449 if (!(pwd = ftp_pwd(ftp))) { 454 RETURN_STRING((char*) pwd, 1);
|
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 5061 PHP_IMAP_EXPORT void mm_login(NETMBX *mb, char *user, char *pwd, long trial) argument 5070 strlcpy (pwd, IMAPG(imap_password), MAILTMPLEN);
|
| /PHP_5_3/ext/odbc/ |
| H A D | php_odbc.c | 2357 int odbc_sqlconnect(odbc_connection **conn, char *db, char *uid, char *pwd, int cur_opt, int persistent TSRMLS_DC) argument 2381 if (strstr(db, "pwd") || strstr(db, "PWD")) { 2382 pwd = NULL; 2396 if (pwd) { 2397 if (pwd[0]) { 2399 strlcat(lpszConnStr, pwd, CONNSTRSIZE); 2441 spprintf(&ldb, 0, "%s;UID=%s;PWD=%s", db, uid, pwd); 2452 rc = SQLConnect((*conn)->hdbc, db, SQL_NTS, uid, SQL_NTS, pwd, SQL_NTS); 2460 rc = SQLConnect((*conn)->hdbc, db, SQL_NTS, uid, SQL_NTS, pwd, SQL_NTS); 2491 char *db, *uid, *pwd; local [all...] |
| /PHP_5_3/ext/posix/ |
| H A D | posix.c | 51 #include <pwd.h>
|
| /PHP_5_3/ext/standard/ |
| H A D | filestat.c | 60 # include "win32/pwd.h" 62 # include <pwd.h>
|
| H A D | link.c | 35 #include "win32/pwd.h" 37 #include <pwd.h>
|
| H A D | pack.c | 47 #include "win32/pwd.h" 49 #include <pwd.h>
|
| H A D | pageinfo.c | 29 #include "win32/pwd.h" 31 #include <pwd.h>
|
| H A D | file.c | 79 # include "win32/pwd.h" 81 # include <pwd.h>
|
| /PHP_5_3/ext/zlib/ |
| H A D | zlib.c | 55 # include "win32/pwd.h" 57 # include <pwd.h>
|
| /PHP_5_3/main/ |
| H A D | fopen_wrappers.c | 49 #include <pwd.h>
|
| H A D | php.h | 205 #include <pwd.h>
|
| H A D | safe_mode.c | 238 struct passwd *pwd; 253 pwd = &_pw; 255 if ((pwd=getpwuid(pstat->st_uid))==NULL) { 259 SG(request_info).current_user_length = strlen(pwd->pw_name); 260 SG(request_info).current_user = estrndup(pwd->pw_name, SG(request_info).current_user_length);
|
| /PHP_5_3/sapi/webjames/ |
| H A D | webjames.c | 152 if (WG(conn)->pwd) {
|
Completed in 55 milliseconds