/third_party/python/Lib/ |
D | pty.py | 26 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/ |
D | openpty.c | 32 int ret = openpty(&amaster, &aslave, NULL, NULL, NULL); in openpty_0100() 51 int ret = openpty(&amaster, &aslave, name, &tio, &size); in openpty_0200()
|
D | test_src_functionalext_supplement_misc.gni | 44 "openpty",
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | pty.h | 11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | pty.h | 11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
|
/third_party/musl/include/ |
D | pty.h | 11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | pty.h | 11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
|
/third_party/musl/ndk_musl_include/ |
D | pty.h | 11 int openpty(int *, int *, char *, const struct termios *, const struct winsize *);
|
/third_party/python/Lib/test/ |
D | test_openpty.py | 11 master, slave = os.openpty()
|
D | test_pty.py | 165 master_fd, slave_fd = pty.openpty(mode, new_stdin_winsz) 167 master_fd, slave_fd = pty.openpty() 299 master_fd, slave_fd = pty.openpty()
|
D | test_ioctl.py | 72 mfd, sfd = pty.openpty()
|
D | test_readline.py | 310 [master, slave] = pty.openpty()
|
/third_party/musl/src/misc/ |
D | openpty.c | 10 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() function
|
D | forkpty.c | 15 if (openpty(&m, &s, name, tio, ws) < 0) return -1; in forkpty()
|
/third_party/musl/porting/liteos_a/user/src/misc/ |
D | openpty.c | 11 int openpty(int *pm, int *ps, char *name, const struct termios *tio, const struct winsize *ws) in openpty() function
|
/third_party/ltp/testcases/cve/ |
D | cve-2014-0196.c | 51 if (openpty(amaster, aslave, NULL, NULL, NULL) == -1) in create_pty()
|
/third_party/node/test/pseudo-tty/ |
D | pty_helper.py | 51 parent_fd, child_fd = pty.openpty()
|
/third_party/python/Doc/library/ |
D | pty.rst | 35 .. function:: openpty() 37 Open a new pseudo-terminal pair, using :func:`os.openpty` if possible, or
|
/third_party/littlefs/scripts/ |
D | test.py | 279 mpty, spty = pty.openpty() 676 mpty, spty = pty.openpty()
|
/third_party/libuv/test/ |
D | test-tty.c | 447 r = openpty(&master_fd, &slave_fd, NULL, NULL, &w); in TEST_IMPL()
|
/third_party/musl/ |
D | libc.map.txt | 1243 openpty;
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_events.py | 1402 master, slave = os.openpty() 1501 master, slave = os.openpty() 1546 master, read_slave = os.openpty()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a3.rst | 417 are being set properly by pty.openpty(). In order to add support for
|
/third_party/python/ |
D | configure | 12960 for ac_func in openpty 12985 char openpty (); 12989 return openpty (); 13025 char openpty (); 13029 return openpty ();
|
D | configure.ac | 4027 # 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"])
|