Home
last modified time | relevance | path

Searched refs:protocol (Results 1 – 25 of 39) sorted by relevance

12

/tools/test/connectivity/acts/framework/tests/controllers/rohdeschwarz_lib/
Dcontest_test.py95 protocol = contest.AutomationServer.AutomationProtocol(
97 protocol.send_ok = mock.Mock()
98 protocol.data_received(b'DUT_SWITCH_ON')
100 asserts.assert_true(protocol.send_ok.called, 'OK response not sent.')
107 protocol = contest.AutomationServer.AutomationProtocol(
109 protocol.send_ok = mock.Mock()
110 protocol.data_received(b'DUT_SWITCH_OFF')
112 asserts.assert_true(protocol.send_ok.called, 'OK response not sent.')
118 protocol = contest.AutomationServer.AutomationProtocol(
120 protocol.send_ok = mock.Mock()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DTestResourceDownloader.java41 final String protocol = url.getProtocol(); in download() local
46 if ("file".equals(protocol)) { in download()
74 final String protocol = url.getProtocol(); in buildDownloadCommandArgs() local
75 if ("gs".equals(protocol)) { in buildDownloadCommandArgs()
79 if ("http".equals(protocol) || "https".equals(protocol)) { in buildDownloadCommandArgs()
84 throw new UnsupportedOperationException("protocol " + protocol + " is not supported"); in buildDownloadCommandArgs()
/tools/test/connectivity/acts/framework/acts/controllers/rohdeschwarz_lib/
Dcmx500_iperf_measurement.py201 def protocol(self): member in Cmx500IPerfService
203 return self._perf.protocol
205 @protocol.setter
206 def protocol(self, protocol): member in Cmx500IPerfService
212 if not isinstance(protocol, IPerfProtocol):
217 if protocol == IPerfProtocol.TCP:
218 self._perf.protocol = _IPerfProtocol.TCP
220 self._perf.protocol = _IPerfProtocol.UDP
Dcmw500_iperf_measurement.py302 def protocol(self): member in CMW500IPerfService
308 @protocol.setter
309 def protocol(self, protocol): member in CMW500IPerfService
315 if not isinstance(protocol, IPerfProtocol):
320 self._meas_id, self._mode.value, self._service_id, protocol.value)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_retail_ap/
Dnetgear_rax80.py32 protocol=self.ap_settings['protocol'],
40 protocol=self.ap_settings['protocol'],
46 protocol=self.ap_settings['protocol'],
Dnetgear_r8000.py32 protocol=self.ap_settings['protocol'],
40 protocol=self.ap_settings['protocol'],
46 protocol=self.ap_settings['protocol'],
Dnetgear_rs700.py49 protocol=self.ap_settings['protocol'],
57 protocol=self.ap_settings['protocol'],
63 protocol=self.ap_settings['protocol'],
71 protocol=self.ap_settings['protocol'],
Dnetgear_raxe500.py49 protocol=self.ap_settings['protocol'],
57 protocol=self.ap_settings['protocol'],
63 protocol=self.ap_settings['protocol'],
71 protocol=self.ap_settings['protocol'],
Dnetgear_r7000.py45 protocol=self.ap_settings['protocol'],
53 protocol=self.ap_settings['protocol'],
59 protocol=self.ap_settings['protocol'],
Dnetgear_rax200.py46 protocol=self.ap_settings['protocol'],
54 protocol=self.ap_settings['protocol'],
60 protocol=self.ap_settings['protocol'],
Dnetgear_r7500.py45 protocol=self.ap_settings['protocol'],
53 protocol=self.ap_settings['protocol'],
Dnetgear_rax120.py38 protocol=self.ap_settings['protocol'],
46 protocol=self.ap_settings['protocol'],
Dbrcm_ref.py64 protocol=self.ap_settings['protocol'],
72 protocol=self.ap_settings['protocol'],
/tools/test/connectivity/acts_tests/tests/google/coex/performance_tests/
DWlanStandalonePerformanceTest.py42 for protocol, stream in itertools.product(
46 'test_wlan_standalone_{}_{}'.format(protocol, stream)
DCoexBasicPerformanceTest.py63 for protocol, stream, test_type in itertools.product(
68 test_type, protocol, stream)
DWlanWithA2dpPerformanceTest.py99 for protocol, stream, test_type in itertools.product(
104 test_type, protocol, stream)
DWlanWithBlePerformanceTest.py161 for protocol, stream, test_type in itertools.product(
165 test_type, protocol, stream)
/tools/tradefederation/core/src/com/android/tradefed/config/
DDynamicRemoteFileResolver.java350 String protocol; in resolvePartialDownloadZip() local
353 protocol = uri.getScheme(); in resolvePartialDownloadZip()
370 IRemoteFileResolver resolver = getResolver(protocol); in resolvePartialDownloadZip()
389 private IRemoteFileResolver getResolver(String protocol) throws BuildRetrievalError { in getResolver() argument
391 return mFileResolverLoader.load(protocol, mExtraArgs); in getResolver()
394 String.format("Could not load resolver for protocol %s", protocol), e); in getResolver()
440 String protocol; in resolveRemoteFiles() local
444 protocol = uri.getScheme(); in resolveRemoteFiles()
446 fileToResolve = new File(protocol + ":" + uri.getPath()); in resolveRemoteFiles()
458 IRemoteFileResolver resolver = getResolver(protocol); in resolveRemoteFiles()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/coex/
DCoexBaseTest.py58 self.protocol = current_test_name.split("_")[-2]
210 traffic_type=self.iperf_variables.protocol
216 traffic_type=self.iperf_variables.protocol
224 if (self.iperf_variables.protocol == 'udp' and
227 self.log, self.iperf_variables.protocol,
231 self.iperf_variables.protocol,
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/loggers/protos/
Dtelephony_stress_metric.proto9 https://developers.google.com/protocol-buffers/docs/pythontutorial
Dtelephony_metric.proto9 https://developers.google.com/protocol-buffers/docs/pythontutorial
/tools/test/connectivity/acts/framework/acts/controllers/
Dattenuator.py33 protocol = c.get('Protocol', 'telnet')
35 protocol)
Dasus_axe11000_ap.py167 self.protocol = config["protocol"]
175 protocol=self.protocol, ip_address=self.ip, port=self.port)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/loggers/protos/
Dpower_metric.proto8 https://developers.google.com/protocol-buffers/docs/pythontutorial
/tools/asuite/atest/tools/
Dindexing.py172 pickle.dump(_dict, cache_file, protocol=2)
322 pickle.dump(_dict, cache_file, protocol=2)

12