Searched refs:forkpty (Results 1 – 15 of 15) sorted by relevance
/external/compiler-rt/test/msan/Linux/ |
D | forkpty.cc | 16 forkpty(&master2, NULL, NULL, NULL); in main()
|
/external/compiler-rt/test/sanitizer_common/TestCases/Posix/ |
D | getpass.cc | 17 int pid = forkpty(&master, NULL, NULL, NULL); in main()
|
/external/selinux/policycoreutils/run_init/ |
D | open_init_pty.c | 249 child_pid = forkpty(&pty_master, NULL, &tty_attr, &window_size); in main() 251 child_pid = forkpty(&pty_master, NULL, NULL, NULL); in main()
|
/external/python/cpython2/Lib/ |
D | pty.py | 95 pid, fd = os.forkpty()
|
/external/python/cpython2/Include/ |
D | pyport.h | 672 extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
|
/external/toybox/toys/pending/ |
D | telnetd.c | 196 if ((TT.fork_pid = forkpty(&fd, tty_name, NULL, NULL)) > 0) { in new_session()
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 1234 INTERCEPTOR(int, forkpty, int *amaster, char *name, const void *termp, in INTERCEPTOR() argument 1238 int res = REAL(forkpty)(amaster, name, termp, winp); in INTERCEPTOR() 1587 INTERCEPT_FUNCTION(forkpty); in InitializeInterceptors()
|
/external/python/cpython2/ |
D | configure | 11495 for ac_func in forkpty 11520 char forkpty (); 11524 return forkpty (); 11560 char forkpty (); 11564 return forkpty ();
|
D | configure.ac | 3340 # check for openpty and forkpty 3348 AC_CHECK_FUNCS(forkpty,, 3349 AC_CHECK_LIB(util,forkpty, 3351 AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
|
D | pyconfig.h.in | 237 /* Define to 1 if you have the `forkpty' function. */
|
/external/compiler-rt/lib/dfsan/ |
D | libc_ubuntu1404_abilist.txt | 1756 fun:forkpty=uninstrumented
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 3998 pid = forkpty(&master_fd, NULL, NULL, NULL); in posix_forkpty()
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 1953 .. function:: forkpty()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 2013 - Patch #881820: look for openpty and forkpty also in libbsd. 9115 os/pty -- support for openpty and forkpty
|
D | NEWS | 10493 - Issue #1983: Fixed return type of fork(), fork1() and forkpty()
|