Home
last modified time | relevance | path

Searched refs:parse_proto_to_ascii (Results 1 – 7 of 7) sorted by relevance

/tools/test/connectivity/acts/framework/acts/libs/proto/
Dproto_utils.py20 def parse_proto_to_ascii(binary_proto_msg): function
46 encoded = parse_proto_to_ascii(proto).encode()
/tools/test/connectivity/acts/framework/acts/metrics/
Dcore.py19 from acts.libs.proto.proto_utils import parse_proto_to_ascii
54 return parse_proto_to_ascii(self.data)
62 return parse_proto_to_ascii(to_descriptor_proto(self.data))
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/bt/
DBtMetricsBaseTest.py16 from acts.libs.proto.proto_utils import parse_proto_to_ascii
69 bluetooth_log_ascii = parse_proto_to_ascii(bluetooth_log)
DBluetoothBaseTest.py28 from acts.libs.proto.proto_utils import parse_proto_to_ascii
63 bluetooth_log_ascii = parse_proto_to_ascii(bluetooth_log)
/tools/test/connectivity/acts/framework/tests/metrics/loggers/
Dusage_metadata_logger_test.py20 from acts.libs.proto.proto_utils import parse_proto_to_ascii
155 self.assertEqual(parse_proto_to_ascii(expected.data),
156 parse_proto_to_ascii(actual.data))
/tools/test/connectivity/acts/framework/acts/libs/testtracker/
Dtesttracker_results_writer.py20 from acts.libs.proto.proto_utils import parse_proto_to_ascii
77 f.write(parse_proto_to_ascii(proto))
/tools/test/connectivity/acts/framework/tests/metrics/
Dcore_test.py57 def test_get_ascii(self, parse_proto_to_ascii): argument
62 parse_proto_to_ascii.assert_called_once_with(self.data)