Home
last modified time | relevance | path

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

/external/perfetto/src/protozero/
Dproto_decoder_unittest.cc49 TypedProtoDecoder<32, false> decoder(proto.data(), proto.size()); in TEST()
99 TypedProtoDecoder<2, true> tpd(data.data(), data.size()); in TEST()
115 TypedProtoDecoder<32, false> decoder(proto.data(), proto.size()); in TEST()
135 TypedProtoDecoder<2, true> tpd(data.data(), data.size()); in TEST()
147 TypedProtoDecoder<2, true> tpd(buf, 1); in TEST()
175 TypedProtoDecoder<4, true> tpd(data.data(), data.size()); in TEST()
234 TypedProtoDecoder<999, 0> decoder( in TEST()
253 TypedProtoDecoder<2, false> decoder(reinterpret_cast<const uint8_t*>(buf), in TEST()
278 using Decoder = TypedProtoDecoder<32, false>; in TEST()
310 TypedProtoDecoder<kFieldId, false> decoder( in TEST()
[all …]
Dproto_decoder_fuzzer.cc32 TypedProtoDecoder<1, 0> typed_decoder_1(data, size); in FuzzProtoDecoder()
33 TypedProtoDecoder<999, 0> typed_decoder_2(data, size); in FuzzProtoDecoder()
/external/perfetto/include/perfetto/protozero/
Dproto_decoder.h381 class TypedProtoDecoder : public TypedProtoDecoderBase {
383 TypedProtoDecoder(const uint8_t* buffer, size_t length) in TypedProtoDecoder() function
399 TypedProtoDecoder(TypedProtoDecoder&& other) noexcept in TypedProtoDecoder() function
/external/perfetto/src/trace_processor/metrics/
Dmetrics_unittest.cc56 protozero::TypedProtoDecoder<1, repeated> DecodeSingleFieldProto( in DecodeSingleFieldProto()
65 return protozero::TypedProtoDecoder<1, repeated>(proto_ser.data, in DecodeSingleFieldProto()
178 protozero::TypedProtoDecoder<1, false> nest(nest_bytes.data, nest_bytes.size); in TEST_F()