OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dest_struct
(Results
1 - 3
of
3
) sorted by null
/external/nanopb-c/
pb_decode.h
68
bool pb_decode(pb_istream_t *stream, const pb_field_t fields[], void *
dest_struct
);
80
bool pb_decode_noinit(pb_istream_t *stream, const pb_field_t fields[], void *
dest_struct
);
86
bool pb_decode_delimited(pb_istream_t *stream, const pb_field_t fields[], void *
dest_struct
);
93
void pb_release(const pb_field_t fields[], void *
dest_struct
);
pb_decode.c
29
void *
dest_struct
; /* Pointer to the destination structure to decode to */
member in struct:__anon28863
39
static void pb_field_init(pb_field_iterator_t *iter, const pb_field_t *fields, void *
dest_struct
);
48
static void pb_message_set_to_defaults(const pb_field_t fields[], void *
dest_struct
);
341
static void pb_field_init(pb_field_iterator_t *iter, const pb_field_t *fields, void *
dest_struct
)
346
iter->pData = (char*)
dest_struct
+ iter->pos->data_offset;
348
iter->
dest_struct
=
dest_struct
;
379
iter->pData = iter->
dest_struct
;
681
iter.
dest_struct
= extension->dest;
730
static void pb_message_set_to_defaults(const pb_field_t fields[], void *
dest_struct
)
[
all
...]
/external/nanopb-c/examples/using_union_messages/
decode.c
45
bool decode_unionmessage_contents(pb_istream_t *stream, const pb_field_t fields[], void *
dest_struct
)
52
status = pb_decode(&substream, fields,
dest_struct
);
Completed in 954 milliseconds