HomeSort by relevance Sort by last modified time
    Searched refs:st_buf (Results 1 - 4 of 4) sorted by null

  /external/e2fsprogs/misc/
ismounted.c 77 struct stat st_buf; local
91 if (stat(file, &st_buf) == 0) {
92 if (S_ISBLK(st_buf.st_mode)) {
94 file_rdev = st_buf.st_rdev;
97 file_dev = st_buf.st_dev;
98 file_ino = st_buf.st_ino;
119 if (stat(device, &st_buf) == 0) {
120 if (S_ISBLK(st_buf.st_mode)) {
122 if (file_rdev && (file_rdev == st_buf.st_rdev))
126 if (file_dev && ((file_dev == st_buf.st_dev) &
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 47 struct stat st_buf; local
57 if (stat(file, &st_buf) == 0) {
58 if (S_ISBLK(st_buf.st_mode)) {
60 file_rdev = st_buf.st_rdev;
63 file_dev = st_buf.st_dev;
64 file_ino = st_buf.st_ino;
70 if (stat(mnt->mnt_fsname, &st_buf) == 0) {
71 if (S_ISBLK(st_buf.st_mode)) {
73 if (file_rdev && (file_rdev == st_buf.st_rdev))
77 if (file_dev && ((file_dev == st_buf.st_dev) &
241 struct stat st_buf; local
294 struct stat st_buf; local
    [all...]
  /external/e2fsprogs/resize/
main.c 162 struct stat64 st_buf; local
164 struct stat st_buf; local
259 ret = fstat64(fd, &st_buf);
261 ret = fstat(fd, &st_buf);
280 if (!S_ISREG(st_buf.st_mode )) {
368 (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1)
370 if ((new_file_size > st_buf.st_size) &&
414 if ((st_buf.st_size > new_file_size) &&
  /external/oprofile/libutil/
op_file.c 90 struct stat * st_buf)
97 if (stat(name, st_buf) != 0)

Completed in 2604 milliseconds