Searched refs:dstStat (Results 1 – 1 of 1) sorted by relevance
210 struct stat dstStat; in copyRegular() local215 statResult = stat(dst, &dstStat); in copyRegular()216 if (statResult == 0 && !S_ISREG(dstStat.st_mode)) { in copyRegular()227 if (isSameFile(pSrcStat, &dstStat)) { in copyRegular()233 if (!isSourceNewer(pSrcStat, &dstStat)) { in copyRegular()354 struct stat dstStat; in copySymlink() local362 statResult = lstat(dst, &dstStat); in copySymlink()363 if (statResult == 0 && !S_ISREG(dstStat.st_mode) in copySymlink()364 && !S_ISLNK(dstStat.st_mode) in copySymlink()374 if (isSameFile(pSrcStat, &dstStat)) { in copySymlink()[all …]