Searched refs:eof (Results 1 – 6 of 6) sorted by relevance
/nanopb-3.4.0/examples/using_union_messages/ |
D | decode.c | 22 bool eof; in decode_unionmessage_type() local 24 while (pb_decode_tag(stream, &wire_type, &tag, &eof)) in decode_unionmessage_type()
|
/nanopb-3.4.0/tests/raw_decode/ |
D | raw_decode.c | 70 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-3.4.0/ |
D | pb_decode.c | 25 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() 290 …heckreturn pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof) in pb_decode_tag() argument 293 *eof = false; in pb_decode_tag() 297 if (!pb_decode_varint32_eof(stream, &temp, eof)) in pb_decode_tag() 955 bool eof; in pb_message_set_to_defaults() local 960 if (!pb_decode_tag(&defstream, &wire_type, &tag, &eof)) in pb_message_set_to_defaults() 974 if (!pb_decode_tag(&defstream, &wire_type, &tag, &eof)) in pb_message_set_to_defaults() [all …]
|
D | pb_decode.h | 142 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
|
/nanopb-3.4.0/spm_headers/nanopb/ |
D | pb_decode.h | 142 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof);
|
/nanopb-3.4.0/docs/ |
D | reference.md | 829 bool pb_decode_tag(pb_istream_t *stream, pb_wire_type_t *wire_type, uint32_t *tag, bool *eof); 836 | eof | Pointer to variable where to store end-of-file status. 840 `eof` to true. On other errors, `eof` will be set to false.
|