Searched refs:from_stat (Results 1 – 1 of 1) sorted by relevance
290 struct stat from_stat; in CopyDirectory() local292 if (stat(from_path.value().c_str(), &from_stat) < 0) { in CopyDirectory()309 DCHECK(recursive || S_ISDIR(from_stat.st_mode)); in CopyDirectory()323 if (S_ISDIR(from_stat.st_mode)) { in CopyDirectory()324 if (mkdir(target_path.value().c_str(), from_stat.st_mode & 01777) != 0 && in CopyDirectory()330 } else if (S_ISREG(from_stat.st_mode)) { in CopyDirectory()343 from_stat = traversal.GetInfo().stat(); in CopyDirectory()