Home
last modified time | relevance | path

Searched refs:dest_struct (Results 1 – 5 of 5) sorted by relevance

/nanopb-3.4.0/
Dpb_decode.h74 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…
114 void pb_release(const pb_msgdesc_t *fields, void *dest_struct);
Dpb_decode.c989 …b_decode_inner(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned int f… in pb_decode_inner() argument
1006 if (pb_field_iter_begin(&iter, fields, dest_struct)) in pb_decode_inner()
1153 bool checkreturn pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, … in pb_decode_ex() argument
1159 status = pb_decode_inner(stream, fields, dest_struct, flags); in pb_decode_ex()
1167 status = pb_decode_inner(&substream, fields, dest_struct, flags); in pb_decode_ex()
1175 pb_release(fields, dest_struct); in pb_decode_ex()
1181 bool checkreturn pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct) in pb_decode() argument
1185 status = pb_decode_inner(stream, fields, dest_struct, 0); in pb_decode()
1189 pb_release(fields, dest_struct); in pb_decode()
1319 void pb_release(const pb_msgdesc_t *fields, void *dest_struct) in pb_release() argument
[all …]
/nanopb-3.4.0/spm_headers/nanopb/
Dpb_decode.h74 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…
114 void pb_release(const pb_msgdesc_t *fields, void *dest_struct);
/nanopb-3.4.0/examples/using_union_messages/
Ddecode.c44 …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-3.4.0/docs/
Dreference.md758 bool pb_decode(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct);
764 | dest_struct | Pointer to message structure where data will be stored.
784 …bool pb_decode_ex(pb_istream_t *stream, const pb_msgdesc_t *fields, void *dest_struct, unsigned in…
790 | dest_struct | Pointer to message structure where data will be stored.
812 void pb_release(const pb_msgdesc_t *fields, void *dest_struct);
817 | dest_struct | Pointer to structure where data is stored. If `NULL`, function does nothin…