HomeSort by relevance Sort by last modified time
    Searched refs:pw_dir (Results 1 - 25 of 72) sorted by null

1 2 3

  /libcore/luni/src/main/java/android/system/
StructPasswd.java 31 public final String pw_dir; field in class:StructPasswd
37 public StructPasswd(String pw_name, int pw_uid, int pw_gid, String pw_dir, String pw_shell) {
41 this.pw_dir = pw_dir;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
yppasswd.x 54 string pw_dir<>; /* home directory */
yppasswd.h 23 char *pw_dir; member in struct:passwd
  /external/e2fsprogs/include/mingw/
pwd.h 15 char *pw_dir; member in struct:passwd
  /external/e2fsprogs/include/nonunix/
pwd.h 17 char *pw_dir; member in struct:passwd
  /bionic/libc/include/
pwd.h 79 char* pw_dir; member in struct:passwd
  /bionic/tests/headers/posix/
pwd_h.c 38 STRUCT_MEMBER(struct passwd, char*, pw_dir);
  /external/toybox/toys/lsb/
su.c 79 xchdir(up->pw_dir);
83 setenv("HOME", up->pw_dir, 1);
  /external/toybox/toys/other/
login.c 139 if (chdir(pwd->pw_dir)) printf("bad $HOME: %s\n", pwd->pw_dir);
150 setenv("HOME", pwd->pw_dir, 1);
  /external/toybox/toys/pending/
useradd.c 67 pwd.pw_dir = TT.dir ? TT.dir : xmprintf("/home/%s", *toys.optargs);
120 (long)pwd.pw_uid, (long)pwd.pw_gid, pwd.pw_gecos, pwd.pw_dir,
135 char *skel = "/etc/skel", *p = pwd.pw_dir;
  /external/curl/lib/
netrc.c 83 home = strdup(pw.pw_dir);
94 home = pw->pw_dir;
  /device/linaro/bootloader/edk2/StdLib/Include/
pwd.h 113 __aconst char *pw_dir; /* home directory */ member in struct:passwd
  /external/curl/src/
tool_homedir.c 80 home = pw->pw_dir;
  /system/core/init/
host_init_parser.cpp 33 .pw_dir = dummy_buf,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pwd.py 26 self.assertEqual(e[5], e.pw_dir)
27 self.assertIsInstance(e.pw_dir, basestring)
  /external/python/cpython2/Lib/test/
test_pwd.py 24 self.assertEqual(e[5], e.pw_dir)
25 self.assertIsInstance(e.pw_dir, basestring)
  /external/python/cpython3/Lib/test/
test_pwd.py 33 self.assertEqual(e[5], e.pw_dir)
34 self.assertIsInstance(e.pw_dir, str)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pwd.py 26 self.assertEqual(e[5], e.pw_dir)
27 self.assertIsInstance(e.pw_dir, basestring)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pwd.py 26 self.assertEqual(e[5], e.pw_dir)
27 self.assertIsInstance(e.pw_dir, basestring)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pwd.py 26 self.assertEqual(e[5], e.pw_dir)
27 self.assertIsInstance(e.pw_dir, basestring)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pwd.py 26 self.assertEqual(e[5], e.pw_dir)
27 self.assertIsInstance(e.pw_dir, basestring)
  /external/selinux/restorecond/
utmpwatcher.c 90 if (asprintf(&path, "%s%s", pwd->pw_dir, file) < 0)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pwd.h 57 char *pw_dir; /* Home directory. */ member in struct:passwd
  /external/selinux/libsemanage/src/
genhomedircon.c 369 int len = strlen(pwbuf->pw_dir) -1;
370 for(; len > 0 && pwbuf->pw_dir[len] == '/'; len--) {
371 pwbuf->pw_dir[len] = '\0';
373 if (strcmp(pwbuf->pw_dir, "/") == 0)
375 if (ignore(pwbuf->pw_dir))
377 if (semanage_str_count(pwbuf->pw_dir, '/') <= 1)
379 if (!(path = strdup(pwbuf->pw_dir))) {
398 WARN(s->h_semanage, "%s homedir %s or its parent directory conflicts with a file context already specified in the policy. This usually indicates an incorrectly defined system account. If it is a system account please make sure its uid is less than %u or greater than %u or its login shell is /sbin/nologin.", pwbuf->pw_name, pwbuf->pw_dir, minuid, maxuid);
1011 int len = strlen(pwent->pw_dir) -1;
1012 for(; len > 0 && pwent->pw_dir[len] == '/'; len--)
    [all...]
  /external/selinux/policycoreutils/newrole/
newrole.c 432 && pw->pw_shell[0] && pw->pw_dir && pw->pw_dir[0])) {
441 pw->pw_dir = strdup(pw->pw_dir);
444 if (!(pw->pw_name && pw->pw_dir && pw->pw_shell)) {
457 free(pw->pw_dir);
460 pw->pw_dir = NULL;
521 rc |= setenv("HOME", pw->pw_dir, 1);
1239 free(pw.pw_dir);
    [all...]

Completed in 608 milliseconds

1 2 3