OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProtoReader
(Results
1 - 6
of
6
) sorted by null
/system/nvram/messages/include/nvram/messages/
message_codec.h
42
using DecodeFunction = bool(void* object,
ProtoReader
* reader);
100
// data from a |
ProtoReader
|, decodes fields per the descriptor table and stores
112
ProtoReader
* reader,
118
bool Decode(
ProtoReader
* reader);
123
bool DecodeData(
ProtoReader
* reader);
129
const FieldDescriptor* FindDescriptor(
ProtoReader
* reader) const;
proto.hpp
109
// * |static bool Decode(Type& object,
ProtoReader
* reader)| decodes a field
142
NVRAM_NOINLINE bool DecodeField(Type& value,
ProtoReader
* reader) {
157
static bool Decode(Blob& blob,
ProtoReader
* reader) {
193
static bool Decode(Type& value,
ProtoReader
* reader) {
218
static bool Decode(Vector<ElementType>& vector,
ProtoReader
* reader) {
234
static bool Decode(Optional<ValueType>& value,
ProtoReader
* reader) {
325
static bool Decode(TaggedUnionType& object,
ProtoReader
* reader) {
344
static bool DecodeMember(void* object,
ProtoReader
* reader) {
412
static bool Decode(StructType& object,
ProtoReader
* reader) {
440
static bool Decode(StructType& object,
ProtoReader
* reader)
[
all
...]
io.h
231
class NVRAM_EXPORT
ProtoReader
{
233
// Construct a new |
ProtoReader
| that consumes data from |stream_buffer|.
235
// |
ProtoReader
|.
236
explicit
ProtoReader
(InputStreamBuffer* stream_buffer);
/system/nvram/messages/
message_codec.cpp
90
ProtoReader
* reader,
97
bool MessageDecoderBase::Decode(
ProtoReader
* reader) {
100
ProtoReader
nested_reader(&nested_stream_buffer);
104
bool MessageDecoderBase::DecodeData(
ProtoReader
* reader) {
126
ProtoReader
* reader) const {
io.cpp
242
ProtoReader
::
ProtoReader
(InputStreamBuffer* stream_buffer)
245
bool
ProtoReader
::ReadWireTag() {
281
bool
ProtoReader
::ReadVarint(uint64_t* value) {
286
bool
ProtoReader
::ReadLengthDelimited(void* data, size_t size) {
291
bool
ProtoReader
::SkipField() {
/system/nvram/core/
persistence.cpp
69
ProtoReader
reader(&stream);
Completed in 257 milliseconds