/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 | 271 child_pid = forkpty(&pty_master, NULL, &tty_attr, &window_size); in main() 273 child_pid = forkpty(&pty_master, NULL, NULL, NULL); in main()
|
/external/python/cpython3/Lib/ |
D | pty.py | 84 pid, fd = os.forkpty()
|
/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/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/toybox/toys/pending/ |
D | telnetd.c | 196 if ((TT.fork_pid = forkpty(&fd, tty_name, NULL, NULL)) > 0) { in new_session()
|
/external/python/cpython2/ |
D | configure | 11540 for ac_func in forkpty 11565 char forkpty (); 11569 return forkpty (); 11605 char forkpty (); 11609 return forkpty ();
|
D | configure.ac | 3376 # check for openpty and forkpty 3384 AC_CHECK_FUNCS(forkpty,, 3385 AC_CHECK_LIB(util,forkpty, 3387 AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
|
D | pyconfig.h.in | 264 /* Define to 1 if you have the `forkpty' function. */
|
/external/python/cpython3/ |
D | configure.ac | 3839 # check for openpty and forkpty 3847 AC_CHECK_FUNCS(forkpty,, 3848 AC_CHECK_LIB(util,forkpty, 3850 AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
|
D | configure | 12515 for ac_func in forkpty 12540 char forkpty (); 12544 return forkpty (); 12580 char forkpty (); 12584 return forkpty ();
|
D | pyconfig.h.in | 339 /* 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/Doc/library/ |
D | os.rst | 1953 .. function:: forkpty()
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 4022 pid = forkpty(&master_fd, NULL, NULL, NULL); in posix_forkpty()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a1.rst | 167 Fixed return type of fork(), fork1() and forkpty() calls. Python expected
|
/external/python/cpython3/Modules/ |
D | posixmodule.c | 6045 pid = forkpty(&master_fd, NULL, NULL, NULL); in os_forkpty_impl()
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3304 .. 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
|
/external/python/cpython3/Misc/ |
D | HISTORY | 16955 - Bug #1983: Fixed return type of fork(), fork1() and forkpty() calls. 19397 - Patch #881820: look for openpty and forkpty also in libbsd. 26494 os/pty -- support for openpty and forkpty
|