Home
last modified time | relevance | path

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

/external/autotest/scheduler/
Ddrone_utility.py392 def copy_file_or_directory(self, source_path, destination_path): argument
399 if self._same_file(source_path, destination_path):
401 self._ensure_directory_exists(os.path.dirname(destination_path))
405 assert os.path.isdir(destination_path)
409 os.path.join(destination_path, filename))
411 shutil.copytree(source_path, destination_path, symlinks=True)
415 os.symlink(link_to, destination_path)
417 shutil.copy(source_path, destination_path)
420 def _same_file(self, source_path, destination_path): argument
426 if not os.path.exists(destination_path):
[all …]
Ddrones.py197 def send_file_to(self, drone, source_path, destination_path, argument
201 destination_path)
204 destination_path, can_fail)
227 def send_file_to(self, drone, source_path, destination_path, argument
231 destination_path)
234 destination_path)
237 destination_path, can_fail)
Dsite_drone_manager.py23 destination_path=None): argument
49 source_path, destination_path)
Ddrone_manager.py851 def _copy_results_helper(self, process, source_path, destination_path, argument
855 process, source_path, destination_path,
859 destination_path, on_results_repository=to_results_repository)
870 destination_path=None): argument
875 if destination_path is None:
876 destination_path = source_path
877 self._copy_results_helper(process, source_path, destination_path,
881 def copy_results_on_drone(self, process, source_path, destination_path): argument
885 self._copy_results_helper(process, source_path, destination_path)
Ddrone_manager_unittest.py43 def send_file_to(self, drone, source_path, destination_path, argument
46 (drone, source_path, destination_path))
64 def was_file_sent(self, drone, source_path, destination_path): argument
67 destination_path))
Dprejob_task.py80 source, destination_path=destination)
Dagent_task.py683 destination_path=self.queue_entry.execution_path() + '/')