Searched refs:kLengthDelimited (Results 1 – 4 of 4) sorted by relevance
/external/perfetto/include/perfetto/protozero/ |
D | field.h | 60 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()
|
D | proto_utils.h | 37 kLengthDelimited = 2, enumerator 138 static_cast<uint32_t>(ProtoWireType::kLengthDelimited); in MakeTagLengthDelimited()
|
/external/perfetto/src/protozero/ |
D | proto_decoder_unittest.cc | 43 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()
|
D | proto_decoder.cc | 88 case static_cast<uint8_t>(ProtoWireType::kLengthDelimited): { in ParseOneField()
|