Home
last modified time | relevance | path

Searched refs:openpty (Results 1 – 25 of 30) sorted by relevance

12

/external/python/cpython2/Lib/
Dpty.py21 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/
Dpty.rst32 .. function:: openpty()
34 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
/external/compiler-rt/test/msan/Linux/
Dforkpty.cc11 openpty(&master, &slave, NULL, NULL, NULL); in main()
/external/python/cpython2/Lib/test/
Dtest_openpty.py12 master, slave = os.openpty()
Dtest_ioctl.py71 mfd, sfd = pty.openpty()
/external/openssh/openbsd-compat/
Dbsd-openpty.c73 openpty(int *amaster, int *aslave, char *name, struct termios *termp, in openpty() function
DMakefile.in21 …tpeereid.o getrrsetbyname-ldns.o bsd-err.o bsd-misc.o bsd-nextstep.o bsd-openpty.o bsd-poll.o bsd-…
Dopenbsd-compat.h205 int openpty(int *, int *, char *, struct termios *, struct winsize *);
/external/autotest/client/cros/bluetooth/
Doutput_recorder.py75 self._master, self._slave = pty.openpty()
/external/openssh/
DAndroid.mk71 openbsd-compat/bsd-openpty.c \
Dsshpty.c70 i = openpty(ptyfd, ttyfd, NULL, NULL, NULL); in pty_allocate()
Dconfigure.ac1326 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);
Dconfig.h.in836 /* Define to 1 if you have the `openpty' function. */
Dconfigure9394 { $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/
Dat_channel_unittest.py29 master, slave = os.openpty()
Dat_transceiver_unittest.py48 master, slave = os.openpty()
Dwardmodem.py212 self._wm_at_port, self._mm_at_port = os.openpty()
/external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
Dnetwork_3GRecoverFromGobiDesync.py182 (master, slave) = pty.openpty()
/external/python/cpython2/Include/
Dpyport.h671 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc1222 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/
Dsanitizer_mac.cc193 if (openpty(&master, &slave, nullptr, nullptr, nullptr) == -1) return -1; in internal_forkpty()
/external/autotest/client/common_lib/
Dpexpect.py582 parent_fd, child_fd = os.openpty()
/external/python/cpython2/
Dconfigure11398 for ac_func in openpty
11423 char openpty ();
11427 return openpty ();
11463 char openpty ();
11467 return openpty ();
Dconfigure.ac3340 # 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"])
Dpyconfig.h.in502 /* Define to 1 if you have the `openpty' function. */

12