Home
last modified time | relevance | path

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

/nanopb-3.4.0/
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.c1153 bool checkreturn pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, … in pb_decode_ex() function
DCHANGELOG.txt187 Add pb_decode_ex(), pb_encode_ex() functions.
/nanopb-3.4.0/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-3.4.0/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-3.4.0/tests/fuzztest/
Dfuzztest.c91 status = pb_decode_ex(&stream, msgtype, msg, flags); in do_decode()
/nanopb-3.4.0/docs/
Dconcepts.md534 `pb_decode_ex()` can be used instead.
556 1. Functions `pb_encode_ex` and `pb_decode_ex` prefix the message
Dmigration.md254 encounters zero tag value. A new function `pb_decode_ex()`
259 switch it to use `pb_decode_ex()` and
Dreference.md780 ### pb_decode_ex subsection
784 …bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned in…
805 the message. On error return `pb_decode_ex` will release the memory