Searched refs:connection (Results 1 – 25 of 38) sorted by relevance
12
/tools/test/connectivity/acts/framework/tests/controllers/sl4a_lib/ |
D | rpc_connection_test.py | 70 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 …]
|
D | rpc_client_test.py | 66 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/ |
D | rpc_client.py | 180 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 …]
|
D | sl4a_manager.py | 124 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/ |
D | SetupBTPairingTest.py | 59 connection, client_address = sock.accept() 65 if connection is not None: 66 connection.close()
|
/tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/ |
D | route.py | 18 from acts.controllers.utils_lib.ssh import connection 63 except connection.CommandError as e: 174 except connection.CommandError as e:
|
D | shell.py | 19 from acts.controllers.utils_lib.ssh import connection
|
/tools/tradefederation/core/clearcut_client/com/android/tradefed/clearcut/ |
D | ClearcutClient.java | 266 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/ |
D | SetupWifiNetworkTest.py | 44 connection, client_address = sock.accept() 50 connection.close()
|
D | WifiThroughputStabilityTest.py | 107 self.remote_server = ssh.connection.SshConnection(
|
D | WifiRoamingPerformanceTest.py | 61 self.remote_server = ssh.connection.SshConnection(
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | iperf_client.py | 29 from acts.controllers.utils_lib.ssh import connection 183 self._ssh_session = connection.SshConnection(self._ssh_settings)
|
D | fastboot.py | 63 result = self.connection.run(command,
|
D | packet_capture.py | 24 from acts.controllers.utils_lib.ssh import connection 103 self.ssh = connection.SshConnection(self.ssh_settings)
|
D | iperf_server.py | 29 from acts.controllers.utils_lib.ssh import connection 424 self._ssh_session = connection.SshConnection(ssh_settings)
|
D | access_point.py | 32 from acts.controllers.utils_lib.ssh import connection 130 self.ssh = connection.SshConnection(self.ssh_settings)
|
D | android_device.py | 39 from acts.controllers.utils_lib.ssh import connection 235 ssh_connection = connection.SshConnection(ssh_settings)
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | bluetooth.proto | 28 // 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/ |
D | build.gradle.kts | 192 … connection.set("scm:git:https://android.googlesource.com/platform/tools/metalava") in <lambda>()
|
/tools/ndkports/src/main/kotlin/com/android/ndkports/ |
D | PrefabPackageBuilder.kt | 81 scm.connection = "scm:git:https://android.googlesource.com/platform/tools/ndkports" in <lambda>()
|
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/ |
D | GAP_PTS_INSTRUCTIONS | 139 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/ |
D | ota_sniffer.py | 226 self._sniffer_server = ssh.connection.SshConnection(
|
/tools/test/connectivity/acts/framework/acts/test_utils/coex/ |
D | coex_test_utils.py | 28 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/ |
D | carrier_settings.proto | 122 // The time to limit max connection, in seconds.
|
/tools/acloud/ |
D | README.md | 97 creates a ssh tunnel to enable adb and vnc connection to the instance. For the
|
12