Home
last modified time | relevance | path

Searched refs:pb_decode_ex (Results 1 – 9 of 9) sorted by relevance

/nanopb-2.7.6/
Dpb_decode.h102 bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int…
105 #define pb_decode_noinit(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_NOINIT)
106 #define pb_decode_delimited(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_DELIMITED)
107 #define pb_decode_delimited_noinit(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_DELIMITED | PB_DECODE_NOINI…
108 #define pb_decode_nullterminated(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_NULLTERMINATED)
Dpb_decode.c1142 bool checkreturn pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, … in pb_decode_ex() function
DCHANGELOG.txt119 Add pb_decode_ex(), pb_encode_ex() functions.
/nanopb-2.7.6/spm_headers/nanopb/
Dpb_decode.h102 bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int…
105 #define pb_decode_noinit(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_NOINIT)
106 #define pb_decode_delimited(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_DELIMITED)
107 #define pb_decode_delimited_noinit(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_DELIMITED | PB_DECODE_NOINI…
108 #define pb_decode_nullterminated(s,f,d) pb_decode_ex(s,f,d, PB_DECODE_NULLTERMINATED)
/nanopb-2.7.6/tests/decode_unittests/
Ddecode_unittests.c397 … TEST((s = S("\x00"), pb_decode_ex(&s, IntegerArray_fields, &dest, PB_DECODE_NULLTERMINATED))) in main()
398 …TEST((s = S("\x08\x01\x00"), pb_decode_ex(&s, IntegerArray_fields, &dest, PB_DECODE_NULLTERMINATED… in main()
/nanopb-2.7.6/tests/fuzztest/
Dfuzztest.c91 status = pb_decode_ex(&stream, msgtype, msg, flags); in do_decode()
/nanopb-2.7.6/docs/
Dconcepts.md533 `pb_decode_ex()` can be used instead.
555 1. Functions `pb_encode_ex` and `pb_decode_ex` prefix the message
Dmigration.md197 encounters zero tag value. A new function `pb_decode_ex()`
202 switch it to use `pb_decode_ex()` and
Dreference.md767 ### pb_decode_ex subsection
771 …bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned in…
792 the message. On error return `pb_decode_ex` will release the memory