OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ProtoWriter
(Results
1 - 3
of
3
) sorted by null
/system/nvram/messages/include/nvram/messages/
io.h
282
// |
ProtoWriter
| contains logic to write raw data according to the protobuf wire
284
class NVRAM_EXPORT
ProtoWriter
{
286
// Construct a |
ProtoWriter
| which will send its output to |stream_buffer|.
287
// |stream_buffer| must remain valid for the life time of the |
ProtoWriter
|.
288
explicit
ProtoWriter
(OutputStreamBuffer* stream_buffer);
/external/protobuf/src/google/protobuf/util/internal/
proto_writer.cc
60
ProtoWriter
::
ProtoWriter
(TypeResolver* type_resolver,
77
ProtoWriter
::
ProtoWriter
(const TypeInfo* typeinfo,
94
ProtoWriter
::~
ProtoWriter
() {
289
ProtoWriter
::ProtoElement::ProtoElement(const TypeInfo* typeinfo,
291
ProtoWriter
* enclosing)
301
ProtoWriter
::ProtoElement::ProtoElement(
ProtoWriter
::ProtoElement* parent
[
all
...]
proto_writer.h
75
class LIBPROTOBUF_EXPORT
ProtoWriter
: public StructuredObjectWriter {
78
ProtoWriter
(TypeResolver* type_resolver, const google::protobuf::Type& type,
80
virtual ~
ProtoWriter
();
83
virtual
ProtoWriter
* StartObject(StringPiece name);
84
virtual
ProtoWriter
* EndObject();
85
virtual
ProtoWriter
* StartList(StringPiece name);
86
virtual
ProtoWriter
* EndList();
87
virtual
ProtoWriter
* RenderBool(StringPiece name, bool value) {
90
virtual
ProtoWriter
* RenderInt32(StringPiece name, int32 value) {
93
virtual
ProtoWriter
* RenderUint32(StringPiece name, uint32 value)
[
all
...]
Completed in 66 milliseconds