HomeSort by relevance Sort by last modified time
    Searched refs:openpty (Results 1 - 25 of 29) sorted by null

1 2

  /bionic/libc/include/
pty.h 39 int openpty(int*, int*, char*, const struct termios*, const struct winsize*);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
pty.h 34 extern int openpty (int *__amaster, int *__aslave, char *__name,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pty.h 34 extern int openpty (int *__amaster, int *__aslave, char *__name,
  /external/compiler-rt/test/msan/Linux/
forkpty.cc 11 openpty(&master, &slave, NULL, NULL, NULL);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_openpty.py 1 # Test to see if openpty works. (But don't worry if it isn't available.)
6 if not hasattr(os, "openpty"):
7 raise unittest.SkipTest, "No openpty() available."
12 master, slave = os.openpty()
test_ioctl.py 71 mfd, sfd = pty.openpty()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_openpty.py 1 # Test to see if openpty works. (But don't worry if it isn't available.)
6 if not hasattr(os, "openpty"):
7 raise unittest.SkipTest, "No openpty() available."
12 master, slave = os.openpty()
test_ioctl.py 71 mfd, sfd = pty.openpty()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_openpty.py 1 # Test to see if openpty works. (But don't worry if it isn't available.)
6 if not hasattr(os, "openpty"):
7 raise unittest.SkipTest, "No openpty() available."
12 master, slave = os.openpty()
test_ioctl.py 71 mfd, sfd = pty.openpty()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_openpty.py 1 # Test to see if openpty works. (But don't worry if it isn't available.)
6 if not hasattr(os, "openpty"):
7 raise unittest.SkipTest, "No openpty() available."
12 master, slave = os.openpty()
test_ioctl.py 71 mfd, sfd = pty.openpty()
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
21 def openpty(): function
22 """openpty() -> (master_fd, slave_fd)
23 Open a pty master/slave pair, using os.openpty() if possible."""
26 return os.openpty()
36 Deprecated, use openpty() instead."""
39 master_fd, slave_fd = os.openpty()
51 SGI and generic BSD version, for when openpty() fails."""
76 Deprecated, use openpty() instead."""
107 master_fd, slave_fd = openpty()
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
21 def openpty(): function
22 """openpty() -> (master_fd, slave_fd)
23 Open a pty master/slave pair, using os.openpty() if possible."""
26 return os.openpty()
36 Deprecated, use openpty() instead."""
39 master_fd, slave_fd = os.openpty()
51 SGI and generic BSD version, for when openpty() fails."""
76 Deprecated, use openpty() instead."""
107 master_fd, slave_fd = openpty()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
21 def openpty(): function
22 """openpty() -> (master_fd, slave_fd)
23 Open a pty master/slave pair, using os.openpty() if possible."""
26 return os.openpty()
36 Deprecated, use openpty() instead."""
39 master_fd, slave_fd = os.openpty()
51 SGI and generic BSD version, for when openpty() fails."""
76 Deprecated, use openpty() instead."""
107 master_fd, slave_fd = openpty()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
21 def openpty(): function
22 """openpty() -> (master_fd, slave_fd)
23 Open a pty master/slave pair, using os.openpty() if possible."""
26 return os.openpty()
36 Deprecated, use openpty() instead."""
39 master_fd, slave_fd = os.openpty()
51 SGI and generic BSD version, for when openpty() fails."""
76 Deprecated, use openpty() instead."""
107 master_fd, slave_fd = openpty()
    [all...]
  /bionic/tests/
pty_test.cpp 30 TEST(pty, openpty) {
34 ASSERT_EQ(0, openpty(&master, &slave, name, NULL, &w));
117 ASSERT_EQ(0, openpty(&master, &slave, nullptr, nullptr, nullptr));
  /bionic/libc/bionic/
pty.cpp 118 int openpty(int* master, int* slave, char* name, const termios* t, const winsize* ws) { function
157 if (openpty(&master, &slave, name, t, ws) == -1) {
  /external/autotest/client/cros/cellular/wardmodem/
at_channel_unittest.py 29 master, slave = os.openpty()
at_transceiver_unittest.py 48 master, slave = os.openpty()
  /external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/
network_3GRecoverFromGobiDesync.py 182 (master, slave) = pty.openpty()
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyport.h 672 /* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
675 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
pyport.h 672 /* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
675 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyport.h 672 /* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
675 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyport.h 672 /* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
675 extern int openpty(int *, int *, char *, struct termios *, struct winsize *);
    [all...]

Completed in 1052 milliseconds

1 2