Searched refs:spwd (Results 1 - 16 of 16) sorted by relevance

/external/python/cpython2/Lib/test/
H A Dtest_spwd.py5 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
[all...]
/external/ppp/pppd/
H A Dsession.c185 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
[all...]
/external/toybox/toys/pending/
H A Dsulogin.c80 struct spwd * spwd = NULL; local
104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp;
/external/python/cpython2/Modules/
H A Dspwdmodule.c43 "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/toybox/toys/other/
H A Dlogin.c95 struct spwd *spwd = getspnam (username); local
97 if (spwd) pass = spwd->sp_pwdp;
/external/openssh/
H A Dauth-shadow.c56 auth_shadow_acctexpired(struct spwd *spw)
90 struct spwd *spw = NULL;
H A Dauth.h140 int auth_shadow_acctexpired(struct spwd *);
H A Dauth.c108 struct spwd *spw = NULL;
H A Dconfigure18293 struct spwd sp;
/external/toybox/toys/lsb/
H A Dsu.c46 struct spwd *shp;
H A Dpasswd.c108 struct spwd *sp;
/external/openssh/openbsd-compat/
H A Dxcrypt.c140 struct spwd *spw = getspnam(pw->pw_name);
/external/toybox/scripts/
H A Dgenconfig.sh76 struct spwd *a = getspnam("root"); return 0;
/external/selinux/policycoreutils/run_init/
H A Drun_init.c185 struct spwd *p_shadow_line; /* struct derived from shadow passwd file line */
/external/selinux/policycoreutils/newrole/
H A Dnewrole.c353 struct spwd *p_shadow_line;
/external/ipsec-tools/src/racoon/
H A Disakmp_xauth.c1196 struct spwd *spw;

Completed in 587 milliseconds