/external/ltp/testcases/kernel/syscalls/setresgid/ |
setresgid01.c | 74 #include <pwd.h>
|
setresgid03.c | 79 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/setresuid/ |
setresuid04.c | 54 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/setreuid/ |
setreuid02.c | 26 #include <pwd.h>
|
setreuid07.c | 36 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/stat/ |
stat02.c | 77 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/swapon/ |
swapon02.c | 31 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/sysctl/ |
sysctl03.c | 72 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/syslog/ |
syslog12.c | 77 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/unshare/ |
unshare01.c | 88 #include <pwd.h>
|
/external/ltp/testcases/kernel/syscalls/utime/ |
utime03.c | 79 #include <pwd.h>
|
utime06.c | 40 #include <pwd.h>
|
/external/syslinux/bios/com32/cmenu/ |
test2.c | 207 char pwd[40]; local 230 getpwd(pwd, sizeof pwd); 234 if (authenticate_user(login,pwd))
|
/external/syslinux/efi32/com32/cmenu/ |
test2.c | 207 char pwd[40]; local 230 getpwd(pwd, sizeof pwd); 234 if (authenticate_user(login,pwd))
|
/external/syslinux/efi64/com32/cmenu/ |
test2.c | 207 char pwd[40]; local 230 getpwd(pwd, sizeof pwd); 234 if (authenticate_user(login,pwd))
|
/external/toybox/ |
toys.h | 21 #include <pwd.h>
|
/system/core/init/ |
util.cpp | 21 #include <pwd.h> 63 struct passwd* pwd = getpwnam(s); local 64 if (!pwd) 66 return pwd->pw_uid;
|
/system/extras/su/ |
su.cpp | 21 #include <pwd.h>
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
KeyManagerImpl.java | 60 * @param pwd 62 public KeyManagerImpl(KeyStore keyStore, char[] pwd) { 75 .getEntry(alias, new KeyStore.PasswordProtection(pwd));
|
/bionic/libc/bionic/ |
grp_pwd.cpp | 34 #include <pwd.h> 49 // POSIX seems to envisage an implementation where the <pwd.h> functions are 127 int getpwnam_r(const char* name, passwd* pwd, 129 return do_getpw_r(1, name, -1, pwd, buf, byte_count, result); 132 int getpwuid_r(uid_t uid, passwd* pwd, 134 return do_getpw_r(0, NULL, uid, pwd, buf, byte_count, result);
|
/external/compiler-rt/test/dfsan/ |
custom.cc | 16 #include <pwd.h> 560 struct passwd pwd; 564 dfsan_set_label(i_label, &pwd, 4); 565 int ret = getpwuid_r(0, &pwd, buf, sizeof(buf), &result); 567 assert(strcmp(pwd.pw_name, "root") == 0); 568 assert(result == &pwd); 569 ASSERT_READ_ZERO_LABEL(&pwd, 4);
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/ |
WifiManagerFacade.java | 402 String pwd = j.getString(WifiEnterpriseConfig.PASSWORD_KEY); local 403 Log.v("Setting password to " + pwd); 404 eConfig.setPassword(pwd); 863 String pwd = config.preSharedKey; if (pwd != null) { local [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/ |
go_test.go | 191 // pwd returns the current directory. 192 func (tg *testgoData) pwd() string { func 208 tg.wd = tg.pwd() 213 tg.setenv("PWD", abs) 458 path = filepath.Join(tg.pwd(), path) 628 if rel, err := filepath.Rel(tg.pwd(), path); err == nil && len(rel) < len(path) { [all...] |
/prebuilts/go/linux-x86/src/cmd/go/ |
go_test.go | 191 // pwd returns the current directory. 192 func (tg *testgoData) pwd() string { func 208 tg.wd = tg.pwd() 213 tg.setenv("PWD", abs) 458 path = filepath.Join(tg.pwd(), path) 628 if rel, err := filepath.Rel(tg.pwd(), path); err == nil && len(rel) < len(path) { [all...] |
/external/ppp/pppd/ |
upap.c | 620 char *user, *pwd, *msg; local 649 pwd = (char *) (p + ulen + 2); 656 print_string(pwd, wlen, printer, arg);
|