Home
last modified time | relevance | path

Searched refs:ProtoMetric (Results 1 – 10 of 10) sorted by relevance

/tools/test/connectivity/acts/framework/tests/metrics/
Dcore_test.py24 from acts.metrics.core import ProtoMetric
42 metric = ProtoMetric(name = self.TEST_NAME, data=self.data)
47 self.assertRaises(ValueError, lambda: ProtoMetric(name=self.TEST_NAME))
50 metric = ProtoMetric(name=self.TEST_NAME, data=self.data)
59 metric = ProtoMetric(name=self.TEST_NAME, data=self.data)
67 metric = ProtoMetric(name=self.TEST_NAME, data=self.data)
80 metric = ProtoMetric(name=self.TEST_NAME, data=self.data)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/loggers/
Dbluetooth_metric_logger.py22 from acts.metrics.core import ProtoMetric
131 return {'proto': base64.b64encode(ProtoMetric(test, proto)
133 'proto_ascii': ProtoMetric(test, proto).get_ascii(),
138 self.results.append(ProtoMetric(test, proto))
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/tel/loggers/
Dtelephony_metric_logger.py21 from acts.metrics.core import ProtoMetric
46 metric = ProtoMetric(name='telephony_voice_test_result',
Dtelephony_stress_metric_logger.py21 from acts.metrics.core import ProtoMetric
46 metric = ProtoMetric(name='telephony_stress_test_result',
/tools/test/connectivity/acts/framework/acts/metrics/loggers/
Dbounded_metrics.py17 from acts.metrics.core import ProtoMetric
94 [ProtoMetric(name=bundle_name, data=bundle)])
Dusage_metadata_logger.py20 from acts.metrics.core import ProtoMetric
108 return ProtoMetric(name='acts_usage_metadata', data=data)
Dblackbox.py18 from acts.metrics.core import ProtoMetric
124 [ProtoMetric(name=bundle_name, data=bundle)])
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/loggers/
Dpower_metric_logger.py20 from acts.metrics.core import ProtoMetric
87 metric = ProtoMetric(name='spanner_power_metric', data=self.proto)
/tools/test/connectivity/acts/framework/tests/metrics/loggers/
Dusage_metadata_logger_test.py27 from acts.metrics.core import ProtoMetric
150 expected = ProtoMetric(name='acts_usage_metadata',
/tools/test/connectivity/acts/framework/acts/metrics/
Dcore.py24 class ProtoMetric(object): class