Lines Matching refs:rc
54 int rc; in isreallyatty() local
56 rc = !ioctl(file, TXISATTY + 0x81, NULL); in isreallyatty()
57 if (!rc && errno != EBADF) in isreallyatty()
60 return rc; in isreallyatty()
70 int rc; in uv__tcsetattr() local
73 rc = tcsetattr(fd, how, term); in uv__tcsetattr()
74 while (rc == -1 && errno == EINTR); in uv__tcsetattr()
76 if (rc == -1) in uv__tcsetattr()
222 int rc = r; in uv_tty_init() local
229 return rc; in uv_tty_init()
285 int rc; in uv_tty_set_mode() local
293 rc = tcgetattr(fd, &tty->orig_termios); in uv_tty_set_mode()
294 while (rc == -1 && errno == EINTR); in uv_tty_set_mode()
296 if (rc == -1) in uv_tty_set_mode()
330 rc = uv__tcsetattr(fd, TCSADRAIN, &tmp); in uv_tty_set_mode()
331 if (rc == 0) in uv_tty_set_mode()
334 return rc; in uv_tty_set_mode()