Home
last modified time | relevance | path

Searched refs:remote_path (Results 1 – 6 of 6) sorted by relevance

/developtools/integration_verification/DeployDevice/src/func/liteOsUpgrade/
DliteOsUpgrade_L1_shequ_dv_app.py164 remote_path = "%s/%s/img" % (server_base_dir, dis_path)
165 logger.info("%s exists." % remote_path)
166 ret = sftp.listdir(remote_path)
179 ret = sftp.listdir(remote_path)
188 logger.info("mkdir in tftpserver: %s/push.lock " % remote_path)
189 sftp.mkdir("%s/push.lock" % remote_path)
194 …nfo("copy %s to %s" % (os.path.join(local_file_path, filename), "%s/%s" % (remote_path, filename)))
196 … sftp.put(os.path.join(local_file_path, filename), "%s/%s" % (remote_path, filename))
198 …try, copy %s to %s" % (os.path.join(local_file_path, filename), "%s/%s" % (remote_path, filename)))
199 … sftp.put(os.path.join(local_file_path, filename), "%s/%s" % (remote_path, filename))
[all …]
/developtools/hdc/scripts/
Ddev_hdc_test.py47 remote_path = "data/local/tmp" variable in GP
124 cls.remote_path = content.get("remote_path")
168 cls.remote_path = opt
272 remote_path = f"{GP.remote_path}/{remote}"
274 return check_shell(cmd) and _check_file(local_path, remote_path)
279 remote_path = f"{GP.remote_path}/{remote}"
281 return check_shell(cmd) and _check_file(local_path, remote_path)
Dhdc_test.py359 def file_recv(remote_path, recv_path, i, wait_time=0): argument
361 …res = run_command_stdout("{}{}{}{}".format("file recv ", remote_path, " ", mix_path(recv_path, str…
/developtools/hdc/hdc_rust/src/common/
Dhdcfile.rs112 file_task.transfer.transfer_config.path = file_task.transfer.remote_path.clone(); in check_local_path()
195 task.transfer.remote_path = argv.last().unwrap().clone(); in set_master_parameters()
204 task.transfer.remote_path = String::from("."); in set_master_parameters()
Dhdctransfer.rs59 pub remote_path: String, field
87 remote_path: String::new(), in new()
/developtools/hdc/hdc_rust/src/host/
Dhost_app.rs119 config.path = self.transfer.remote_path.clone(); in install_single()