Lines Matching refs:dest_file_path
21 const FilePath& dest_file_path) { in PerformCommonCheckAndPreparationForMoveAndCopy() argument
27 if (!file_util::DirectoryExists(dest_file_path.DirName())) in PerformCommonCheckAndPreparationForMoveAndCopy()
31 if (src_file_path.IsParent(dest_file_path)) in PerformCommonCheckAndPreparationForMoveAndCopy()
35 if (!file_util::PathExists(dest_file_path)) in PerformCommonCheckAndPreparationForMoveAndCopy()
41 bool dest_is_directory = file_util::DirectoryExists(dest_file_path); in PerformCommonCheckAndPreparationForMoveAndCopy()
51 if (src_file_path.value() == dest_file_path.value()) in PerformCommonCheckAndPreparationForMoveAndCopy()
60 if (!file_util::Delete(dest_file_path, false /* recursive */)) { in PerformCommonCheckAndPreparationForMoveAndCopy()
61 if (!file_util::IsDirectoryEmpty(dest_file_path)) in PerformCommonCheckAndPreparationForMoveAndCopy()
335 const FilePath& dest_file_path, in RelayCopy() argument
339 dest_file_path_(dest_file_path) { in RelayCopy()
361 const FilePath& dest_file_path, in RelayMove() argument
365 dest_file_path_(dest_file_path) { in RelayMove()
809 const FilePath& dest_file_path, in Copy() argument
812 new RelayCopy(src_file_path, dest_file_path, callback)); in Copy()
818 const FilePath& dest_file_path, in Move() argument
821 new RelayMove(src_file_path, dest_file_path, callback)); in Move()