Searched refs:ProtoMetric (Results 1 – 10 of 10) sorted by relevance
/tools/test/connectivity/acts/framework/tests/metrics/ |
D | core_test.py | 24 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/ |
D | bluetooth_metric_logger.py | 22 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/ |
D | telephony_metric_logger.py | 21 from acts.metrics.core import ProtoMetric 46 metric = ProtoMetric(name='telephony_voice_test_result',
|
D | telephony_stress_metric_logger.py | 21 from acts.metrics.core import ProtoMetric 46 metric = ProtoMetric(name='telephony_stress_test_result',
|
/tools/test/connectivity/acts/framework/acts/metrics/loggers/ |
D | bounded_metrics.py | 17 from acts.metrics.core import ProtoMetric 94 [ProtoMetric(name=bundle_name, data=bundle)])
|
D | usage_metadata_logger.py | 20 from acts.metrics.core import ProtoMetric 108 return ProtoMetric(name='acts_usage_metadata', data=data)
|
D | blackbox.py | 18 from acts.metrics.core import ProtoMetric 124 [ProtoMetric(name=bundle_name, data=bundle)])
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/loggers/ |
D | power_metric_logger.py | 20 from acts.metrics.core import ProtoMetric 87 metric = ProtoMetric(name='spanner_power_metric', data=self.proto)
|
/tools/test/connectivity/acts/framework/tests/metrics/loggers/ |
D | usage_metadata_logger_test.py | 27 from acts.metrics.core import ProtoMetric 150 expected = ProtoMetric(name='acts_usage_metadata',
|
/tools/test/connectivity/acts/framework/acts/metrics/ |
D | core.py | 24 class ProtoMetric(object): class
|