Home
last modified time | relevance | path

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

12

/third_party/python/Lib/
Dpty.py26 def openpty(): function
31 return os.openpty()
44 master_fd, slave_fd = os.openpty()
101 master_fd, slave_fd = openpty()
/third_party/musl/libc-test/src/functionalext/supplement/misc/
Dopenpty.c32 int ret = openpty(&amaster, &aslave, NULL, NULL, NULL); in openpty_0100()
51 int ret = openpty(&amaster, &aslave, name, &tio, &size); in openpty_0200()
Dtest_src_functionalext_supplement_misc.gni44 "openpty",
/third_party/musl/porting/uniproton/kernel/include/
Dpty.h11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
/third_party/musl/porting/liteos_m/kernel/include/
Dpty.h11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
/third_party/musl/include/
Dpty.h11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dpty.h11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
/third_party/musl/ndk_musl_include/
Dpty.h11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
/third_party/python/Lib/test/
Dtest_openpty.py11 master, slave = os.openpty()
Dtest_pty.py165 master_fd, slave_fd = pty.openpty(mode, new_stdin_winsz)
167 master_fd, slave_fd = pty.openpty()
299 master_fd, slave_fd = pty.openpty()
Dtest_ioctl.py72 mfd, sfd = pty.openpty()
Dtest_readline.py310 [master, slave] = pty.openpty()
/third_party/musl/src/misc/
Dopenpty.c10 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() function
Dforkpty.c15 if (openpty(&m, &s, name, tio, ws) < 0) return -1; in forkpty()
/third_party/musl/porting/liteos_a/user/src/misc/
Dopenpty.c11 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() function
/third_party/ltp/testcases/cve/
Dcve-2014-0196.c51 if (openpty(amaster, aslave, NULL, NULL, NULL) == -1) in create_pty()
/third_party/node/test/pseudo-tty/
Dpty_helper.py51 parent_fd, child_fd = pty.openpty()
/third_party/python/Doc/library/
Dpty.rst35 .. function:: openpty()
37 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
/third_party/littlefs/scripts/
Dtest.py279 mpty, spty = pty.openpty()
676 mpty, spty = pty.openpty()
/third_party/libuv/test/
Dtest-tty.c447 r = openpty(&master_fd, &slave_fd, NULL, NULL, &w); in TEST_IMPL()
/third_party/musl/
Dlibc.map.txt1243 openpty;
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py1402 master, slave = os.openpty()
1501 master, slave = os.openpty()
1546 master, read_slave = os.openpty()
/third_party/python/Misc/NEWS.d/
D3.10.0a3.rst417 are being set properly by pty.openpty(). In order to add support for
/third_party/python/
Dconfigure12960 for ac_func in openpty
12985 char openpty ();
12989 return openpty ();
13025 char openpty ();
13029 return openpty ();
Dconfigure.ac4027 # check for openpty and forkpty
4029 AC_CHECK_FUNCS(openpty,,
4030 AC_CHECK_LIB(util,openpty,
4032 AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])

12