HomeSort by relevance Sort by last modified time
    Searched refs:getspnam (Results 1 - 16 of 16) sorted by null

  /external/python/cpython2/Lib/test/
test_spwd.py 23 entry = spwd.getspnam(random_name)
44 spwd.getspnam('invalid user name')
45 self.assertEqual(str(cx.exception), "'getspnam(): name not found'")
46 self.assertRaises(TypeError, spwd.getspnam)
47 self.assertRaises(TypeError, spwd.getspnam, 0)
48 self.assertRaises(TypeError, spwd.getspnam, random_name, 0)
55 self.assertEqual(spwd.getspnam(unicode_name), entry)
  /external/python/cpython3/Lib/test/
test_spwd.py 23 entry = spwd.getspnam(random_name)
46 spwd.getspnam('invalid user name')
47 self.assertEqual(str(cx.exception), "'getspnam(): name not found'")
48 self.assertRaises(TypeError, spwd.getspnam)
49 self.assertRaises(TypeError, spwd.getspnam, 0)
50 self.assertRaises(TypeError, spwd.getspnam, random_name, 0)
56 self.assertRaises(TypeError, spwd.getspnam, bytes_name)
67 spwd.getspnam(name)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
shadow.h 87 extern struct spwd *getspnam (__const char *__name);
  /external/toybox/toys/lsb/
su.c 56 if (!(shp = getspnam(name))) perror_exit("no '%s'", name);
passwd.c 129 sp = getspnam(name);
  /external/toybox/toys/pending/
sulogin.c 104 if ((spwd = getspnam (pwd->pw_name))) pass = spwd->sp_pwdp;
  /external/python/cpython2/Modules/
spwdmodule.c 107 "getspnam(name) -> (sp_namp, sp_pwdp, sp_lstchg, sp_min, sp_max,\n\
116 if (!PyArg_ParseTuple(args, "s:getspnam", &name))
118 if ((p = getspnam(name)) == NULL) {
119 PyErr_SetString(PyExc_KeyError, "getspnam(): name not found");
161 {"getspnam", spwd_getspnam, METH_VARARGS, spwd_getspnam__doc__},
  /external/toybox/scripts/
genconfig.sh 76 struct spwd *a = getspnam("root"); return 0;
  /external/ppp/pppd/
session.c 186 struct spwd *getspnam();
324 spwd = getspnam(user);
  /external/python/cpython3/Modules/
spwdmodule.c 117 spwd.getspnam
139 if ((p = getspnam(name)) == NULL) {
143 PyErr_SetString(PyExc_KeyError, "getspnam(): name not found");
  /external/selinux/policycoreutils/run_init/
run_init.c 192 p_shadow_line = getspnam(p_passwd_line->pw_name);
  /external/toybox/toys/other/
login.c 95 struct spwd *spwd = getspnam (username);
  /external/selinux/policycoreutils/newrole/
newrole.c 358 p_shadow_line = getspnam(uname);
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp_xauth.c 1198 if ((spw = getspnam(usr)) == NULL)
    [all...]
  /external/python/cpython2/
configure     [all...]
  /external/python/cpython3/
configure     [all...]

Completed in 4274 milliseconds