• Home
  • Raw
  • Download

Lines Matching refs:pb_byte_t

26 static bool checkreturn buf_read(pb_istream_t *stream, pb_byte_t *buf, size_t count);
27 static bool checkreturn read_raw_value(pb_istream_t *stream, pb_wire_type_t wire_type, pb_byte_t *b…
85 static bool checkreturn buf_read(pb_istream_t *stream, pb_byte_t *buf, size_t count) in buf_read()
88 const pb_byte_t *source = (const pb_byte_t*)stream->state; in buf_read()
89 stream->state = (pb_byte_t*)stream->state + count; in buf_read()
100 bool checkreturn pb_read(pb_istream_t *stream, pb_byte_t *buf, size_t count) in pb_read()
106 pb_byte_t tmp[16]; in pb_read()
136 static bool checkreturn pb_readbyte(pb_istream_t *stream, pb_byte_t *buf) in pb_readbyte()
145 *buf = *(const pb_byte_t*)stream->state; in pb_readbyte()
146 stream->state = (pb_byte_t*)stream->state + 1; in pb_readbyte()
154 pb_istream_t pb_istream_from_buffer(const pb_byte_t *buf, size_t bufsize) in pb_istream_from_buffer()
184 pb_byte_t byte; in pb_decode_varint32_eof()
252 pb_byte_t byte; in pb_decode_varint()
275 pb_byte_t byte; in pb_skip_varint()
331 static bool checkreturn read_raw_value(pb_istream_t *stream, pb_wire_type_t wire_type, pb_byte_t *b… in read_raw_value()
696 pb_byte_t buffer[10]; in decode_callback_field()
1256 pb_byte_t bytes[4]; in pb_decode_fixed32()
1271 pb_byte_t bytes[8]; in pb_decode_fixed64()
1458 status = pb_read(stream, (pb_byte_t*)dest, size); in pb_dec_string()
1459 *((pb_byte_t*)dest + size) = 0; in pb_dec_string()
1507 return pb_read(stream, (pb_byte_t*)dest, field->data_size); in pb_dec_fixed_length_bytes()