Lines Matching refs:pb_ostream_t
285 bool (*encode)(pb_ostream_t *stream, const pb_field_t *field, void * const *arg);
316 bool (*encode)(pb_ostream_t *stream, const pb_extension_t *extension);
385 pb_ostream_t pb_ostream_from_buffer(uint8_t *buf, size_t bufsize);
397 bool pb_write(pb_ostream_t *stream, const uint8_t *buf, size_t count);
410 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
423 … bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
442 bool pb_encode_tag(pb_ostream_t *stream, pb_wire_type_t wiretype, int field_number);
453 bool pb_encode_tag_for_field(pb_ostream_t *stream, const pb_field_t *field);
476 bool pb_encode_varint(pb_ostream_t *stream, uint64_t value);
488 bool pb_encode_svarint(pb_ostream_t *stream, int64_t value);
496 bool pb_encode_string(pb_ostream_t *stream, const uint8_t *buffer, size_t size);
507 bool pb_encode_fixed32(pb_ostream_t *stream, const void *value);
517 bool pb_encode_fixed64(pb_ostream_t *stream, const void *value);
527 …bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);