HomeSort by relevance Sort by last modified time
    Searched refs:forkpty (Results 1 - 21 of 21) sorted by null

  /bionic/libc/include/
pty.h 40 int forkpty(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 40 extern int forkpty (int *__amaster, char *__name,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pty.h 40 extern int forkpty (int *__amaster, char *__name,
  /external/compiler-rt/test/msan/Linux/
forkpty.cc 16 forkpty(&master2, NULL, NULL, NULL);
  /external/compiler-rt/test/sanitizer_common/TestCases/Linux/
getpass.cc 13 int pid = forkpty(&master, NULL, NULL, NULL);
16 fprintf(stderr, "forkpty failed\n");
  /bionic/tests/
pty_test.cpp 54 TEST(pty, forkpty) {
58 pid_t pid = forkpty(&master, NULL, NULL, NULL);
  /bionic/libc/bionic/
pty.cpp 154 int forkpty(int* amaster, char* name, const termios* t, const winsize* ws) { function
  /external/toybox/toys/other/
netcat.c 169 child = forkpty(&(pollfds[1].fd), NULL, NULL, NULL);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pty.py 95 pid, fd = os.forkpty()
103 # os.forkpty() already set us session leader
  /prebuilts/gdb/linux-x86/lib/python2.7/
pty.py 95 pid, fd = os.forkpty()
103 # os.forkpty() already set us session leader
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 95 pid, fd = os.forkpty()
103 # os.forkpty() already set us session leader
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 95 pid, fd = os.forkpty()
103 # os.forkpty() already set us session leader
  /external/selinux/policycoreutils/run_init/
open_init_pty.c 38 #include <pty.h> /* for forkpty */
249 child_pid = forkpty(&pty_master, NULL, &tty_attr, &window_size);
251 child_pid = forkpty(&pty_master, NULL, NULL, NULL);
255 perror("forkpty()");
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyport.h 672 /* BSDI does not supply a prototype for the 'openpty' and 'forkpty'
676 extern pid_t forkpty(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'
676 extern pid_t forkpty(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'
676 extern pid_t forkpty(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'
676 extern pid_t forkpty(int *, char *, struct termios *, struct winsize *);
    [all...]
  /external/compiler-rt/lib/msan/
msan_interceptors.cc     [all...]
  /external/toybox/toys/pending/
telnetd.c 196 if ((TT.fork_pid = forkpty(&fd, tty_name, NULL, NULL)) > 0) {
  /system/core/adb/
shell_service.cpp 291 pid_ = forkpty(&fd, pts_name, nullptr, nullptr);
  /packages/apps/Terminal/jni/
com_android_terminal_Terminal.cpp 334 mChildPid = forkpty(&mMasterFd, NULL, &termios, &size);

Completed in 746 milliseconds