Searched refs:pwd (Results 1 - 18 of 18) sorted by relevance
| /PHP_5_5/build/ |
| H A D | build.mk | 46 myname=`basename \`pwd\`` ; \
|
| /PHP_5_5/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_5/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_5/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; 415 char *pwd, *end; local 422 if (ftp->pwd) { 423 return ftp->pwd; 431 /* 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_5/ext/imap/ |
| H A D | php_imap.c | 5053 PHP_IMAP_EXPORT void mm_login(NETMBX *mb, char *user, char *pwd, long trial) argument 5062 strlcpy (pwd, IMAPG(imap_password), MAILTMPLEN);
|
| /PHP_5_5/ext/odbc/ |
| H A D | php_odbc.c | 2351 int odbc_sqlconnect(odbc_connection **conn, char *db, char *uid, char *pwd, int cur_opt, int persistent TSRMLS_DC) argument 2375 if (strstr(db, "pwd") || strstr(db, "PWD")) { 2376 pwd = NULL; 2390 if (pwd) { 2391 if (pwd[0]) { 2393 strlcat(lpszConnStr, pwd, CONNSTRSIZE); 2435 spprintf(&ldb, 0, "%s;UID=%s;PWD=%s", db, uid, pwd); 2446 rc = SQLConnect((*conn)->hdbc, db, SQL_NTS, uid, SQL_NTS, pwd, SQL_NTS); 2454 rc = SQLConnect((*conn)->hdbc, db, SQL_NTS, uid, SQL_NTS, pwd, SQL_NTS); 2485 char *db, *uid, *pwd; local [all...] |
| /PHP_5_5/ext/posix/ |
| H A D | posix.c | 51 #include <pwd.h>
|
| /PHP_5_5/ext/standard/ |
| H A D | filestat.c | 59 # include "win32/pwd.h" 61 # include <pwd.h>
|
| H A D | link.c | 35 #include "win32/pwd.h" 37 #include <pwd.h>
|
| H A D | pack.c | 46 #include "win32/pwd.h" 48 #include <pwd.h>
|
| H A D | pageinfo.c | 29 #include "win32/pwd.h" 31 #include <pwd.h>
|
| H A D | file.c | 78 # include "win32/pwd.h" 80 # include <pwd.h>
|
| /PHP_5_5/main/ |
| H A D | fopen_wrappers.c | 48 #include <pwd.h>
|
| H A D | php.h | 206 #include <pwd.h>
|
| H A D | main.c | 1226 struct passwd *pwd; 1241 pwd = &_pw; 1243 if ((pwd=getpwuid(pstat->st_uid))==NULL) { 1247 SG(request_info).current_user_length = strlen(pwd->pw_name); 1248 SG(request_info).current_user = estrndup(pwd->pw_name, SG(request_info).current_user_length);
|
| /PHP_5_5/sapi/webjames/ |
| H A D | webjames.c | 152 if (WG(conn)->pwd) {
|
Completed in 89 milliseconds