Home
last modified time | relevance | path

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

/external/autotest/scheduler/
Ddrone_utility.py261 def copy_file_or_directory(self, source_path, destination_path): argument
268 if self._same_file(source_path, destination_path):
270 self._ensure_directory_exists(os.path.dirname(destination_path))
274 assert os.path.isdir(destination_path)
278 os.path.join(destination_path, filename))
281 shutil.copytree(source_path, destination_path, symlinks=True)
293 os.symlink(link_to, destination_path)
296 shutil.copy(source_path, destination_path)
302 def _same_file(self, source_path, destination_path): argument
308 if not os.path.exists(destination_path):
[all …]
Ddrones.py220 def send_file_to(self, drone, source_path, destination_path, argument
224 destination_path)
227 destination_path, can_fail)
250 def send_file_to(self, drone, source_path, destination_path, argument
254 destination_path)
257 destination_path)
260 destination_path, can_fail)
Ddrone_manager.py882 def _copy_results_helper(self, process, source_path, destination_path, argument
886 process, source_path, destination_path,
890 destination_path, on_results_repository=to_results_repository)
901 destination_path=None): argument
926 if destination_path is None:
927 destination_path = source_path
928 self._copy_results_helper(process, source_path, destination_path,
932 destination_path=None): argument
937 if destination_path is None:
938 destination_path = source_path
[all …]
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))
Dagent_task.py736 destination_path=self.queue_entry.execution_path() + '/')
/external/autotest/client/bin/
Dsite_sysinfo_unittest.py127 destination_path= self._destination_path('fubar')
128 self.assertTrue(os.path.exists(destination_path),
129 msg='Failed to copy to %s' % destination_path)
161 destination_path = self._destination_path('fubar')
162 self.assertTrue(os.path.exists(destination_path),
163 msg='Failed to copy to %s' % destination_path)
173 destination_path = self._destination_path('autoserv2344')
174 self.assertFalse(os.path.exists(destination_path),
175 msg='Copied banned file to %s' % destination_path)
176 destination_path = self._destination_path(deeper_subdir)
[all …]
/external/autotest/server/hosts/
Dadb_host.py1727 destination_path = os.path.join(
1729 self.teststation.get_file(source_path, destination_path)