Lines Matching refs:dstStat
211 struct stat dstStat; in copyRegular() local
216 statResult = stat(dst, &dstStat); in copyRegular()
217 if (statResult == 0 && !S_ISREG(dstStat.st_mode)) { in copyRegular()
228 if (isSameFile(pSrcStat, &dstStat)) { in copyRegular()
234 if (!isSourceNewer(pSrcStat, &dstStat)) { in copyRegular()
364 struct stat dstStat; in copySymlink() local
372 statResult = lstat(dst, &dstStat); in copySymlink()
373 if (statResult == 0 && !S_ISREG(dstStat.st_mode) in copySymlink()
374 && !S_ISLNK(dstStat.st_mode) in copySymlink()
384 if (isSameFile(pSrcStat, &dstStat)) { in copySymlink()
390 if (!isSourceNewer(pSrcStat, &dstStat)) { in copySymlink()
445 struct stat dstStat; in copyDirectory() local
451 statResult = stat(dst, &dstStat); in copyDirectory()
452 if (statResult == 0 && !S_ISDIR(dstStat.st_mode)) { in copyDirectory()
462 if (isSameFile(pSrcStat, &dstStat)) { in copyDirectory()