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()
353 struct stat dstStat; in copySymlink() local
361 statResult = lstat(dst, &dstStat); in copySymlink()
362 if (statResult == 0 && !S_ISREG(dstStat.st_mode) in copySymlink()
363 && !S_ISLNK(dstStat.st_mode) in copySymlink()
373 if (isSameFile(pSrcStat, &dstStat)) { in copySymlink()
379 if (!isSourceNewer(pSrcStat, &dstStat)) { in copySymlink()
434 struct stat dstStat; in copyDirectory() local
440 statResult = stat(dst, &dstStat); in copyDirectory()
441 if (statResult == 0 && !S_ISDIR(dstStat.st_mode)) { in copyDirectory()
451 if (isSameFile(pSrcStat, &dstStat)) { in copyDirectory()