/external/python/cpython2/Lib/test/ |
D | test_pty.py | 8 import pty 70 master_fd, slave_name = pty.master_open() 74 slave_fd = pty.slave_open(slave_name) 116 pid, master_fd = pty.fork() 117 if pid == pty.CHILD: 203 self.orig_stdin_fileno = pty.STDIN_FILENO 204 self.orig_stdout_fileno = pty.STDOUT_FILENO 205 self.orig_pty_select = pty.select 211 pty.STDIN_FILENO = self.orig_stdin_fileno 212 pty.STDOUT_FILENO = self.orig_stdout_fileno [all …]
|
D | test_ioctl.py | 24 import pty 26 pty = None variable 69 if not pty: 71 mfd, sfd = pty.openpty()
|
/external/python/cpython2/Doc/library/ |
D | pty.rst | 2 :mod:`pty` --- Pseudo-terminal utilities 5 .. module:: pty 12 The :mod:`pty` module defines operations for handling the pseudo-terminal 20 The :mod:`pty` module defines the following functions:
|
D | unix.rst | 23 pty.rst
|
/external/python/cpython2/Demo/scripts/ |
D | script.py | 11 import pty 40 pty.spawn(shell, read)
|
/external/autotest/client/cros/bluetooth/ |
D | output_recorder.py | 11 import pty 75 self._master, self._slave = pty.openpty()
|
/external/ltp/scenario_groups/ |
D | vts | 29 pty
|
D | default | 12 pty
|
/external/ltp/testcases/kernel/ |
D | Makefile | 51 pty \
|
/external/ltp/doc/ |
D | ltp-run-files.txt | 11 - pty
|
/external/autotest/client/site_tests/network_3GRecoverFromGobiDesync/ |
D | network_3GRecoverFromGobiDesync.py | 10 import pty 182 (master, slave) = pty.openpty()
|
/external/autotest/client/common_lib/ |
D | pexpect.py | 74 import pty 377 self.STDIN_FILENO = pty.STDIN_FILENO 378 self.STDOUT_FILENO = pty.STDOUT_FILENO 379 self.STDERR_FILENO = pty.STDERR_FILENO 527 self.pid, self.child_fd = pty.fork()
|
/external/openssh/ |
D | sshd.0 | 273 ignored. The command is run on a pty if the client requests a 274 pty; otherwise it is run without a tty. If an 8-bit clean 275 channel is required, one must not request a pty or should specify 276 no-pty. A quote may be included in the command by quoting it 329 no-pty Prevents tty allocation (a request to allocate a pty will fail). 358 pty Permits tty allocation previously disabled by the restrict 386 command="dump /home",no-pty,no-port-forwarding ssh-dss 394 restrict,pty,command="nethack" ssh-rsa AAAA1f8...IrrC5==
|
D | OVERVIEW | 104 It then makes any pty, forwarding, etc. requests. It may call 117 - Code to allocate and use a pseudo tty is in pty.c. Code to
|
D | PROTOCOL.certkeys | 277 permit-pty empty Flag indicating that PTY allocation
|
D | ssh-keygen.0 | 250 no-pty Disable PTY allocation (permitted by default). 265 permit-pty
|
/external/compiler-rt/lib/asan/scripts/ |
D | asan_symbolize.py | 182 import pty 184 pid, fd = pty.fork()
|
/external/syslinux/core/lwip/doc/ |
D | savannah.txt | 50 Server refused to allocate pty
|
/external/python/cpython2/Misc/ |
D | maintainers.rst | 177 pty
|
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 62 #define DEFINE_ITERATORS(camlname, cname, pty, cty, pfun) \ argument 64 CAMLprim value llvm_##camlname##_begin(pty Mom) { \ 80 CAMLprim value llvm_##camlname##_end(pty Mom) { \
|
/external/llvm/bindings/ocaml/llvm/ |
D | llvm_ocaml.c | 85 #define DEFINE_ITERATORS(camlname, cname, pty, cty, pfun) \ argument 87 CAMLprim value llvm_##camlname##_begin(pty Mom) { \ 103 CAMLprim value llvm_##camlname##_end(pty Mom) { \
|
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/ |
D | vmcore.ml | 344 let pty = pointer_type nsty in 345 struct_set_body nsty [| i32_type; pty |] false; 346 let elts = [| const_int i32_type 4; const_pointer_null pty |] in
|
/external/llvm/test/Bindings/OCaml/ |
D | core.ml | 398 let pty = pointer_type nsty in 399 struct_set_body nsty [| i32_type; pty |] false; 400 let elts = [| const_int i32_type 4; const_pointer_null pty |] in
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 11234 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) { in BuildBinOp() local 11236 if (pty->getKind() == BuiltinType::PseudoObject && in BuildBinOp() 11241 if (pty->getKind() == BuiltinType::Overload) { in BuildBinOp() 11262 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) { in BuildBinOp() local 11265 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) { in BuildBinOp() 11276 if (pty->getKind() == BuiltinType::Overload && in BuildBinOp() 11528 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) { in BuildUnaryOp() local 11530 if (pty->getKind() == BuiltinType::PseudoObject && in BuildUnaryOp() 11541 (pty->getKind() == BuiltinType::Overload || in BuildUnaryOp() 11542 pty->getKind() == BuiltinType::UnknownAny || in BuildUnaryOp() [all …]
|
/external/openssh/contrib/redhat/ |
D | openssh.spec | 511 - pull cvs patch to add session initialization to no-pty sessions
|