HomeSort by relevance Sort by last modified time
    Searched defs:pty (Results 1 - 14 of 14) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ioctl.py 24 import pty namespace
26 pty = None variable
69 if not pty:
70 raise unittest.SkipTest('pty module required')
71 mfd, sfd = pty.openpty()
test_pty.py 8 import pty namespace
49 # Marginal testing of pty suite. Cannot do extensive 'do or fail' testing
50 # because pty code is not too portable.
70 master_fd, slave_name = pty.master_open()
74 slave_fd = pty.slave_open(slave_name)
115 debug("calling pty.fork()")
116 pid, master_fd = pty.fork()
117 if pid == pty.CHILD:
123 # After pty.fork(), the child should already be a session leader.
133 # Have pty, but not setsid()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_ioctl.py 24 import pty namespace
26 pty = None variable
69 if not pty:
70 raise unittest.SkipTest('pty module required')
71 mfd, sfd = pty.openpty()
test_pty.py 8 import pty namespace
49 # Marginal testing of pty suite. Cannot do extensive 'do or fail' testing
50 # because pty code is not too portable.
70 master_fd, slave_name = pty.master_open()
74 slave_fd = pty.slave_open(slave_name)
115 debug("calling pty.fork()")
116 pid, master_fd = pty.fork()
117 if pid == pty.CHILD:
123 # After pty.fork(), the child should already be a session leader.
133 # Have pty, but not setsid()
    [all...]
  /external/chromium_org/tools/valgrind/asan/third_party/
asan_symbolize.py 13 import pty namespace
154 output. Uses pty to trick the child into providing unbuffered output.
157 pid, fd = pty.fork()
  /external/compiler-rt/lib/asan/scripts/
asan_symbolize.py 13 import pty namespace
154 output. Uses pty to trick the child into providing unbuffered output.
157 pid, fd = pty.fork()
  /external/chromium_org/third_party/pexpect/
pexpect.py 9 the standard Python pty module. The Pexpect interface focuses on ease of use so
76 import pty namespace
393 self.STDIN_FILENO = pty.STDIN_FILENO
394 self.STDOUT_FILENO = pty.STDOUT_FILENO
395 self.STDERR_FILENO = pty.STDERR_FILENO
445 # Solaris uses internal __fork_pty(). All others use pty.fork().
515 fork/exec type of stuff for a pty. This is called by __init__. If args
561 self.pid, self.child_fd = pty.fork()
563 raise ExceptionPexpect('pty.fork() failed: ' + str(e))
607 should be more portable than the pty.fork() function. Specifically
    [all...]
  /external/lldb/test/pexpect-2.4/
pexpect.py 9 the standard Python pty module. The Pexpect interface focuses on ease of use so
75 import pty namespace
378 self.STDIN_FILENO = pty.STDIN_FILENO
379 self.STDOUT_FILENO = pty.STDOUT_FILENO
380 self.STDERR_FILENO = pty.STDERR_FILENO
417 # Solaris uses internal __fork_pty(). All others use pty.fork().
487 fork/exec type of stuff for a pty. This is called by __init__. If args
528 self.pid, self.child_fd = pty.fork()
530 raise ExceptionPexpect('Error! pty.fork() failed: ' + str(e))
571 should be more portable than the pty.fork() function. Specifically
    [all...]
  /external/llvm/test/Bindings/Ocaml/
vmcore.ml 360 let pty = pointer_type nsty in var
361 struct_set_body nsty [| i32_type; pty |] false;
362 let elts = [| const_int i32_type 4; const_pointer_null pty |] in
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 661 lldb_utility::PseudoTerminal pty; local
674 if (pty.OpenFirstAvailableMaster(O_RDWR|O_NOCTTY, NULL, 0))
675 slave_name = pty.GetSlaveName (NULL, 0);
766 if (pty.GetMasterFileDescriptor() != lldb_utility::PseudoTerminal::invalid_fd)
767 SetSTDIOFileDescriptor (pty.ReleaseMasterFileDescriptor());
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/
MachProcess.cpp 1861 PseudoTerminal pty; local
2004 PseudoTerminal pty; local
2221 PseudoTerminal pty; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c 20072 xmlSchemaTypePtr tx, ty, ptx, pty; local
    [all...]
  /external/libxml2/
xmlschemas.c 20101 xmlSchemaTypePtr tx, ty, ptx, pty; local
    [all...]
  /external/qemu/qapi-auto-generated/
qapi-types.h 3018 ChardevDummy * pty; member in union:ChardevBackend::__anon33790
3038 char * pty; member in struct:ChardevReturn
    [all...]

Completed in 373 milliseconds