/external/python/cpython2/Lib/ |
D | pty.py | 21 def openpty(): function 26 return os.openpty() 39 master_fd, slave_fd = os.openpty() 107 master_fd, slave_fd = openpty()
|
/external/python/cpython2/Doc/library/ |
D | pty.rst | 32 .. function:: openpty() 34 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
|
/external/compiler-rt/test/msan/Linux/ |
D | forkpty.cc | 11 openpty(&master, &slave, NULL, NULL, NULL); in main()
|
/external/python/cpython2/Lib/test/ |
D | test_openpty.py | 12 master, slave = os.openpty()
|
D | test_ioctl.py | 71 mfd, sfd = pty.openpty()
|
/external/openssh/openbsd-compat/ |
D | bsd-openpty.c | 73 openpty(int *amaster, int *aslave, char *name, struct termios *termp, in openpty() function
|
D | Makefile.in | 21 …tpeereid.o getrrsetbyname-ldns.o bsd-err.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-…
|
D | openbsd-compat.h | 205 int openpty(int *, int *, char *, struct termios *, struct winsize *);
|
/external/autotest/client/cros/bluetooth/ |
D | output_recorder.py | 75 self._master, self._slave = pty.openpty()
|
/external/openssh/ |
D | Android.mk | 71 openbsd-compat/bsd-openpty.c \
|
D | sshpty.c | 70 i = openpty(ptyfd, ttyfd, NULL, NULL, NULL); in pty_allocate()
|
D | configure.ac | 1326 AC_SEARCH_LIBS([openpty], [util bsd]) 1328 AC_CHECK_FUNCS([fmt_scaled scan_scaled login logout openpty updwtmp logwtmp]) 2152 dnl make sure that openpty does not reacquire controlling terminal 2154 AC_MSG_CHECKING([if openpty correctly handles controlling tty]) 2177 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
|
D | config.h.in | 836 /* Define to 1 if you have the `openpty' function. */
|
D | configure | 9394 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing openpty" >&5 9395 $as_echo_n "checking for library containing openpty... " >&6; } 11894 openpty(&ptyfd, &ttyfd, NULL, NULL, NULL);
|
/external/autotest/client/cros/cellular/wardmodem/ |
D | at_channel_unittest.py | 29 master, slave = os.openpty()
|
D | at_transceiver_unittest.py | 48 master, slave = os.openpty()
|
D | wardmodem.py | 212 self._wm_at_port, self._mm_at_port = os.openpty()
|
/external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/ |
D | network_3GRecoverFromGobiDesync.py | 182 (master, slave) = pty.openpty()
|
/external/python/cpython2/Include/ |
D | pyport.h | 671 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 1222 INTERCEPTOR(int, openpty, int *amaster, int *aslave, char *name, in INTERCEPTOR() argument 1226 int res = REAL(openpty)(amaster, aslave, name, termp, winp); in INTERCEPTOR() 1586 INTERCEPT_FUNCTION(openpty); in InitializeInterceptors()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_mac.cc | 193 if (openpty(&master, &slave, nullptr, nullptr, nullptr) == -1) return -1; in internal_forkpty()
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 582 parent_fd, child_fd = os.openpty()
|
/external/python/cpython2/ |
D | configure | 11398 for ac_func in openpty 11423 char openpty (); 11427 return openpty (); 11463 char openpty (); 11467 return openpty ();
|
D | configure.ac | 3340 # check for openpty and forkpty 3342 AC_CHECK_FUNCS(openpty,, 3343 AC_CHECK_LIB(util,openpty, 3345 AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])
|
D | pyconfig.h.in | 502 /* Define to 1 if you have the `openpty' function. */
|