HomeSort by relevance Sort by last modified time
    Searched full:passwd (Results 1 - 25 of 530) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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.6/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.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 */
  /external/chromium_org/remoting/host/
username.cc 26 struct passwd passwd; local
27 struct passwd* passwd_result = NULL;
28 getpwuid_r(getuid(), &passwd, &(buf[0]), buf_size, &passwd_result); local
  /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 12 struct passwd pwd;
13 struct passwd *pwdres;
  /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);
  /external/chromium_org/google_apis/test/
service_login.html 31 var passwd = passwordFormElement.value;
34 gaia.chromeOSLogin.attemptLogin(email, passwd, attemptToken);
48 document.getElementById("Passwd"),
68 <INPUT TYPE=text id="Passwd" name="Passwd">
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.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...]
  /external/chromium_org/tools/telemetry/telemetry/core/backends/
google_credentials_backend_unittest.py 16 'Passwd')
  /external/e2fsprogs/debian/
uuid-runtime.postinst 7 if ! getent passwd | grep -q libuuid; then
  /bionic/libc/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
116 struct passwd* getpwnam(const char*);
117 struct passwd* getpwuid(uid_t);
119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
120 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /development/ndk/platforms/android-3/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
120 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /development/ndk/platforms/android-L/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
116 struct passwd* getpwnam(const char*);
117 struct passwd* getpwuid(uid_t);
119 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
120 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
116 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
117 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
116 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
117 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
116 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
117 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
116 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
117 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/
pwd.h 68 #define _PATH_PASSWD "/etc/passwd"
69 #define _PATH_MASTERPASSWD "/etc/master.passwd"
72 #define _PATH_PASSWD_CONF "/etc/passwd.conf"
101 struct passwd struct
113 struct passwd* getpwnam(const char*);
114 struct passwd* getpwuid(uid_t);
116 int getpwnam_r(const char*, struct passwd*, char*, size_t, struct passwd**);
117 int getpwuid_r(uid_t, struct passwd*, char*, size_t, struct passwd**);
    [all...]

Completed in 1842 milliseconds

1 2 3 4 5 6 7 8 91011>>