Searched refs:src_struct (Results 1 – 5 of 5) sorted by relevance
/aosp_15_r20/external/nanopb-c/ |
H A D | pb_encode.h | 67 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 72 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 78 … pb_encode_nullterminated(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 82 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 164 bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|
H A D | pb_encode.c | 528 bool checkreturn pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode() argument 531 if (!pb_field_iter_begin(&iter, fields, pb_const_cast(src_struct))) in pb_encode() 552 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_delimited() argument 554 return pb_encode_submessage(stream, fields, src_struct); in pb_encode_delimited() 557 …l pb_encode_nullterminated(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_nullterminated() argument 561 if (!pb_encode(stream, fields, src_struct)) in pb_encode_nullterminated() 567 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct) in pb_get_encoded_size() argument 571 if (!pb_encode(&stream, fields, src_struct)) in pb_get_encoded_size() 717 …eturn pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_submessage() argument 724 if (!pb_encode(&substream, fields, src_struct)) in pb_encode_submessage() [all …]
|
/aosp_15_r20/external/nanopb-c/spm_headers/nanopb/ |
H A D | pb_encode.h | 67 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 72 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 78 … pb_encode_nullterminated(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 82 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 164 bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|
/aosp_15_r20/system/chre/apps/nearby/third_party/nanopb/ |
H A D | pb_encode.h | 67 const void *src_struct); 73 const void *src_struct); 80 const void *src_struct); 85 const void *src_struct); 171 const void *src_struct);
|
/aosp_15_r20/external/nanopb-c/docs/ |
H A D | reference.rst | 447 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 451 :src_struct: Pointer to the data that will be serialized. 460 … bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 479 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 483 :src_struct: Pointer to the data that will be serialized. 575 …bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|