Lines Matching refs:statbuf
294 struct stat statbuf; local
309 if (stat(cp, &statbuf) < 0) {
315 if (!S_ISCHR(statbuf.st_mode)) {
323 devstat = statbuf;
445 struct stat statbuf; in tty_check_options() local
488 if (fstat(0, &statbuf) >= 0 && S_ISCHR(statbuf.st_mode) in tty_check_options()
489 && statbuf.st_rdev == devstat.st_rdev) { in tty_check_options()
503 if (log_to_fd >= 0 && fstat(log_to_fd, &statbuf) >= 0 in tty_check_options()
504 && S_ISCHR(statbuf.st_mode) && statbuf.st_rdev == devstat.st_rdev) in tty_check_options()
518 struct stat statbuf; in connect_tty() local
595 if (fstat(ttyfd, &statbuf) < 0 in connect_tty()
596 || fchmod(ttyfd, statbuf.st_mode & ~(S_IWGRP | S_IWOTH)) < 0) { in connect_tty()
599 tty_mode = statbuf.st_mode; in connect_tty()