MOS Source Code
|
#include "pb.h"
Go to the source code of this file.
Classes | |
struct | pb_istream_t |
Macros | |
#define | PB_ISTREAM_EMPTY {0,0,0,0} |
#define | PB_DECODE_NOINIT 0x01U |
#define | PB_DECODE_DELIMITED 0x02U |
#define | PB_DECODE_NULLTERMINATED 0x04U |
#define | pb_decode_noinit(s, f, d) |
#define | pb_decode_delimited(s, f, d) |
#define | pb_decode_delimited_noinit(s, f, d) |
#define | pb_decode_nullterminated(s, f, d) |
Functions | |
bool | pb_decode (pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct) |
bool | pb_decode_ex (pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int flags) |
void | pb_release (const pb_msgdesc_t *fields, void *dest_struct) |
pb_istream_t | pb_istream_from_buffer (const pb_byte_t *buf, size_t msglen) |
bool | pb_read (pb_istream_t *stream, pb_byte_t *buf, size_t count) |
bool | pb_decode_tag (pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof) |
bool | pb_skip_field (pb_istream_t *stream, pb_wire_type_t wire_type) |
bool | pb_decode_varint (pb_istream_t *stream, uint64_t *dest) |
bool | pb_decode_varint32 (pb_istream_t *stream, uint32_t *dest) |
bool | pb_decode_bool (pb_istream_t *stream, bool *dest) |
bool | pb_decode_svarint (pb_istream_t *stream, int64_t *dest) |
bool | pb_decode_fixed32 (pb_istream_t *stream, void *dest) |
bool | pb_decode_fixed64 (pb_istream_t *stream, void *dest) |
bool | pb_make_string_substream (pb_istream_t *stream, pb_istream_t *substream) |
bool | pb_close_string_substream (pb_istream_t *stream, pb_istream_t *substream) |
#define PB_ISTREAM_EMPTY {0,0,0,0} |
Definition at line 49 of file pb_decode.h.
Referenced by pb_message_set_to_defaults().
#define PB_DECODE_NOINIT 0x01U |
Definition at line 99 of file pb_decode.h.
Referenced by do_roundtrips(), pb_dec_submessage(), and pb_decode_inner().
#define PB_DECODE_DELIMITED 0x02U |
Definition at line 100 of file pb_decode.h.
Referenced by do_roundtrips(), and pb_decode_ex().
#define PB_DECODE_NULLTERMINATED 0x04U |
Definition at line 101 of file pb_decode.h.
Referenced by do_roundtrips(), main(), and pb_decode_inner().
#define pb_decode_noinit | ( | s, | |
f, | |||
d ) |
Definition at line 105 of file pb_decode.h.
Referenced by main().
#define pb_decode_delimited | ( | s, | |
f, | |||
d ) |
Definition at line 106 of file pb_decode.h.
Referenced by handle_connection(), listdir(), and main().
#define pb_decode_delimited_noinit | ( | s, | |
f, | |||
d ) |
Definition at line 107 of file pb_decode.h.
#define pb_decode_nullterminated | ( | s, | |
f, | |||
d ) |
Definition at line 108 of file pb_decode.h.
Definition at line 1182 of file pb_decode.c.
bool pb_decode_ex | ( | pb_istream_t * | stream, |
const pb_msgdesc_t * | fields, | ||
void * | dest_struct, | ||
unsigned int | flags ) |
Definition at line 1154 of file pb_decode.c.
Definition at line 1336 of file pb_decode.c.
Definition at line 143 of file pb_decode.c.
Definition at line 82 of file pb_decode.c.
bool pb_decode_tag | ( | pb_istream_t * | stream, |
pb_wire_type_t * | wire_type, | ||
uint32_t * | tag, | ||
bool * | eof ) |
Definition at line 291 of file pb_decode.c.
bool pb_skip_field | ( | pb_istream_t * | stream, |
pb_wire_type_t | wire_type ) |
Definition at line 308 of file pb_decode.c.
Definition at line 243 of file pb_decode.c.
Definition at line 237 of file pb_decode.c.
Definition at line 1346 of file pb_decode.c.
Definition at line 1356 of file pb_decode.c.
Definition at line 1370 of file pb_decode.c.
Definition at line 1393 of file pb_decode.c.
bool pb_make_string_substream | ( | pb_istream_t * | stream, |
pb_istream_t * | substream ) |
Definition at line 362 of file pb_decode.c.
bool pb_close_string_substream | ( | pb_istream_t * | stream, |
pb_istream_t * | substream ) |
Definition at line 377 of file pb_decode.c.