Home
last modified time | relevance | path

Searched refs:ScpPushFile (Results 1 – 8 of 8) sorted by relevance

/tools/acloud/public/actions/
Dremote_instance_fvp_device_factory.py74 self._ssh.ScpPushFile(
81 self._ssh.ScpPushFile(
Dremote_host_gf_device_factory.py599 self._ssh.ScpPushFile(emulator_zip_path, remote_emulator_zip_path)
600 self._ssh.ScpPushFile(image_zip_path, remote_image_zip_path)
647 self._ssh.ScpPushFile(mixed_image, remote_disk_image_path)
679 self._ssh.ScpPushFile(kernel_path, remote_kernel_path)
680 self._ssh.ScpPushFile(ramdisk_path, remote_ramdisk_path)
Dremote_host_gf_device_factory_test.py268 self._mock_ssh.ScpPushFile.assert_called_with(
307 self._mock_ssh.ScpPushFile.assert_any_call(
309 self._mock_ssh.ScpPushFile.assert_any_call(
/tools/acloud/internal/lib/
Dcvd_utils_test.py166 mock_ssh.ScpPushFile.assert_called_once_with(
178 self.assertEqual(2, mock_ssh.ScpPushFile.call_count)
207 self.assertEqual(2, mock_ssh.ScpPushFile.call_count)
261 mock_ssh.ScpPushFile.assert_called_once_with(
286 mock_ssh.ScpPushFile.assert_called_once_with(
298 mock_ssh.ScpPushFile.assert_called_once_with(
Dcvd_utils.py365 ssh_obj.ScpPushFile(kernel_image_path, remote_kernel_image_path)
366 ssh_obj.ScpPushFile(initramfs_image_path, remote_initramfs_image_path)
373 ssh_obj.ScpPushFile(boot_image_path, remote_boot_image_path)
379 ssh_obj.ScpPushFile(vendor_boot_image_path,
484 ssh_obj.ScpPushFile(vbmeta_image_path, remote_vbmeta_image_path)
Dssh_test.py171 ssh_object.ScpPushFile("/tmp/test", "/tmp/test_1.log")
190 ssh_object.ScpPushFile("/tmp/test", "/tmp/test_1.log")
Dcvd_compute_client_multi_stage.py321 self._ssh.ScpPushFile(src_file=download_target, dst_file=_FETCHER_NAME)
395 self._ssh.ScpPushFile(extra_file.source, extra_file.target)
Dssh.py389 def ScpPushFile(self, src_file, dst_file): member in Ssh