Lines Matching refs:st_buf
81 struct stat st_buf; in check_mntent_file() local
91 if (stat(file, &st_buf) == 0) { in check_mntent_file()
92 if (S_ISBLK(st_buf.st_mode)) { in check_mntent_file()
94 file_rdev = st_buf.st_rdev; in check_mntent_file()
97 file_dev = st_buf.st_dev; in check_mntent_file()
98 file_ino = st_buf.st_ino; in check_mntent_file()
119 if (stat(device, &st_buf) == 0) { in check_mntent_file()
120 if (S_ISBLK(st_buf.st_mode)) { in check_mntent_file()
122 if (file_rdev && (file_rdev == st_buf.st_rdev)) in check_mntent_file()
126 if (file_dev && ((file_dev == st_buf.st_dev) && in check_mntent_file()
127 (file_ino == st_buf.st_ino))) in check_mntent_file()
142 if (file_rdev && (stat("/", &st_buf) == 0) && in check_mntent_file()
143 (st_buf.st_dev == file_rdev)) in check_mntent_file()
155 if (stat(mnt_dir, &st_buf) < 0) { in check_mntent_file()
166 if (file_rdev && (st_buf.st_dev != file_rdev)) { in check_mntent_file()