| /xsrc/external/mit/luit/dist/ |
| luit.c | 476 setup_io(int pty) 486 rc = copyTermios(0, pty); 498 val = fcntl(pty, F_GETFL, 0); 500 fcntl(pty, F_SETFL, val | O_NONBLOCK); 503 setWindowSize(0, pty); 509 cleanup_io(int pty) 522 val = fcntl(pty, F_GETFL, 0); 524 fcntl(pty, F_SETFL, val & ~O_NONBLOCK); 551 int pty; local 563 rc = allocatePty(&pty, &line) [all...] |
| sys.c | 62 #include <pty.h> 79 #include <pty.h> 308 "pty is insecure!\n"); 317 "pty is insecure!\n"); 328 int pty = -1; local 339 pty = posix_openpt(O_RDWR); 341 pty = open("/dev/ptmx", O_RDWR); 343 if (pty < 0) 346 rc = grantpt(pty); 348 close(pty); [all...] |
| /xsrc/external/mit/xterm/dist/ |
| button.c | 1335 erases[0] = (Char) get_tty_erase(screen->respond, XTERM_ERASE, "pty"); 1469 int pty = screen->respond; local 1481 v_write(pty, Line, (size_t) 1); 1490 v_write(pty, Line, (size_t) 1); 2288 #define tty_vwrite(pty,lag,l) v_write(pty,lag,(size_t) l) 2464 quote[0] = (Char) get_tty_lnext(screen->respond, XTERM_LNEXT, "pty"); 2681 /* SelectionReceived: stuff received selection text into pty */ 5411 int pty = screen->respond; local 5575 v_write(pty, line, (size_t) count) [all...] |
| misc.c | 588 * XEvent queue. Other sources i.e., the pty are handled elsewhere 1655 int pty = screen->respond; /* file descriptor of pty */ local 1728 v_write(pty, copybuffer, buf_cnt);
|