Lines Matching defs:statb
52 struct stat statb;
55 if (fstat(fd, &statb) != 0)
59 if (!S_ISCHR(statb.st_mode) && !S_ISBLK(statb.st_mode))
63 dev = statb.st_rdev;
92 struct stat statb;
94 if (fstat(fd, &statb) != 0)
98 if (!S_ISCHR(statb.st_mode) && !S_ISBLK(statb.st_mode))
101 spectype = statb.st_mode & S_IFMT;
102 dev = statb.st_rdev;
134 struct stat statb;
139 if ((stat(path, &statb) == 0) &&
140 (S_ISCHR(statb.st_mode) || S_ISBLK(statb.st_mode)))
141 dev = statb.st_rdev;