Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 6 of 6) sorted by relevance

/nanopb-2.7.6/examples/using_union_messages/
Ddecode.c22 bool eof; in decode_unionmessage_type() local
24 while (pb_decode_tag(stream, &wire_type, &tag, &eof)) in decode_unionmessage_type()
/nanopb-2.7.6/tests/raw_decode/
Draw_decode.c70 bool eof; in raw_decode() local
73 if (!pb_decode_tag(stream, &wire_type, &tag, &eof)) in raw_decode()
75 if (eof) in raw_decode()
/nanopb-2.7.6/
Dpb_decode.c25 static bool checkreturn pb_decode_varint32_eof(pb_istream_t *stream, uint32_t *dest, bool *eof);
170 static bool checkreturn pb_decode_varint32_eof(pb_istream_t *stream, uint32_t *dest, bool *eof) in pb_decode_varint32_eof() argument
179 if (eof) in pb_decode_varint32_eof()
181 *eof = true; in pb_decode_varint32_eof()
288 …heckreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof) in pb_decode_tag() argument
291 *eof = false; in pb_decode_tag()
295 if (!pb_decode_varint32_eof(stream, &temp, eof)) in pb_decode_tag()
944 bool eof; in pb_message_set_to_defaults() local
949 if (!pb_decode_tag(&defstream, &wire_type, &tag, &eof)) in pb_message_set_to_defaults()
963 if (!pb_decode_tag(&defstream, &wire_type, &tag, &eof)) in pb_message_set_to_defaults()
[all …]
Dpb_decode.h148 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
/nanopb-2.7.6/spm_headers/nanopb/
Dpb_decode.h148 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
/nanopb-2.7.6/docs/
Dreference.md816 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
823 | eof | Pointer to variable where to store end-of-file status.
827 `eof` to true. On other errors, `eof` will be set to false.