Home | History | Annotate | Download | only in nanopb-c

Lines Matching full:encode

1 /* pb_encode.h: Functions to encode protocol buffers. Depends on pb_encode.c.
53 /* Encode a single protocol buffers message from C structure into a stream.
74 /* Encode the message to get the size of the encoded data, but do not store
116 /* Encode field header based on type and field number defined in the field
120 /* Encode field header by manually specifing wire type. You need to use this
124 /* Encode an integer in the varint format.
128 /* Encode an integer in the zig-zagged svarint format.
132 /* Encode a string or bytes type field. For strings, pass strlen(s) as size. */
135 /* Encode a fixed32, sfixed32 or float value.
139 /* Encode a fixed64, sfixed64 or double value.
143 /* Encode a submessage field.