Home | History | Annotate | Download | only in base

Lines Matching defs:target_path

284     // the suffix after from_path onto to_path to create the target_path.
291 const FilePath target_path = to_path.Append(suffix);
294 if (mkdir(target_path.value().c_str(), info.stat.st_mode & 01777) != 0 &&
297 target_path.value() << " errno = " << errno;
301 if (!CopyFile(current, target_path)) {
303 target_path.value();
376 bool CreateSymbolicLink(const FilePath& target_path,
379 DCHECK(!target_path.empty());
380 return ::symlink(target_path.value().c_str(),
385 FilePath* target_path) {
387 DCHECK(target_path);
392 target_path->clear();
396 *target_path = FilePath(FilePath::StringType(buf, count));