Home
last modified time | relevance | path

Searched refs:connection (Results 1 – 25 of 38) sorted by relevance

12

/tools/test/connectivity/acts/framework/tests/controllers/sl4a_lib/
Drpc_connection_test.py70 connection = self.mock_rpc_connection()
71 connection._initiate_handshake = pass_on_init
72 connection.open()
85 connection = self.mock_rpc_connection(uid=1)
86 connection._initiate_handshake = pass_on_continue
87 connection.open()
95 connection = self.mock_rpc_connection()
96 connection._initiate_handshake(
99 self.assertEqual(connection.uid, 1)
107 connection = self.mock_rpc_connection(MOCK_RESP_UNKNOWN_UID)
[all …]
Drpc_client_test.py66 for connection in working_connections + free_connections:
67 self.assertTrue(connection.close.called)
92 connection = client._get_free_connection()
94 self.assertEqual(connection, expected_connection)
177 connection = mock.Mock()
178 client._working_connections = [connection]
180 client._release_working_connection(connection)
182 self.assertTrue(connection in client._free_connections)
183 self.assertFalse(connection in client._working_connections)
/tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/
Drpc_client.py180 for connection in connections:
182 'Closing connection over ports %s' % connection.ports)
183 connection.close()
217 def _release_working_connection(self, connection): argument
228 self._working_connections.remove(connection)
229 self._free_connections.append(connection)
249 connection = self._get_free_connection()
250 ticket = connection.get_new_ticket()
253 connection.set_timeout(timeout)
259 connection.send_request(request)
[all …]
Dsl4a_manager.py124 def diagnose_failure(self, session, connection): argument
129 self.error_reporter.create_error_report(self, session, connection)
/tools/test/connectivity/acts/tests/google/bt/power/
DSetupBTPairingTest.py59 connection, client_address = sock.accept()
65 if connection is not None:
66 connection.close()
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/
Droute.py18 from acts.controllers.utils_lib.ssh import connection
63 except connection.CommandError as e:
174 except connection.CommandError as e:
Dshell.py19 from acts.controllers.utils_lib.ssh import connection
/tools/tradefederation/core/clearcut_client/com/android/tradefed/clearcut/
DClearcutClient.java266 HttpURLConnection connection = helper.createConnection(new URL(mUrl), "POST", "text"); in sendToClearcut() local
267 outputStream = connection.getOutputStream(); in sendToClearcut()
274 inputStream = connection.getInputStream(); in sendToClearcut()
277 errorStream = connection.getErrorStream(); in sendToClearcut()
/tools/test/connectivity/acts/tests/google/wifi/
DSetupWifiNetworkTest.py44 connection, client_address = sock.accept()
50 connection.close()
DWifiThroughputStabilityTest.py107 self.remote_server = ssh.connection.SshConnection(
DWifiRoamingPerformanceTest.py61 self.remote_server = ssh.connection.SshConnection(
/tools/test/connectivity/acts/framework/acts/controllers/
Diperf_client.py29 from acts.controllers.utils_lib.ssh import connection
183 self._ssh_session = connection.SshConnection(self._ssh_settings)
Dfastboot.py63 result = self.connection.run(command,
Dpacket_capture.py24 from acts.controllers.utils_lib.ssh import connection
103 self.ssh = connection.SshConnection(self.ssh_settings)
Diperf_server.py29 from acts.controllers.utils_lib.ssh import connection
424 self._ssh_session = connection.SshConnection(ssh_settings)
Daccess_point.py32 from acts.controllers.utils_lib.ssh import connection
130 self.ssh = connection.SshConnection(self.ssh_settings)
Dandroid_device.py39 from acts.controllers.utils_lib.ssh import connection
235 ssh_connection = connection.SshConnection(ssh_settings)
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
Dbluetooth.proto28 // Session information that gets logged for every BT connection.
84 // Information that gets logged for every Bluetooth connection.
86 // Type of technology used in the connection.
/tools/metalava/
Dbuild.gradle.kts192connection.set("scm:git:https://android.googlesource.com/platform/tools/metalava") in <lambda>()
/tools/ndkports/src/main/kotlin/com/android/ndkports/
DPrefabPackageBuilder.kt81 scm.connection = "scm:git:https://android.googlesource.com/platform/tools/ndkports" in <lambda>()
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/
DGAP_PTS_INSTRUCTIONS139 Note: Start the connection fast after PTS interaction
146 Note: Start the connection fast after PTS interaction
369 Note: During pairing establish a gatt connection
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dota_sniffer.py226 self._sniffer_server = ssh.connection.SshConnection(
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py28 from acts.controllers.utils_lib.ssh import connection
557 ssh_session = connection.SshConnection(ssh_settings)
953 ssh_session = connection.SshConnection(ssh_settings)
/tools/carrier_settings/proto/
Dcarrier_settings.proto122 // The time to limit max connection, in seconds.
/tools/acloud/
DREADME.md97 creates a ssh tunnel to enable adb and vnc connection to the instance. For the

12