Home
last modified time | relevance | path

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

/external/chromium_org/chrome/installer/util/
Dcopy_tree_work_item.cc22 dest_path_(dest_path), in CopyTreeWorkItem()
37 bool dest_exist = base::PathExists(dest_path_); in Do()
42 (!base::DirectoryExists(dest_path_)) && in Do()
43 (base::ContentsEqual(source_path_, dest_path_))) { in Do()
45 << " and destination file " << dest_path_.value() in Do()
51 (!base::DirectoryExists(dest_path_)) && in Do()
52 (IsFileInUse(dest_path_))) { in Do()
80 base::FilePath backup = backup_path_.path().Append(dest_path_.BaseName()); in Do()
81 if (base::Move(dest_path_, backup)) { in Do()
83 VLOG(1) << "Moved destination " << dest_path_.value() << in Do()
[all …]
Dmove_tree_work_item.cc22 dest_path_(dest_path), in MoveTreeWorkItem()
44 if (base::PathExists(dest_path_)) { in Do()
51 base::FilePath backup = backup_path_.path().Append(dest_path_.BaseName()); in Do()
54 if (installer::IsIdenticalFileHierarchy(source_path_, dest_path_)) { in Do()
72 << " differs from " << dest_path_.value() in Do()
77 if (base::Move(dest_path_, backup)) { in Do()
79 VLOG(1) << "Moved destination " << dest_path_.value() in Do()
82 PLOG(ERROR) << "failed moving " << dest_path_.value() in Do()
89 if (base::Move(source_path_, dest_path_)) { in Do()
92 << " to destination " << dest_path_.value(); in Do()
[all …]
Dmove_tree_work_item.h54 base::FilePath dest_path_; variable
Dcopy_tree_work_item.h55 base::FilePath dest_path_; variable