Searched refs:destination_path (Results 1 – 7 of 7) sorted by relevance
/external/autotest/scheduler/ |
D | drone_utility.py | 261 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 …]
|
D | drones.py | 220 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)
|
D | drone_manager.py | 882 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 …]
|
D | drone_manager_unittest.py | 43 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))
|
D | agent_task.py | 736 destination_path=self.queue_entry.execution_path() + '/')
|
/external/autotest/client/bin/ |
D | site_sysinfo_unittest.py | 127 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/ |
D | adb_host.py | 1727 destination_path = os.path.join( 1729 self.teststation.get_file(source_path, destination_path)
|