Symbol: _PATH_TTY
bin/ps/ps.c
216
_PATH_TTY, optarg);
games/hunt/huntd/driver.c
1074
if ((tty = open(_PATH_TTY, O_WRONLY)) >= 0) {
lib/libc/gen/ctermid.c
38
static char def[] = _PATH_TTY;
lib/libc/gen/ctermid.c
41
bcopy(def, s, sizeof(_PATH_TTY));
lib/libc/gen/readpassphrase.c
66
(input = output = __pledge_open(_PATH_TTY, O_RDWR | O_CLOEXEC)) == -1) {
sbin/dump/optr.c
83
if ((mytty = fopen(_PATH_TTY, "r")) == NULL)
sbin/dump/optr.c
84
quit("fopen on %s fails: %s\n", _PATH_TTY, strerror(errno));
sbin/fsck_ffs/utilities.c
643
info_fd = open(_PATH_TTY, O_WRONLY);
sbin/restore/tape.c
160
terminal = fopen(_PATH_TTY, "r");
sbin/restore/tape.c
162
warn("cannot open %s", _PATH_TTY);
usr.bin/login/login.c
143
char tbuf[PATH_MAX + 2], tname[sizeof(_PATH_TTY) + 10];
usr.bin/login/login.c
295
(void)snprintf(tname, sizeof(tname), "%s??", _PATH_TTY);
usr.bin/patch/patch.c
246
if (unveil(_PATH_TTY, "r") == -1) {
usr.bin/patch/util.c
268
ttyfd = open(_PATH_TTY, O_RDONLY);
usr.bin/ssh/misc.c
2026
if ((fd = open(_PATH_TTY, O_RDONLY | O_NOCTTY)) >= 0) {
usr.bin/ssh/readpass.c
151
ttyfd = open(_PATH_TTY, O_RDWR);
usr.bin/ssh/readpass.c
162
debug_f("can't open %s: %s", _PATH_TTY,
usr.bin/ssh/sshpty.c
112
fd = open(_PATH_TTY, O_WRONLY);
usr.bin/ssh/sshpty.c
193
if ((fd = open(_PATH_TTY, O_RDWR | O_NOCTTY)) >= 0) {
usr.bin/ssh/sshpty.c
81
fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
usr.bin/ssh/sshpty.c
94
fd = open(_PATH_TTY, O_RDWR | O_NOCTTY);
usr.bin/tmux/server-client.c
331
const char *ttynam = _PATH_TTY;
usr.bin/vi/cl/cl_main.c
186
} else if ((fd = open(_PATH_TTY, O_RDONLY)) != -1) {
usr.bin/vi/common/main.c
581
if ((fd = open(_PATH_TTY, O_RDONLY)) < 0) {
usr.bin/vi/common/main.c
582
warn("%s", _PATH_TTY);
usr.bin/xargs/xargs.c
539
if ((fd = open(_PATH_TTY, O_RDONLY)) == -1) {
usr.bin/xargs/xargs.c
614
if ((ttyfp = fopen(_PATH_TTY, "r")) == NULL)