Lines Matching defs:statbuff
185 struct stat statbuff;
231 if ((fstat(LogFile, &statbuff) != 0) ||
232 (!S_ISCHR(statbuff.st_mode)) || (statbuff.st_rdev != LogDev)) {
430 struct stat statbuff;
443 if ((fstat(LogFile, &statbuff) == 0) &&
444 (S_ISCHR(statbuff.st_mode)) && (statbuff.st_rdev == LogDev))
450 (void) fstat(LogFile, &statbuff);
451 LogDev = statbuff.st_rdev;
462 struct stat statbuff;
474 if ((fstat(LogFile, &statbuff) == 0) && (statbuff.st_rdev == LogDev)) {