Home
last modified time | relevance | path

Searched refs:WireType (Results 1 – 5 of 5) sorted by relevance

/system/nvram/messages/
Dio.cpp254 case WireType::kLengthDelimited: { in ReadWireTag()
265 case WireType::kFixed64: in ReadWireTag()
268 case WireType::kFixed32: in ReadWireTag()
271 case WireType::kVarint: in ReadWireTag()
272 case WireType::kStartGroup: in ReadWireTag()
273 case WireType::kEndGroup: in ReadWireTag()
282 NVRAM_CHECK(wire_type() == WireType::kVarint); in ReadVarint()
287 NVRAM_CHECK(wire_type() == WireType::kLengthDelimited); in ReadLengthDelimited()
292 if (wire_type() == WireType::kVarint) { in SkipField()
306 return WriteWireTag(WireType::kVarint) && in WriteVarint()
[all …]
/system/nvram/messages/include/nvram/messages/
Dproto.hpp151 static constexpr WireType kWireType = WireType::kLengthDelimited;
187 static constexpr WireType kWireType = WireType::kVarint;
207 static constexpr WireType kWireType = ElementCodec::kWireType;
228 static constexpr WireType kWireType = ValueCodec::kWireType;
315 static constexpr WireType kWireType = TaggedUnionMemberCodec::kWireType;
434 static constexpr WireType kWireType = WireType::kLengthDelimited;
Dio.h219 enum class WireType : int8_t { enum
242 WireType wire_type() const { return static_cast<WireType>(wire_type_); } in wire_type()
316 bool WriteWireTag(WireType wire_type);
Dmessage_codec.h45 WireType wire_type, in FieldDescriptor()
54 WireType wire_type;
/system/nvram/core/
Dpersistence.cpp71 reader.wire_type() != WireType::kLengthDelimited || in DecodeObject()