Home
last modified time | relevance | path

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

/build/libs/host/
DCopyFile.c212 int srcFd, dstFd, statResult, copyResult; in copyRegular() local
216 statResult = stat(dst, &dstStat); in copyRegular()
217 if (statResult == 0 && !S_ISREG(dstStat.st_mode)) { in copyRegular()
222 } else if (statResult != 0 && errno != ENOENT) { in copyRegular()
227 if (statResult == 0) { in copyRegular()
355 int statResult, nameLen; in copySymlink() local
361 statResult = lstat(dst, &dstStat); in copySymlink()
362 if (statResult == 0 && !S_ISREG(dstStat.st_mode) in copySymlink()
372 if (statResult == 0) { in copySymlink()
397 if (statResult == 0) { in copySymlink()
[all …]