Searched refs:dstStat (Results 1 – 1 of 1) sorted by relevance
211 struct stat dstStat; in copyRegular() local216 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() local372 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()[all …]