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