Lines Matching full:st_buf
84 struct stat st_buf;
94 if (stat(file, &st_buf) == 0) {
95 if (S_ISBLK(st_buf.st_mode)) {
97 file_rdev = st_buf.st_rdev;
100 file_dev = st_buf.st_dev;
101 file_ino = st_buf.st_ino;
122 if (stat(device, &st_buf) == 0) {
123 if (S_ISBLK(st_buf.st_mode)) {
125 if (file_rdev && (file_rdev == st_buf.st_rdev))
129 if (file_dev && ((file_dev == st_buf.st_dev) &&
130 (file_ino == st_buf.st_ino)))
145 if (file_rdev && (stat("/", &st_buf) == 0) &&
146 (st_buf.st_dev == file_rdev))
158 if (stat(mnt_dir, &st_buf) < 0) {
169 if (file_rdev && (st_buf.st_dev != file_rdev)) {