Lines Matching refs:statbuf
108 struct stat64 statbuf; local
110 struct stat statbuf; local
135 (stat64(file, &statbuf) && (errno == ENOENT))) {
137 (stat(file, &statbuf) && (errno == ENOENT))) {
151 fstat64(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0)
153 fstat(hashp->fp, &statbuf) == 0 && statbuf.st_size == 0)
311 struct stat64 statbuf; local
313 struct stat statbuf;
333 if (stat64(file, &statbuf))
335 if (stat(file, &statbuf))
338 hashp->BSIZE = MIN(statbuf.st_blksize, MAX_BSIZE);