HomeSort by relevance Sort by last modified time
    Searched defs:spwd (Results 1 - 4 of 4) sorted by null

  /external/toybox/toys/pending/
sulogin.c 80 struct spwd * spwd = NULL; local
104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
shadow.h 40 struct spwd struct
79 extern struct spwd *getspent (void);
87 extern struct spwd *getspnam (__const char *__name);
95 extern struct spwd *sgetspent (__const char *__string);
103 extern struct spwd *fgetspent (FILE *__stream);
111 extern int putspent (__const struct spwd *__p, FILE *__stream);
121 extern int getspent_r (struct spwd *__result_buf, char *__buffer,
122 size_t __buflen, struct spwd **__result);
124 extern int getspnam_r (__const char *__name, struct spwd *__result_buf,
126 struct spwd **__result)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
shadow.h 40 struct spwd struct
79 extern struct spwd *getspent (void);
87 extern struct spwd *getspnam (__const char *__name);
95 extern struct spwd *sgetspent (__const char *__string);
103 extern struct spwd *fgetspent (FILE *__stream);
111 extern int putspent (__const struct spwd *__p, FILE *__stream);
121 extern int getspent_r (struct spwd *__result_buf, char *__buffer,
122 size_t __buflen, struct spwd **__result);
124 extern int getspnam_r (__const char *__name, struct spwd *__result_buf,
126 struct spwd **__result)
    [all...]
  /external/toybox/toys/other/
login.c 149 struct spwd * spwd = NULL; local
186 spwd = getspnam (username);
187 if (spwd) pass = spwd->sp_pwdp;
205 spwd = 0;

Completed in 250 milliseconds