Searched defs:st1 (Results 1 - 10 of 10) sorted by relevance
/dovecot/src/lib-fs/ |
H A D | fs-sis-common.c | 36 struct stat st1, st2; local 40 fs_stat(super_file, &st1) == 0 && st1.st_nlink == 2) { 48 st1.st_ino == st2.st_ino && 49 CMP_DEV_T(st1.st_dev, st2.st_dev)) {
|
/dovecot/src/lib/ |
H A D | test-istream-unix.c | 43 struct stat st1, st2; local 52 if (fstat(recv_fd, &st1) < 0 || fstat(wanted_fd, &st2) < 0) 54 test_assert_idx(st1.st_ino == st2.st_ino, idx);
|
H A D | file-create-locked.c | 25 struct stat st1, st2; local 28 if (fstat(fd, &st1) < 0) { 36 ret = st1.st_ino == st2.st_ino && 37 CMP_DEV_T(st1.st_dev, st2.st_dev) ? 1 : 0;
|
H A D | file-lock.c | 404 struct stat st1, st2; local 416 } else if (fstat(lock->fd, &st1) < 0) { 422 } else if (st1.st_ino != st2.st_ino || 423 !CMP_DEV_T(st1.st_dev, st2.st_dev)) {
|
/dovecot/src/doveadm/ |
H A D | doveadm-sis.c | 34 struct stat st1, st2; local 55 if (fstat(fd1, &st1) < 0) 59 else if (st1.st_size != st2.st_size)
|
/dovecot/src/lib-storage/index/maildir/ |
H A D | maildir-sync.c | 295 struct stat st1, st2; local 305 if (stat(path1, &st1) < 0 || stat(path2, &st2) < 0) { 310 if (st1.st_ino == st2.st_ino && 311 CMP_DEV_T(st1.st_dev, st2.st_dev)) { 314 if (st1.st_nlink > 1 && st2.st_nlink == st1.st_nlink && 315 st1.st_ctime == st2.st_ctime && 316 st1.st_ctime < ioloop_time - DUPE_LINKS_DELETE_SECS) {
|
/dovecot/src/plugins/quota/ |
H A D | quota-maildir.c | 550 struct stat st1, st2; local 560 if (stat(root->maildirsize_path, &st1) < 0) 565 return root->last_size != st2.st_size || st1.st_ino != st2.st_ino || 566 !CMP_DEV_T(st1.st_dev, st2.st_dev);
|
/dovecot/src/lib-dict/ |
H A D | dict-file.c | 108 struct stat st1, st2; local 124 if (nfs_safe_stat(dict->path, &st1) < 0) { 134 if (st1.st_ino != st2.st_ino || 135 !CMP_DEV_T(st1.st_dev, st2.st_dev)) {
|
/dovecot/src/lib-index/ |
H A D | mail-index-strmap.c | 305 struct stat st1, st2; local 308 if (fstat(strmap->fd, &st1) < 0) { 317 return st1.st_ino != st2.st_ino || !CMP_DEV_T(st1.st_dev, st2.st_dev);
|
H A D | mail-index.c | 838 struct stat st1, st2; local 860 if (fstat(index->fd, &st1) < 0) { 867 } else if (st1.st_ino == st2.st_ino && 868 CMP_DEV_T(st1.st_dev, st2.st_dev)) {
|
Completed in 30 milliseconds