Home
last modified time | relevance | path

Searched refs:ScpPushFile (Results 1 – 10 of 10) 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.py601 self._ssh.ScpPushFile(emulator_zip_path, remote_emulator_zip_path)
602 self._ssh.ScpPushFile(image_zip_path, remote_image_zip_path)
649 self._ssh.ScpPushFile(mixed_image, remote_disk_image_path)
687 self._ssh.ScpPushFile(kernel_path, remote_kernel_path)
688 self._ssh.ScpPushFile(ramdisk_path, remote_ramdisk_path)
Dremote_instance_trusty_device_factory.py194 self._ssh.ScpPushFile(config_json_file.name, remote_config_path)
302 self._ssh.ScpPushFile(image_local_path, f"{cvd_utils.GCE_BASE_DIR}/kernel")
Dremote_host_gf_device_factory_test.py269 self._mock_ssh.ScpPushFile.assert_called_with(
309 self._mock_ssh.ScpPushFile.assert_any_call(
311 self._mock_ssh.ScpPushFile.assert_any_call(
Dremote_instance_trusty_device_factory_test.py106 mock_ssh.ScpPushFile.assert_called_with(
/tools/acloud/internal/lib/
Dcvd_utils_test.py167 mock_ssh.ScpPushFile.assert_called_once_with(
179 self.assertEqual(2, mock_ssh.ScpPushFile.call_count)
208 self.assertEqual(2, mock_ssh.ScpPushFile.call_count)
262 mock_ssh.ScpPushFile.assert_called_once_with(
287 mock_ssh.ScpPushFile.assert_called_once_with(
299 mock_ssh.ScpPushFile.assert_called_once_with(
Dcvd_utils.py367 ssh_obj.ScpPushFile(kernel_image_path, remote_kernel_image_path)
368 ssh_obj.ScpPushFile(initramfs_image_path, remote_initramfs_image_path)
375 ssh_obj.ScpPushFile(boot_image_path, remote_boot_image_path)
381 ssh_obj.ScpPushFile(vendor_boot_image_path,
486 ssh_obj.ScpPushFile(vbmeta_image_path, remote_vbmeta_image_path)
Dssh_test.py170 ssh_object.ScpPushFile("/tmp/test", "/tmp/test_1.log")
189 ssh_object.ScpPushFile("/tmp/test", "/tmp/test_1.log")
Dssh.py340 def ScpPushFile(self, src_file, dst_file): member in Ssh
Dcvd_compute_client_multi_stage.py376 self._ssh.ScpPushFile(extra_file.source, extra_file.target)