Home
last modified time | relevance | path

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

/build/libs/host/
DCopyFile.c211 int srcFd, dstFd, statResult, copyResult; in copyRegular() local
215 statResult = stat(dst, &dstStat); in copyRegular()
216 if (statResult == 0 && !S_ISREG(dstStat.st_mode)) { in copyRegular()
221 } else if (statResult != 0 && errno != ENOENT) { in copyRegular()
226 if (statResult == 0) { in copyRegular()
356 int statResult, nameLen; in copySymlink() local
362 statResult = lstat(dst, &dstStat); in copySymlink()
363 if (statResult == 0 && !S_ISREG(dstStat.st_mode) in copySymlink()
373 if (statResult == 0) { in copySymlink()
398 if (statResult == 0) { in copySymlink()
[all …]