Lines Matching refs: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; in getvfsspec() local
77 if (special && stat64(special, &statb) == 0 && in getvfsspec()
78 ((bmode = (statb.st_mode & S_IFMT)) == S_IFBLK || in getvfsspec()
81 brdev = statb.st_rdev; in getvfsspec()
91 stat64(vgetp->vfs_special, &statb) == -1 || in getvfsspec()
92 (statb.st_mode & S_IFMT) != bmode || in getvfsspec()
93 statb.st_rdev != brdev)))) in getvfsspec()
114 struct stat64 statb; in getvfsany() local
138 if (vrefp->vfs_special && stat64(vrefp->vfs_special, &statb) == 0 && in getvfsany()
139 ((bmode = (statb.st_mode & S_IFMT)) == S_IFBLK || in getvfsany()
142 brdev = statb.st_rdev; in getvfsany()
146 if (vrefp->vfs_fsckdev && stat64(vrefp->vfs_fsckdev, &statb) == 0 && in getvfsany()
147 ((cmode = (statb.st_mode & S_IFMT)) == S_IFBLK || in getvfsany()
150 crdev = statb.st_rdev; in getvfsany()