Home | History | Annotate | Download | only in ext2fs

Lines Matching full:st_buf

99 	struct stat	st_buf;
117 if (stat(file, &st_buf) == 0) {
118 if (S_ISBLK(st_buf.st_mode)) {
120 file_rdev = st_buf.st_rdev;
123 file_dev = st_buf.st_dev;
124 file_ino = st_buf.st_ino;
132 if (stat(mnt->mnt_fsname, &st_buf) == 0) {
133 if (S_ISBLK(st_buf.st_mode)) {
135 if (file_rdev && (file_rdev == st_buf.st_rdev))
138 st_buf.st_rdev, file_dev,
143 if (file_dev && ((file_dev == st_buf.st_dev) &&
144 (file_ino == st_buf.st_ino)))
159 if (file_rdev && stat("/", &st_buf) == 0) {
160 if (st_buf.st_dev == file_rdev) {
177 if (stat(mnt->mnt_dir, &st_buf) < 0) {
188 if (file_rdev && (st_buf.st_dev != file_rdev)) {
307 struct stat st_buf;
312 if ((stat(file, &st_buf) == 0) &&
313 S_ISBLK(st_buf.st_mode))
314 file_dev = st_buf.st_rdev;
339 if (file_dev && (stat(buf, &st_buf) == 0) &&
340 S_ISBLK(st_buf.st_mode) &&
341 file_dev == st_buf.st_rdev) {
405 struct stat st_buf;
407 if (stat(device, &st_buf) == 0 && S_ISBLK(st_buf.st_mode)) {