Lines Matching refs:tty
55 uv_tty_t tty;
57 fd = open("/dev/tty", O_RDONLY);
59 fprintf(stderr, "Cannot open /dev/tty as read-only: %s\n", strerror(errno));
64 r = uv_tty_init(uv_default_loop(), &tty, fd, 1);
67 uv_read_start((uv_stream_t*) &tty, alloc_cb, read_cb);
94 uv_tty_t tty;
110 fd = open("/dev/tty", O_RDONLY);
112 fprintf(stderr, "Cannot open /dev/tty as read-only: %s\n", strerror(errno));
117 r = uv_tty_init(uv_default_loop(), &tty, fd, 1);
120 r = uv_read_start((uv_stream_t*) &tty, alloc_cb, read_cb);