/bionic/libc/arch-mips/syscalls/ |
setsid.S | 4 .globl setsid 6 .ent setsid 8 setsid: label 22 .end setsid
|
/bionic/libc/arch-arm/syscalls/ |
setsid.S | 6 ENTRY(setsid) function 15 END(setsid)
|
/bionic/libc/arch-x86/syscalls/ |
setsid.S | 6 ENTRY(setsid) function 18 END(setsid)
|
/bionic/libc/bionic/ |
daemon.c | 63 if ( setsid() < 0 )
|
/external/openssh/openbsd-compat/ |
daemon.c | 65 if (setsid() == -1)
|
bsd-misc.h | 27 #define setsid() setpgrp(0, getpid()) macro
|
/external/chromium_org/tools/android/adb_reboot/ |
adb_reboot.c | 29 setsid(); /* obtain a new process group */
|
/system/extras/tests/cpueater/ |
cpueater.c | 43 setsid();
|
daemonize.c | 95 setsid();
|
/external/chromium_org/tools/android/common/ |
daemon.cc | 59 sleep(10); // Wait for the child process to finish setsid(). 64 setsid(); // Detach the child process from its parent.
|
/external/clang/tools/scan-view/ |
startfile.py | 53 setsid = getattr(os, 'setsid', None) 54 if not setsid: 55 setsid = getattr(os, 'setpgrp', None) 59 preexec_fn=setsid, startupinfo=startupinfo)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 195 setsid = getattr(os, 'setsid', None) 196 if not setsid: 197 setsid = getattr(os, 'setpgrp', None) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 232 setsid = getattr(os, 'setsid', None) 233 if not setsid: 234 setsid = getattr(os, 'setpgrp', None) 238 stderr=inout, preexec_fn=setsid) [all...] |
pty.py | 101 os.setsid() 111 os.setsid()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 195 setsid = getattr(os, 'setsid', None) 196 if not setsid: 197 setsid = getattr(os, 'setpgrp', None) 198 p = subprocess.Popen(cmdline, close_fds=True, preexec_fn=setsid) 232 setsid = getattr(os, 'setsid', None) 233 if not setsid: 234 setsid = getattr(os, 'setpgrp', None) 238 stderr=inout, preexec_fn=setsid) [all...] |
pty.py | 101 os.setsid() 111 os.setsid()
|
/external/chromium_org/v8/tools/testrunner/server/ |
daemon.py | 49 os.setsid()
|
/external/dropbear/ |
compat.c | 174 if (setsid() == -1)
|
svr-main.c | 98 * already done setsid() after forking (xinetd on Darwin appears to do 100 setsid(); 299 if (setsid() < 0) { 300 dropbear_exit("setsid: %s", strerror(errno));
|
/external/openssh/ |
sshpty.c | 112 if (setsid() < 0) 113 error("setsid: %.100s", strerror(errno)); 143 if (setsid() < 0) 144 error("setsid: %.100s", strerror(errno));
|
/bionic/libc/include/ |
unistd.h | 63 extern pid_t setsid(void);
|
/development/ndk/platforms/android-3/include/ |
unistd.h | 63 extern pid_t setsid(void);
|
/development/ndk/platforms/android-8/include/ |
unistd.h | 63 extern pid_t setsid(void);
|
/development/ndk/platforms/android-9/include/ |
unistd.h | 63 extern pid_t setsid(void);
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/ |
unistd.h | 63 extern pid_t setsid(void);
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/ |
unistd.h | 63 extern pid_t setsid(void);
|