Home
last modified time | relevance | path

Searched refs:kLengthDelimited (Results 1 – 4 of 4) sorted by relevance

/external/perfetto/include/perfetto/protozero/
Dfield.h60 res == proto_utils::ProtoWireType::kLengthDelimited || in type()
114 type() == proto_utils::ProtoWireType::kLengthDelimited); in as_string()
122 type() == proto_utils::ProtoWireType::kLengthDelimited); in as_bytes()
128 type() == proto_utils::ProtoWireType::kLengthDelimited); in data()
134 type() == proto_utils::ProtoWireType::kLengthDelimited); in size()
Dproto_utils.h37 kLengthDelimited = 2, enumerator
138 static_cast<uint32_t>(ProtoWireType::kLengthDelimited); in MakeTagLengthDelimited()
/external/perfetto/src/protozero/
Dproto_decoder_unittest.cc43 ASSERT_EQ(field.type(), ProtoWireType::kLengthDelimited); in TEST()
192 {"\x0A\x00", 2, 1, ProtoWireType::kLengthDelimited, 0}, in TEST()
193 {"\x0A\x04|abc", 6, 1, ProtoWireType::kLengthDelimited, 4}, in TEST()
194 {"\xBA\x3E\x04|abc", 7, 999, ProtoWireType::kLengthDelimited, 4}, in TEST()
198 135, 999, ProtoWireType::kLengthDelimited, 131}, in TEST()
209 if (field.type() == ProtoWireType::kLengthDelimited) { in TEST()
Dproto_decoder.cc88 case static_cast<uint8_t>(ProtoWireType::kLengthDelimited): { in ParseOneField()