Home
last modified time | relevance | path

Searched refs:statbuff (Results 1 – 1 of 1) sorted by relevance

/titanic_50/usr/src/lib/libc/port/gen/
H A Dsyslog.c185 struct stat statbuff; in vsyslog() local
232 if ((fstat(LogFile, &statbuff) != 0) || in vsyslog()
233 (!S_ISCHR(statbuff.st_mode)) || (statbuff.st_rdev != LogDev)) { in vsyslog()
432 struct stat statbuff; in openlog() local
445 if ((fstat(LogFile, &statbuff) == 0) && in openlog()
446 (S_ISCHR(statbuff.st_mode)) && (statbuff.st_rdev == LogDev)) in openlog()
452 (void) fstat(LogFile, &statbuff); in openlog()
453 LogDev = statbuff.st_rdev; in openlog()
464 struct stat statbuff; in closelog() local
476 if ((fstat(LogFile, &statbuff) == 0) && (statbuff.st_rdev == LogDev)) { in closelog()