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

1 2

  /libcore/luni/src/main/java/android/system/
StructPasswd.java 32 public final String pw_shell; field in class:StructPasswd
37 public StructPasswd(String pw_name, int pw_uid, int pw_gid, String pw_dir, String pw_shell) {
42 this.pw_shell = pw_shell;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
yppasswd.x 55 string pw_shell<>; /* default shell */
yppasswd.h 24 char *pw_shell; member in struct:passwd
  /external/e2fsprogs/include/mingw/
pwd.h 16 char *pw_shell; member in struct:passwd
  /external/e2fsprogs/include/nonunix/
pwd.h 18 char *pw_shell; member in struct:passwd
  /external/toybox/toys/pending/
useradd.c 75 if (pw && pw->pw_shell && *pw->pw_shell) TT.shell = xstrdup(pw->pw_shell);
79 pwd.pw_shell = TT.shell;
121 pwd.pw_shell);
sulogin.c 116 || (shell = pwd->pw_shell))
  /bionic/libc/include/
pwd.h 80 char* pw_shell; member in struct:passwd
  /bionic/tests/headers/posix/
pwd_h.c 39 STRUCT_MEMBER(struct passwd, char*, pw_shell);
  /external/toybox/toys/other/
login.c 151 setenv("SHELL", pwd->pw_shell, 1);
163 execl(pwd->pw_shell, xmprintf("-%s", pwd->pw_shell), (char *)0);
164 perror_exit("exec shell '%s'", pwd->pw_shell);
  /external/toybox/toys/lsb/
su.c 69 *(argv++) = TT.s ? TT.s : up->pw_shell;
84 setenv("SHELL", up->pw_shell, 1);
  /device/linaro/bootloader/edk2/StdLib/Include/
pwd.h 114 __aconst char *pw_shell; /* default shell */ member in struct:passwd
  /system/core/init/
host_init_parser.cpp 34 .pw_shell = dummy_buf,
  /external/selinux/policycoreutils/newrole/
newrole.c 431 if (!(pw && pw->pw_name && pw->pw_name[0] && pw->pw_shell
432 && pw->pw_shell[0] && pw->pw_dir && pw->pw_dir[0])) {
442 pw->pw_shell = strdup(pw->pw_shell);
444 if (!(pw->pw_name && pw->pw_dir && pw->pw_shell)) {
449 if (verify_shell(pw->pw_shell) == 0) {
458 free(pw->pw_shell);
461 pw->pw_shell = NULL;
522 rc |= setenv("SHELL", pw->pw_shell, 1);
1240 free(pw.pw_shell);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pwd.py 28 self.assertEqual(e[6], e.pw_shell)
29 self.assertIsInstance(e.pw_shell, basestring)
  /external/python/cpython2/Lib/test/
test_pwd.py 26 self.assertEqual(e[6], e.pw_shell)
27 self.assertIsInstance(e.pw_shell, basestring)
  /external/python/cpython3/Lib/test/
test_pwd.py 35 self.assertEqual(e[6], e.pw_shell)
36 self.assertIsInstance(e.pw_shell, str)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_pwd.py 28 self.assertEqual(e[6], e.pw_shell)
29 self.assertIsInstance(e.pw_shell, basestring)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_pwd.py 28 self.assertEqual(e[6], e.pw_shell)
29 self.assertIsInstance(e.pw_shell, basestring)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pwd.py 28 self.assertEqual(e[6], e.pw_shell)
29 self.assertIsInstance(e.pw_shell, basestring)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pwd.py 28 self.assertEqual(e[6], e.pw_shell)
29 self.assertIsInstance(e.pw_shell, basestring)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pwd.h 58 char *pw_shell; /* Shell program. */ member in struct:passwd
  /bionic/libc/bionic/
grp_pwd.cpp 106 dst->pw_shell = buf + required_byte_count;
107 required_byte_count += strlen(src->pw_shell) + 1;
113 snprintf(buf, byte_count, "%s%c%s%c%s", src->pw_name, 0, src->pw_dir, 0, src->pw_shell);
151 pw->pw_shell = state->sh_buffer_;
443 pw->pw_shell = state->sh_buffer_;
494 pw->pw_shell = state->sh_buffer_;
  /bionic/tests/
grp_pwd_file_test.cpp 51 EXPECT_STREQ(shell, name_passwd.pw_shell);
63 EXPECT_STREQ(shell, id_passwd.pw_shell);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xos_r.h 276 (p).pws.pw_shell = (p).pws.pw_dir + (p).len + 1;
277 (p).len = strlen((p).pwp->pw_shell);
278 strcpy((p).pws.pw_shell, (p).pwp->pw_shell);
304 ((p).pws.pw_shell = (p).pws.pw_dir + (p).len + 1), \
305 ((p).len = strlen((p).pwp->pw_shell)), \
306 strcpy((p).pws.pw_shell, (p).pwp->pw_shell), \
    [all...]

Completed in 1189 milliseconds

1 2