Lines Matching refs:st_buf
83 struct stat st_buf; in check_mntent_file() local
93 if (stat(file, &st_buf) == 0) { in check_mntent_file()
94 if (S_ISBLK(st_buf.st_mode)) { in check_mntent_file()
96 file_rdev = st_buf.st_rdev; in check_mntent_file()
99 file_dev = st_buf.st_dev; in check_mntent_file()
100 file_ino = st_buf.st_ino; in check_mntent_file()
121 if (stat(device, &st_buf) == 0) { in check_mntent_file()
122 if (S_ISBLK(st_buf.st_mode)) { in check_mntent_file()
124 if (file_rdev && (file_rdev == st_buf.st_rdev)) in check_mntent_file()
128 if (file_dev && ((file_dev == st_buf.st_dev) && in check_mntent_file()
129 (file_ino == st_buf.st_ino))) in check_mntent_file()
144 if (file_rdev && (stat("/", &st_buf) == 0) && in check_mntent_file()
145 (st_buf.st_dev == file_rdev)) in check_mntent_file()
157 if (stat(mnt_dir, &st_buf) < 0) { in check_mntent_file()
168 if (file_rdev && (st_buf.st_dev != file_rdev)) { in check_mntent_file()