Home
last modified time | relevance | path

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

/external/chromium_org/base/files/
Dfile_util_posix.cc290 struct stat from_stat; in CopyDirectory() local
292 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()