Home
last modified time | relevance | path

Searched refs:dstStat (Results 1 – 1 of 1) sorted by relevance

/build/make/tools/libhost/
DCopyFile.c211 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()
[all …]