Home
last modified time | relevance | path

Searched refs:compile_import_proto (Results 1 – 6 of 6) sorted by relevance

/tools/test/connectivity/acts/framework/tests/metrics/
Dlogger_test.py78 def test_compile_proto_relative_path(self, getfile, compile_import_proto): argument
85 compile_import_proto.assert_called_once_with(
90 def test_compile_proto_absolute_path(self, getfile, compile_import_proto): argument
95 compile_import_proto.assert_called_once_with(compiler_out, proto_path)
104 compile_import_proto): argument
110 compile_import_proto.assert_called_once_with(compiler_out, proto_path)
/tools/test/connectivity/acts/framework/acts/test_utils/bt/
DBtMetricsBaseTest.py18 from acts.libs.proto.proto_utils import compile_import_proto, parse_proto_to_ascii
55 compile_import_proto(ad.metrics_path, self.bluetooth_proto_path)
DBluetoothBaseTest.py29 from acts.libs.proto.proto_utils import compile_import_proto
163 compile_import_proto(ad.metrics_path, self.bluetooth_proto_path)
/tools/test/connectivity/acts/framework/tests/
Dacts_proto_utils_test.py25 from acts.libs.proto.proto_utils import compile_import_proto
87 output_module = compile_import_proto(self.tmp_dir, proto_path)
/tools/test/connectivity/acts/framework/acts/metrics/
Dlogger.py31 from acts.libs.proto.proto_utils import compile_import_proto
147 return compile_import_proto(compiler_out, abs_proto_path)
/tools/test/connectivity/acts/framework/acts/libs/proto/
Dproto_utils.py70 def compile_import_proto(output_dir, proto_path): function