Lines Matching defs:statb
59 (vgetp->xx == NULL || stat64(vgetp->xx, &statb) == -1 ||\
60 (statb.st_mode & S_IFMT) != typem ||\
61 statb.st_rdev != typer)
74 struct stat64 statb;
77 if (special && stat64(special, &statb) == 0 &&
78 ((bmode = (statb.st_mode & S_IFMT)) == S_IFBLK ||
81 brdev = statb.st_rdev;
91 stat64(vgetp->vfs_special, &statb) == -1 ||
92 (statb.st_mode & S_IFMT) != bmode ||
93 statb.st_rdev != brdev))))
114 struct stat64 statb;
138 if (vrefp->vfs_special && stat64(vrefp->vfs_special, &statb) == 0 &&
139 ((bmode = (statb.st_mode & S_IFMT)) == S_IFBLK ||
142 brdev = statb.st_rdev;
146 if (vrefp->vfs_fsckdev && stat64(vrefp->vfs_fsckdev, &statb) == 0 &&
147 ((cmode = (statb.st_mode & S_IFMT)) == S_IFBLK ||
150 crdev = statb.st_rdev;