Searched refs:ProtoReaderBase (Results 1 - 2 of 2) sorted by relevance
/developtools/smartperf_host/trace_streamer/src/proto_reader/ |
H A D | proto_reader.cpp | 22 std::map<ProtoWireType, ProtoReaderBase::ParseDataAreaValueByType> ProtoReaderBase::DATA_AREA_TYPE_TO_PARSE_FUNC_MAP = { 23 {ProtoWireType::kVarInt, ProtoReaderBase::ParseVarIntValue}, 24 {ProtoWireType::kLengthDelimited, ProtoReaderBase::ParseLengthDelimitedValue}, 25 {ProtoWireType::kFixed32, ProtoReaderBase::ParseFixed32Value}, 26 {ProtoWireType::kFixed64, ProtoReaderBase::ParseFixed64Value}, 28 ProtoReaderBase::ProtoReaderBase(DataArea *storage, uint32_t dataAreasCount, const uint8_t *buffer, size_t length) in ProtoReaderBase() function in SysTuning::ProtoReader::ProtoReaderBase 42 const uint8_t *ProtoReaderBase::GetNextProtoTag(const uint8_t *const startAddr, in GetNextProtoTag() 62 bool ProtoReaderBase [all...] |
/developtools/smartperf_host/trace_streamer/src/proto_reader/include/ |
H A D | proto_reader.h | 188 class ProtoReaderBase { class 190 ProtoReaderBase() : startAddr_(0), endAddr_(0), dataAreas_(nullptr), dataAreasCount_(0), size_(0), volume_(0) {} in ProtoReaderBase() function in SysTuning::ProtoReader::ProtoReaderBase 191 ProtoReaderBase(DataArea *storage, uint32_t dataAreasCount, const uint8_t *buffer, size_t length); 276 class TypedProtoReader : public ProtoReaderBase { 279 : ProtoReaderBase(defaultStorage_, MAX_DATA_AREA_ID + 1, buffer, length) in TypedProtoReader() 281 ProtoReaderBase::ParseAllDataAreas(); in TypedProtoReader() 283 TypedProtoReader(TypedProtoReader &&other) noexcept : ProtoReaderBase(std::move(other)) in move()
|
Completed in 2 milliseconds