• Home
  • Raw
  • Download

Lines Matching refs:pb_istream_t

34 typedef bool (*pb_decoder_t)(pb_istream_t *stream, const pb_field_t *field, void *dest) checkreturn;
36 static bool checkreturn buf_read(pb_istream_t *stream, uint8_t *buf, size_t count);
37 static bool checkreturn pb_decode_varint32(pb_istream_t *stream, uint32_t *dest);
38 static bool checkreturn read_raw_value(pb_istream_t *stream, pb_wire_type_t wire_type, uint8_t *buf…
42 static bool checkreturn decode_static_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_fiel…
43 static bool checkreturn decode_callback_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_fi…
44 static bool checkreturn decode_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_field_itera…
45 static bool checkreturn default_extension_decoder(pb_istream_t *stream, pb_extension_t *extension, …
46 static bool checkreturn decode_extension(pb_istream_t *stream, uint32_t tag, pb_wire_type_t wire_ty…
49 static bool checkreturn pb_dec_varint(pb_istream_t *stream, const pb_field_t *field, void *dest);
50 static bool checkreturn pb_dec_uvarint(pb_istream_t *stream, const pb_field_t *field, void *dest);
51 static bool checkreturn pb_dec_svarint(pb_istream_t *stream, const pb_field_t *field, void *dest);
52 static bool checkreturn pb_dec_fixed32(pb_istream_t *stream, const pb_field_t *field, void *dest);
53 static bool checkreturn pb_dec_fixed64(pb_istream_t *stream, const pb_field_t *field, void *dest);
54 static bool checkreturn pb_dec_bytes(pb_istream_t *stream, const pb_field_t *field, void *dest);
55 static bool checkreturn pb_dec_string(pb_istream_t *stream, const pb_field_t *field, void *dest);
56 static bool checkreturn pb_dec_submessage(pb_istream_t *stream, const pb_field_t *field, void *dest…
57 static bool checkreturn pb_skip_varint(pb_istream_t *stream);
58 static bool checkreturn pb_skip_string(pb_istream_t *stream);
80 static bool checkreturn buf_read(pb_istream_t *stream, uint8_t *buf, size_t count) in buf_read()
94 bool checkreturn pb_read(pb_istream_t *stream, uint8_t *buf, size_t count) in pb_read()
130 static bool checkreturn pb_readbyte(pb_istream_t *stream, uint8_t *buf) in pb_readbyte()
148 pb_istream_t pb_istream_from_buffer(uint8_t *buf, size_t bufsize) in pb_istream_from_buffer()
150 pb_istream_t stream; in pb_istream_from_buffer()
168 static bool checkreturn pb_decode_varint32(pb_istream_t *stream, uint32_t *dest) in pb_decode_varint32()
204 bool checkreturn pb_decode_varint(pb_istream_t *stream, uint64_t *dest) in pb_decode_varint()
226 bool checkreturn pb_skip_varint(pb_istream_t *stream) in pb_skip_varint()
237 bool checkreturn pb_skip_string(pb_istream_t *stream) in pb_skip_string()
246 bool checkreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool… in pb_decode_tag()
272 bool checkreturn pb_skip_field(pb_istream_t *stream, pb_wire_type_t wire_type) in pb_skip_field()
287 static bool checkreturn read_raw_value(pb_istream_t *stream, pb_wire_type_t wire_type, uint8_t *buf… in read_raw_value()
317 bool checkreturn pb_make_string_substream(pb_istream_t *stream, pb_istream_t *substream) in pb_make_string_substream()
332 void pb_close_string_substream(pb_istream_t *stream, pb_istream_t *substream) in pb_close_string_substream()
409 static bool checkreturn decode_static_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_fiel… in decode_static_field()
433 pb_istream_t substream; in decode_static_field()
474 static bool checkreturn allocate_field(pb_istream_t *stream, void *pData, size_t data_size, size_t … in allocate_field()
505 static bool checkreturn decode_pointer_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_fie… in decode_pointer_field()
545 pb_istream_t substream; in decode_pointer_field()
601 static bool checkreturn decode_callback_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_fi… in decode_callback_field()
616 pb_istream_t substream; in decode_callback_field()
636 pb_istream_t substream; in decode_callback_field()
648 static bool checkreturn decode_field(pb_istream_t *stream, pb_wire_type_t wire_type, pb_field_itera… in decode_field()
668 static bool checkreturn default_extension_decoder(pb_istream_t *stream, in default_extension_decoder()
690 static bool checkreturn decode_extension(pb_istream_t *stream, in decode_extension()
797 bool checkreturn pb_decode_noinit(pb_istream_t *stream, const pb_field_t fields[], void *dest_struc… in pb_decode_noinit()
893 bool checkreturn pb_decode(pb_istream_t *stream, const pb_field_t fields[], void *dest_struct) in pb_decode()
907 bool pb_decode_delimited(pb_istream_t *stream, const pb_field_t fields[], void *dest_struct) in pb_decode_delimited()
909 pb_istream_t substream; in pb_decode_delimited()
978 bool pb_decode_svarint(pb_istream_t *stream, int64_t *dest) in pb_decode_svarint()
992 bool pb_decode_fixed32(pb_istream_t *stream, void *dest) in pb_decode_fixed32()
1011 bool pb_decode_fixed64(pb_istream_t *stream, void *dest) in pb_decode_fixed64()
1034 static bool checkreturn pb_dec_varint(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_varint()
1052 static bool checkreturn pb_dec_uvarint(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_uvarint()
1068 static bool checkreturn pb_dec_svarint(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_svarint()
1084 static bool checkreturn pb_dec_fixed32(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_fixed32()
1090 static bool checkreturn pb_dec_fixed64(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_fixed64()
1096 static bool checkreturn pb_dec_bytes(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_bytes()
1125 static bool checkreturn pb_dec_string(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_string()
1157 static bool checkreturn pb_dec_submessage(pb_istream_t *stream, const pb_field_t *field, void *dest) in pb_dec_submessage()
1160 pb_istream_t substream; in pb_dec_submessage()