Home
last modified time | relevance | path

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

/tools/test/connectivity/acts/framework/acts/controllers/
Dadb.py71 def __init__(self, serial="", ssh_connection=None): argument
85 if ssh_connection is not None:
88 ssh_connection.run("pkill adb", ignore_status=True)
90 temp_dir = ssh_connection.run("mktemp -d").stdout.strip()
91 ssh_connection.send_file(adb_path, temp_dir)
95 ssh_connection.run(remote_adb_cmd)
97 local_port = ssh_connection.create_ssh_tunnel(5037)
103 self._ssh_connection = ssh_connection
Dfastboot.py48 def __init__(self, serial="", ssh_connection=None): argument
54 self.ssh_connection = ssh_connection
62 if self.ssh_connection:
Dandroid_device.py236 ssh_connection = None
239 ssh_connection = connection.SshConnection(ssh_settings)
240 ad = AndroidDevice(serial, ssh_connection=ssh_connection)
362 def __init__(self, serial='', ssh_connection=None): argument
376 self.adb = adb.AdbProxy(serial, ssh_connection=ssh_connection)
378 serial, ssh_connection=ssh_connection)
381 self._ssh_connection = ssh_connection
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_tools/
Dadb_sideload_ota_tool_test.py28 def get_mock_android_device(serial='', ssh_connection=None): argument
35 serial=serial, ssh_connection=ssh_connection))
Dupdate_device_ota_tool_test.py27 def get_mock_android_device(serial='', ssh_connection=None): argument
34 serial=serial, ssh_connection=ssh_connection))
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dwifi_performance_test_utils.py111 def get_server_address(ssh_connection, dut_ip, subnet_mask): argument
124 ifconfig_out = ssh_connection.run('ifconfig').stdout