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.py67 def __init__(self, serial="", ssh_connection=None): argument
81 if ssh_connection is not None:
84 ssh_connection.run("pkill adb", ignore_status=True)
86 temp_dir = ssh_connection.run("mktemp -d").stdout.strip()
87 ssh_connection.send_file(adb_path, temp_dir)
91 ssh_connection.run(remote_adb_cmd)
93 local_port = ssh_connection.create_ssh_tunnel(5037)
99 self._ssh_connection = ssh_connection
Dandroid_device.py234 ssh_connection = None
237 ssh_connection = connection.SshConnection(ssh_settings)
238 ad = AndroidDevice(serial, ssh_connection=ssh_connection)
360 def __init__(self, serial='', ssh_connection=None): argument
374 self.adb = adb.AdbProxy(serial, ssh_connection=ssh_connection)
376 serial, ssh_connection=ssh_connection)
379 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:
/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/framework/acts/test_utils/wifi/
Dwifi_performance_test_utils.py1080 def get_server_address(ssh_connection, dut_ip, subnet_mask): argument
1097 ifconfig_out = ssh_connection.run('ifconfig').stdout