/external/e2fsprogs/include/nonunix/ |
pwd.h | 7 __inline struct passwd* getpwnam (char* g){return 0;} 10 struct passwd struct
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/ |
yppasswd.h | 17 struct passwd { struct 26 typedef struct passwd passwd; typedef in typeref:struct:passwd 30 passwd newpw; 53 extern bool_t xdr_passwd (XDR *, passwd*);
|
yppasswd.x | 40 * Update my passwd entry 48 struct passwd { 60 passwd newpw; /* new passwd entry */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/ |
yppasswd.h | 17 struct passwd { struct 26 typedef struct passwd passwd; typedef in typeref:struct:passwd 30 passwd newpw; 53 extern bool_t xdr_passwd (XDR *, passwd*);
|
yppasswd.x | 40 * Update my passwd entry 48 struct passwd { 60 passwd newpw; /* new passwd entry */
|
/external/ppp/pppd/plugins/ |
passwordfd.c | 33 static int pwfd_passwd (char *user, char *passwd) 40 if (passwd == NULL) 44 strcpy (passwd, save_passwd); 50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood); 66 passwd[readgood] = 0; 67 strcpy (save_passwd, passwd);
|
/external/libedit/ |
acinclude.m4 | 33 dnl POSIX draft version returns 'struct passwd *' (used on Solaris) 40 # int getpwnam_r(char *, struct passwd *, char *, size_t, struct passwd **) 41 # int getpwuid_r(uid_t, struct passwd *, char *, size_t, struct passwd **); 56 # struct passwd *getpwuid_r(uid_t, struct passwd *, char *, int); 57 # struct passwd *getpwnam_r(char *, struct passwd *, char *, int);
|
/external/scrypt/patches/ |
use_openssl_pbkdf2.patch | 17 @@ -256,7 +260,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen, 22 + PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, salt, saltlen, 1, EVP_sha256(), p * 128 * r, B); 24 PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r); 29 @@ -265,7 +273,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen, 34 + PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, B, p * 128 * r, 1, EVP_sha256(), buflen, buf); 36 PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen); 57 @@ -332,7 +336,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen, 62 + PKCS5_PBKDF2_HMAC((const char *)passwd, passwdlen, salt, saltlen, 1, EVP_sha256(), p * 128 * r, B); 64 PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r); 69 @@ -341,7 +349,11 @@ crypto_scrypt(const uint8_t * passwd, size_t passwdlen [all...] |
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
getpwnam_r_invalid_user.cc | 13 struct passwd pwd; 14 struct passwd *pwdres;
|
/external/curl/tests/data/ |
test1304 | 25 machine example.com login admin password passwd
|
test225 | 17 ftp://bad%0auser:passwd@%HOSTIP:%FTPPORT/225%0a
|
/external/selinux/policycoreutils/newrole/ |
newrole.pamd | 2 # Uncomment the next line if you do not want to enter your passwd everytime
|
/external/selinux/policycoreutils/run_init/ |
run_init.pamd | 2 # Uncomment the next line if you do not want to enter your passwd everytime
|
/external/selinux/policycoreutils/sestatus/ |
sestatus.conf | 2 /etc/passwd
|
/external/wpa_supplicant_8/src/tls/ |
pkcs5.h | 14 const char *passwd, size_t *data_len);
|
pkcs8.h | 14 pkcs8_enc_key_import(const u8 *buf, size_t len, const char *passwd);
|
/hardware/bsp/intel/peripheral/libupm/src/m24lr64e/ |
m24lr64e.cxx | 57 bool M24LR64E::submitPasswd(uint32_t passwd) 66 buf[2] = ((passwd >> 24) & 0xff); 67 buf[3] = ((passwd >> 16) & 0xff); 68 buf[4] = ((passwd >> 8) & 0xff); 69 buf[5] = (passwd & 0xff); 74 buf[7] = ((passwd >> 24) & 0xff); 75 buf[8] = ((passwd >> 16) & 0xff); 76 buf[9] = ((passwd >> 8) & 0xff); 77 buf[10] = (passwd & 0xff); 89 bool M24LR64E::writePasswd(uint32_t passwd) [all...] |
/external/toybox/toys/pending/ |
useradd.c | 45 struct passwd pwd; 62 // add_user(), add a new entry in /etc/passwd, /etc/shadow files 73 struct passwd *pw = getpwuid(getuid()); 113 * 1. add an entry to /etc/passwd and /etcshadow file 115 * 3. update the user passwd by running 'passwd' utility 118 // 1. add an entry to /etc/passwd and /etc/shadow file 122 if (update_password("/etc/passwd", pwd.pw_name, entry)) error_exit("updating passwd file failed"); 127 (unsigned)(time(NULL))/(24*60*60)); //passwd is not set initiall [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
pwd.h | 49 /* The passwd structure. */ 50 struct passwd struct 85 extern struct passwd *getpwent (void); 95 extern struct passwd *fgetpwent (FILE *__stream); 103 extern int putpwent (__const struct passwd *__restrict __p, 111 extern struct passwd *getpwuid (__uid_t __uid); 117 extern struct passwd *getpwnam (__const char *__name); 140 extern int getpwent_r (struct passwd *__restrict __resultbuf, 142 struct passwd **__restrict __result); 146 struct passwd *__restrict __resultbuf [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
pwd.h | 49 /* The passwd structure. */ 50 struct passwd struct 85 extern struct passwd *getpwent (void); 95 extern struct passwd *fgetpwent (FILE *__stream); 103 extern int putpwent (__const struct passwd *__restrict __p, 111 extern struct passwd *getpwuid (__uid_t __uid); 117 extern struct passwd *getpwnam (__const char *__name); 140 extern int getpwent_r (struct passwd *__restrict __resultbuf, 142 struct passwd **__restrict __result); 146 struct passwd *__restrict __resultbuf [all...] |
/external/libvncserver/common/ |
vncauth.c | 73 rfbEncryptAndStorePasswd(char *passwd, char *fname) 89 if (i < strlen(passwd)) { 90 encryptedPasswd[i] = passwd[i]; 122 unsigned char *passwd = (unsigned char *)malloc(9); local 125 free(passwd); 133 free(passwd); 136 passwd[i] = ch; 142 rfbDes(passwd, passwd); 144 passwd[8] = 0 [all...] |
/external/toybox/tests/ |
useradd.test | 25 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] && 31 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] && 37 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] && 43 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] && 50 grep '^$user:' /etc/passwd $arg && [ -d /home/$user ] && 56 grep '^$user:.*dir' /etc/passwd $arg && [ -d $PWD/dir ] && 63 grep '^$user:.*$gecos' /etc/passwd $arg && [ -d /home/$user ] && 69 grep '^$user:.*$shl$' /etc/passwd $arg && [ -d /home/$user ] && 76 grep '^$user:.*:.*:$g_id:.*' /etc/passwd $arg && [ -d /home/$user ] && 81 grep '^$user:.*:.*:.*' /etc/passwd $arg && [ ! -e /home/$user ] && [all...] |
/external/toybox/toys/lsb/ |
passwd.c | 0 /* passwd.c - Program to update user password. 6 * http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/passwd.html 8 USE_PASSWD(NEWTOY(passwd, ">1a:dlu", TOYFLAG_STAYROOT|TOYFLAG_USR|TOYFLAG_BIN)) 10 config PASSWD 11 bool "passwd" 15 usage: passwd [-a ALGO] [-dlu] <account name> 27 depends on PASSWD 53 if (strlen(newp) < 6) { //Min passwd len 57 if (!newp[0]) return; //passwd is empty 65 msg = "based on old passwd"; [all...] |
/external/autotest/tko/ |
db_mysql.py | 14 'passwd': password,
|
/external/e2fsprogs/debian/ |
uuid-runtime.postinst | 7 if ! getent passwd | grep -q libuuid; then
|