Searched refs:compiler_out (Results 1 – 4 of 4) sorted by relevance
/tools/test/connectivity/acts/framework/acts/metrics/loggers/ |
D | blackbox.py | 47 def __init__(self, metric_key=None, event=None, compiler_out=None): argument 58 compiler_out=compiler_out) 145 compiler_out=None): argument 156 compiler_out=compiler_out)
|
/tools/test/connectivity/acts/framework/tests/metrics/ |
D | logger_test.py | 81 compiler_out = Mock() 82 MetricLogger._compile_proto(proto_path, compiler_out=compiler_out) 86 compiler_out, full_proto_path) 92 compiler_out = Mock() 93 MetricLogger._compile_proto(proto_path, compiler_out=compiler_out) 95 compile_import_proto.assert_called_once_with(compiler_out, proto_path) 105 compiler_out = Mock() 106 mkdtemp.return_value = compiler_out 110 compile_import_proto.assert_called_once_with(compiler_out, proto_path)
|
/tools/test/connectivity/acts/framework/acts/metrics/ |
D | logger.py | 128 def _compile_proto(cls, proto_path, compiler_out=None): argument 137 if not compiler_out: 138 compiler_out = tempfile.mkdtemp() 147 return compile_import_proto(compiler_out, abs_proto_path)
|
/tools/test/connectivity/acts/framework/tests/metrics/loggers/ |
D | blackbox_test.py | 206 'my_metric', compiler_out=self.proto_dir) 230 'my_metric_1', compiler_out=self.proto_dir)) 232 'my_metric_2', compiler_out=self.proto_dir)) 266 compiler_out=self.proto_dir) 292 'my_metric', compiler_out=self.proto_dir)
|