Home
last modified time | relevance | path

Searched refs:full_command (Results 1 – 3 of 3) sorted by relevance

/tools/test/connectivity/acts/framework/acts/controllers/fuchsia_lib/
Dssh.py111 def full_command(self, command: str, force_tty: bool = False) -> List[str]: member in SSHConfig
203 full_command = self.config.full_command(command, force_tty)
206 process = subprocess.run(full_command,
Dffx.py134 full_command = f'{self.binary_path} -e {self._env_config_path} {command}'
137 result = subprocess.run(full_command.split(),
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/ssh/
Dconnection.py200 full_command = 'echo "CONNECTED: %s"; %s' % (identifier, command)
203 full_command, env, self._settings, extra_options=extra_options)