Lines Matching defs:filestat
103 struct stat filestat;
108 if (backup_type == none || stat(orig, &filestat) != 0)
119 orig_device = filestat.st_dev;
120 orig_inode = filestat.st_ino;
144 while (stat(bakname, &filestat) == 0 &&
145 orig_device == filestat.st_dev && orig_inode == filestat.st_ino) {
347 struct stat filestat;
379 if (stat(fullname, &filestat) == 0 && S_ISDIR(filestat.st_mode)) {
387 *exists = stat(name, &filestat) == 0;
399 struct stat filestat;
405 (snprintf(tmpbuf, sizeof tmpbuf, f, a1, a2, a3), stat(tmpbuf, &filestat) == 0)