HomeSort by relevance Sort by last modified time
    Searched defs:pty (Results 1 - 10 of 10) 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/compiler-rt/lib/asan/scripts/
asan_symbolize.py 13 import pty namespace
143 output. Uses pty to trick the child into providing unbuffered output.
146 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/llvm/test/Bindings/Ocaml/
vmcore.ml 346 let pty = pointer_type nsty in var
347 struct_set_body nsty [| i32_type; pty |] false;
348 let elts = [| const_int i32_type 4; const_pointer_null pty |] in
    [all...]
  /hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
JFmRx.java 63 void fmRxPtyCodeChanged(JFmRx context, JFmRxStatus status, JFmRxRdsPtyCode pty);
1554 JFmRxRdsPtyCode pty = new JFmRxRdsPtyCode(ptyValue); local
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemas.c 20072 xmlSchemaTypePtr tx, ty, ptx, pty; local
    [all...]
  /external/libxml2/
xmlschemas.c 20073 xmlSchemaTypePtr tx, ty, ptx, pty; local
    [all...]

Completed in 464 milliseconds