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

  /external/e2fsprogs/misc/
ismounted.c 84 struct stat st_buf; local
94 if (stat(file, &st_buf) == 0) {
95 if (S_ISBLK(st_buf.st_mode)) {
97 file_rdev = st_buf.st_rdev;
100 file_dev = st_buf.st_dev;
101 file_ino = st_buf.st_ino;
122 if (stat(device, &st_buf) == 0) {
123 if (S_ISBLK(st_buf.st_mode)) {
125 if (file_rdev && (file_rdev == st_buf.st_rdev))
129 if (file_dev && ((file_dev == st_buf.st_dev) &
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ismounted.c 100 struct stat st_buf; local
118 if (stat(file, &st_buf) == 0) {
119 if (ext2fsP_is_disk_device(st_buf.st_mode)) {
121 file_rdev = st_buf.st_rdev;
124 file_dev = st_buf.st_dev;
125 file_ino = st_buf.st_ino;
133 if (stat(mnt->mnt_fsname, &st_buf) == 0) {
134 if (ext2fsP_is_disk_device(st_buf.st_mode)) {
136 if (file_rdev && (file_rdev == st_buf.st_rdev))
139 st_buf.st_rdev, file_dev
308 struct stat st_buf; local
406 struct stat st_buf; local
    [all...]
  /external/minijail/
system.c 306 struct stat st_buf; local
309 rc = stat(dest, &st_buf);
323 rc = stat(source, &st_buf);
341 domkdir = S_ISDIR(st_buf.st_mode) ||
342 (!bind && (S_ISBLK(st_buf.st_mode) ||
343 S_ISCHR(st_buf.st_mode)));
  /external/ltp/testcases/kernel/syscalls/nftw/
test_func.c 172 struct stat st_buf; local
187 stat(path_name, &st_buf) : lstat(path_name,
188 &st_buf)) == -1) {
193 if (st_buf.st_dev != stat_pointer->st_dev) {
200 if (st_buf.st_ino != stat_pointer->st_ino) {
207 if (st_buf.st_mode != stat_pointer->st_mode) {
214 if (st_buf.st_nlink != stat_pointer->st_nlink) {
221 if (st_buf.st_uid != stat_pointer->st_uid) {
228 if (st_buf.st_gid != stat_pointer->st_gid) {
235 if (st_buf.st_size != stat_pointer->st_size)
    [all...]
test_func64.c 173 struct stat st_buf; local
189 stat(path_name, &st_buf) : lstat(path_name,
190 &st_buf)) == -1) {
195 if (st_buf.st_dev != stat_pointer->st_dev) {
202 if (st_buf.st_ino != stat_pointer->st_ino) {
209 if (st_buf.st_mode != stat_pointer->st_mode) {
216 if (st_buf.st_nlink != stat_pointer->st_nlink) {
223 if (st_buf.st_uid != stat_pointer->st_uid) {
230 if (st_buf.st_gid != stat_pointer->st_gid) {
237 if (st_buf.st_size != stat_pointer->st_size)
    [all...]
  /external/e2fsprogs/resize/
main.c 265 ext2fs_struct_stat st_buf; local
371 ret = ext2fs_fstat(fd, &st_buf);
389 if (!S_ISREG(st_buf.st_mode )) {
555 (((__u64) 1) << (sizeof(st_buf.st_size)*8 - 1)) - 1)
557 if ((new_file_size > st_buf.st_size) &&
638 if ((st_buf.st_size > new_file_size) &&
  /external/f2fs-tools/lib/
libf2fs.c 662 struct stat *st_buf;
713 st_buf = malloc(sizeof(struct stat));
714 ASSERT(st_buf);
716 if (stat(path, st_buf) == 0 && S_ISBLK(st_buf->st_mode)) {
723 free(st_buf);
727 free(st_buf);
  /external/curl/src/
tool_doswin.c 493 struct_stat st_buf; local
590 if(base && ((stat(base, &st_buf)) == 0) && (S_ISCHR(st_buf.st_mode))) {

Completed in 247 milliseconds