Searched refs:dest_struct (Results 1 – 5 of 5) sorted by relevance
/nanopb-2.7.6/ |
D | pb_decode.h | 74 bool pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct); 102 bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int… 115 void pb_release(const pb_msgdesc_t *fields, void *dest_struct); 118 #define pb_release(fields, dest_struct) PB_UNUSED(fields); PB_UNUSED(dest_struct); argument
|
D | pb_decode.c | 978 …b_decode_inner(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int f… in pb_decode_inner() argument 995 if (pb_field_iter_begin(&iter, fields, dest_struct)) in pb_decode_inner() 1142 bool checkreturn pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, … in pb_decode_ex() argument 1148 status = pb_decode_inner(stream, fields, dest_struct, flags); in pb_decode_ex() 1156 status = pb_decode_inner(&substream, fields, dest_struct, flags); in pb_decode_ex() 1164 pb_release(fields, dest_struct); in pb_decode_ex() 1170 bool checkreturn pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct) in pb_decode() argument 1174 status = pb_decode_inner(stream, fields, dest_struct, 0); in pb_decode() 1178 pb_release(fields, dest_struct); in pb_decode() 1308 void pb_release(const pb_msgdesc_t *fields, void *dest_struct) in pb_release() argument [all …]
|
/nanopb-2.7.6/spm_headers/nanopb/ |
D | pb_decode.h | 74 bool pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct); 102 bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int… 115 void pb_release(const pb_msgdesc_t *fields, void *dest_struct); 118 #define pb_release(fields, dest_struct) PB_UNUSED(fields); PB_UNUSED(dest_struct); argument
|
/nanopb-2.7.6/examples/using_union_messages/ |
D | decode.c | 44 …ode_unionmessage_contents(pb_istream_t *stream, const pb_msgdesc_t *messagetype, void *dest_struct) in decode_unionmessage_contents() argument 51 status = pb_decode(&substream, messagetype, dest_struct); in decode_unionmessage_contents()
|
/nanopb-2.7.6/docs/ |
D | reference.md | 745 bool pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct); 751 | dest_struct | Pointer to message structure where data will be stored. 771 …bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned in… 777 | dest_struct | Pointer to message structure where data will be stored. 799 void pb_release(const pb_msgdesc_t *fields, void *dest_struct); 804 | dest_struct | Pointer to structure where data is stored. If `NULL`, function does nothin…
|