Lines Matching refs:stream
4 bool flakystream_callback(pb_istream_t *stream, pb_byte_t *buf, size_t count) in flakystream_callback() argument
6 flakystream_t *state = stream->state; in flakystream_callback()
10 stream->bytes_left = 0; in flakystream_callback()
15 PB_RETURN_ERROR(stream, "flaky error"); in flakystream_callback()
23 void flakystream_init(flakystream_t *stream, const uint8_t *buffer, size_t msglen, size_t fail_afte… in flakystream_init() argument
25 memset(stream, 0, sizeof(*stream)); in flakystream_init()
26 stream->stream.callback = flakystream_callback; in flakystream_init()
27 stream->stream.bytes_left = SIZE_MAX; in flakystream_init()
28 stream->stream.state = stream; in flakystream_init()
29 stream->buffer = buffer; in flakystream_init()
30 stream->position = 0; in flakystream_init()
31 stream->msglen = msglen; in flakystream_init()
32 stream->fail_after = fail_after; in flakystream_init()