HomeSort by relevance Sort by last modified time
    Searched refs:ssh_connection (Results 1 - 5 of 5) sorted by null

  /tools/test/connectivity/acts/framework/acts/controllers/
fastboot.py 46 def __init__(self, serial="", ssh_connection=None):
52 self.ssh_connection = ssh_connection
60 if self.ssh_connection:
adb.py 75 def __init__(self, serial="", ssh_connection=None):
80 ssh_connection: SshConnection instance if the Android device is
88 if ssh_connection is not None and not AdbProxy._SERVER_LOCAL_PORT:
91 ssh_connection.run("pkill adb", ignore_status=True)
93 temp_dir = ssh_connection.run("mktemp -d").stdout.strip()
94 ssh_connection.send_file(adb_path, temp_dir)
98 ssh_connection.run(remote_adb_cmd)
100 local_port = ssh_connection.create_ssh_tunnel(5037)
106 self._ssh_connection = ssh_connection
android_device.py 248 ssh_connection = None
251 ssh_connection = connection.SshConnection(ssh_settings)
252 ad = AndroidDevice(serial, ssh_connection=ssh_connection)
376 def __init__(self, serial='', ssh_connection=None):
388 self.adb = adb.AdbProxy(serial, ssh_connection=ssh_connection)
390 serial, ssh_connection=ssh_connection)
393 self._ssh_connection = ssh_connection
    [all...]
  /tools/test/connectivity/acts/framework/tests/libs/ota/ota_tools/
adb_sideload_ota_tool_test.py 25 def get_mock_android_device(serial='', ssh_connection=None):
32 serial=serial, ssh_connection=ssh_connection))
update_device_ota_tool_test.py 24 def get_mock_android_device(serial='', ssh_connection=None):
31 serial=serial, ssh_connection=ssh_connection))

Completed in 564 milliseconds