Searched defs:spwd (Results 1 - 3 of 3) 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/toybox/toys/other/
H A Dlogin.c95 struct spwd *spwd = getspnam (username); local
97 if (spwd) pass = spwd->sp_pwdp;
/external/toybox/toys/pending/
H A Dsulogin.c80 struct spwd * spwd = NULL; local
104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp;

Completed in 388 milliseconds