Home
last modified time | relevance | path

Searched refs:ppwd (Results 1 – 11 of 11) sorted by relevance

/dports/sysutils/incron/incron-81421d3a8bde0989d7e167d8a814d5232896c930/
H A Dict-main.cpp102 struct passwd* ppwd = getpwnam(rUser.c_str()); in copy_from_file() local
103 if (ppwd == NULL) { in copy_from_file()
185 struct passwd* ppwd = getpwnam(rUser.c_str()); in edit_table() local
186 if (ppwd == NULL) { in edit_table()
191 uid_t uid = ppwd->pw_uid; in edit_table()
192 uid_t gid = ppwd->pw_gid; in edit_table()
471 struct passwd* ppwd = NULL; in main() local
474 if ((ppwd = getpwnam(user.c_str())) != NULL) { in main()
489 ppwd = getpwuid(uid); in main()
490 if (ppwd == NULL) { in main()
[all …]
/dports/net/boinc-client/boinc-client_release-7.8-7.8.6/clientsetup/win/
H A Dpassword.cpp14 BOOL GenPwd(TCHAR* ppwd, int nLen) in GenPwd() argument
87 _tcsncpy(ppwd, pTRandomPwd, nLen); in GenPwd()
89 ppwd[nLen] = _T('\0'); in GenPwd()
/dports/net/samba412/samba-4.12.15/nsswitch/
H A Dstress-nss-libwbclient.c82 struct passwd *ppwd; in query_wbc_thread() local
86 wbc_status = wbcGetpwnam(state->username, &ppwd); in query_wbc_thread()
96 wbcFreeMemory(ppwd); in query_wbc_thread()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sal/osl/unx/
H A Dsecurity.cxx339 struct passwd *ppwd; in osl_psz_getHomeDir() local
342 if ( 0 != getpwuid_r(getuid(), &pwd, buffer, sizeof(buffer), &ppwd ) ) in osl_psz_getHomeDir()
343 ppwd = NULL; in osl_psz_getHomeDir()
345 ppwd = getpwuid_r(getuid(), &pwd, buffer, sizeof(buffer) ); in osl_psz_getHomeDir()
348 if ( ppwd ) in osl_psz_getHomeDir()
349 pStr = ppwd->pw_dir; in osl_psz_getHomeDir()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sal/osl/unx/
H A Dsecurity.cxx338 struct passwd *ppwd; in osl_psz_getHomeDir() local
341 if ( 0 != getpwuid_r(getuid(), &pwd, buffer, sizeof(buffer), &ppwd ) ) in osl_psz_getHomeDir()
342 ppwd = NULL; in osl_psz_getHomeDir()
344 ppwd = getpwuid_r(getuid(), &pwd, buffer, sizeof(buffer) ); in osl_psz_getHomeDir()
347 if ( ppwd ) in osl_psz_getHomeDir()
348 pStr = ppwd->pw_dir; in osl_psz_getHomeDir()
/dports/x11-fm/filerunner/filerunner/packages/vfs/
H A DVFSrsync.tcl498 set ppwd [RSYNCsingle $VFStok {--list-only -d -l --no-h} \
500 if {[set st [string first { -> } $ppwd]] != -1} {
502 regsub -all {\n} [string range $ppwd $st+3 end] {} ppwd
503 set pwd [URL norm [file dir $pwd]/[string trim $ppwd]]
/dports/games/netrek-client-cow/netrek-client-cow-3.3.2/
H A Dgetname.c377 char ppwd[16]; in getname() local
379 STRNCPY(ppwd, "\0\0\0", 4); in getname()
400 sendLoginReq(n_buf, ppwd, login, 0); in getname()
406 sendLoginReq(n_buf, ppwd, login, 1); in getname()
/dports/x11/gnome-shell/gnome-shell-41.1/src/
H A Dshell-polkit-authentication-agent.c225 struct passwd *ppwd; in auth_request_initiate() local
228 if (getpwuid_r (uid, &pwd, buf, sizeof (buf), &ppwd) == 0) in auth_request_initiate()
/dports/devel/nss_wrapper/nss_wrapper-1.1.3/
H A DConfigureChecks.cmake126 …"int getpwnam_r(const char *name, struct passwd *pwd, char *buf, int buflen, struct passwd **ppwd)"
132 "int getpwuid_r(uid_t uid, struct passwd *pwd, char *buf, int buflen, struct passwd **ppwd)"
/dports/lang/rexx-regina/regina-rexx-3.9.3/
H A Dfiles.c4044 struct passwd *ppwd; in getstatus() local
4121 ppwd = getpwuid( buffer.st_uid ); in getstatus()
4122 if ( ppwd ) in getstatus()
4123 ptmppwd = ppwd->pw_name; in getstatus()
/dports/x11-wm/spectrwm/spectrwm-SPECTRWM_3_4_1/
H A Dspectrwm.c1429 struct passwd *ppwd; in expand_tilde() local
1457 ppwd = strlen(user) == 0 ? getpwuid(getuid()) : getpwnam(user); in expand_tilde()
1460 if (ppwd == NULL) in expand_tilde()
1463 if (asprintf(&result, "%s%s", ppwd->pw_dir, s) == -1) in expand_tilde()