Searched defs:statResult (Results 1 - 1 of 1) sorted by relevance

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

Completed in 247 milliseconds