/external/python/cpython2/Lib/test/ |
test_spwd.py | 5 spwd = test_support.import_module('spwd') variable 13 entries = spwd.getspall() 16 self.assertIsInstance(entry, spwd.struct_spwd) 19 entries = spwd.getspall() 23 entry = spwd.getspnam(random_name) 24 self.assertIsInstance(entry, spwd.struct_spwd) 44 spwd.getspnam('invalid user name') 46 self.assertRaises(TypeError, spwd.getspnam) 47 self.assertRaises(TypeError, spwd.getspnam, 0 [all...] |
/external/python/cpython3/Lib/test/ |
test_spwd.py | 5 spwd = support.import_module('spwd') variable 13 entries = spwd.getspall() 16 self.assertIsInstance(entry, spwd.struct_spwd) 19 entries = spwd.getspall() 23 entry = spwd.getspnam(random_name) 24 self.assertIsInstance(entry, spwd.struct_spwd) 46 spwd.getspnam('invalid user name') 48 self.assertRaises(TypeError, spwd.getspnam) 49 self.assertRaises(TypeError, spwd.getspnam, 0 [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/python/cpython3/Modules/ |
spwdmodule.c | 16 module spwd 50 "spwd.struct_spwd: Results from getsp*() routines.\n\n\ 56 "spwd.struct_spwd", 78 static PyObject *mkspent(struct spwd *p) 117 spwd.getspnam 124 See `help(spwd)` for more on shadow password database entries. 132 struct spwd *p; 157 spwd.getspall 161 See `help(spwd)` for more on shadow password database entries. 169 struct spwd *p [all...] |
/external/python/cpython2/Doc/library/ |
unix.rst | 17 spwd.rst
|
spwd.rst | 2 :mod:`spwd` --- The shadow password database 5 .. module:: spwd 19 attributes correspond to the members of the ``spwd`` structure (Attribute field
|
pwd.rst | 48 system-dependent. If available, the :mod:`spwd` module should be used where 74 Module :mod:`spwd`
|
grp.rst | 63 Module :mod:`spwd`
|
/external/python/cpython3/Doc/library/ |
unix.rst | 16 spwd.rst
|
spwd.rst | 1 :mod:`spwd` --- The shadow password database 4 .. module:: spwd 17 attributes correspond to the members of the ``spwd`` structure (Attribute field
|
pwd.rst | 48 system-dependent. If available, the :mod:`spwd` module should be used where 74 Module :mod:`spwd`
|
grp.rst | 66 Module :mod:`spwd`
|
/external/toybox/toys/pending/ |
sulogin.c | 80 struct spwd * spwd = NULL; local 104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp;
|
/external/python/cpython2/Modules/ |
spwdmodule.c | 43 "spwd.struct_spwd: Results from getsp*() routines.\n\n\ 49 "spwd.struct_spwd", 70 static PyObject *mkspent(struct spwd *p) 110 See spwd.__doc__ for more on shadow password database entries."); 115 struct spwd *p; 133 See spwd.__doc__ for more on shadow password database entries."); 139 struct spwd *p; 174 m=Py_InitModule3("spwd", spwd_methods, spwd__doc__);
|
/external/python/cpython3/Modules/clinic/ |
spwdmodule.c.h | 13 "See `help(spwd)` for more on shadow password database entries."); 46 "See `help(spwd)` for more on shadow password database entries.");
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
spwd.so | |
/external/ppp/pppd/ |
session.c | 185 struct spwd *spwd; 186 struct spwd *getspnam(); 324 spwd = getspnam(user); 331 if (spwd == NULL) 342 if ((spwd->sp_expire > 0 && now >= spwd->sp_expire) 343 || ((spwd->sp_max >= 0 && spwd->sp_max < 10000) 344 && spwd->sp_lstchg >= [all...] |
/external/toybox/toys/other/ |
login.c | 95 struct spwd *spwd = getspnam (username); local 97 if (spwd) pass = spwd->sp_pwdp;
|
/external/toybox/toys/lsb/ |
su.c | 46 struct spwd *shp;
|
passwd.c | 108 struct spwd *sp;
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
pwd.h | 80 #define _PATH_SMP_DB "/etc/spwd.db"
|
/external/toybox/scripts/ |
genconfig.sh | 76 struct spwd *a = getspnam("root"); return 0;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/config/ |
Setup | 116 #FIXME: setup.py detect this module along with grp and spwd. 204 #spwd spwdmodule.c # spwd(3)
|
/prebuilts/gdb/linux-x86/lib/python2.7/config/ |
Setup | 116 #FIXME: setup.py detect this module along with grp and spwd. 204 #spwd spwdmodule.c # spwd(3)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/ |
Setup | 116 #FIXME: setup.py detect this module along with grp and spwd. 204 #spwd spwdmodule.c # spwd(3)
|