Home
last modified time | relevance | path

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

/tools/acloud/reconnect/
Dreconnect_test.py76 utils.LaunchVncClient.assert_called_with(6666)
84 utils.LaunchVncClient.assert_called_with(6666, "888", "777")
103 utils.LaunchVncClient.assert_called_with(11111)
126 utils.LaunchVncClient.assert_called_with(11111, "999", "777")
152 utils.LaunchVncClient.assert_called_with(5555)
189 utils.LaunchVncClient.assert_not_called()
212 utils.LaunchVncClient.reset_mock()
216 utils.LaunchVncClient.assert_not_called()
287 utils.LaunchVncClient.assert_called_with(5555)
292 utils.LaunchVncClient.assert_called_with(5555, "888", "777")
[all …]
Dreconnect.py96 utils.LaunchVncClient(vnc_port, match.group(1), match.group(2))
98 utils.LaunchVncClient(vnc_port)
/tools/acloud/internal/lib/
Dutils.py1098 LaunchVncClient(device.get(constants.VNC_PORT),
1138 def LaunchVncClient(port, avd_width=None, avd_height=None, no_prompts=False): function