/external/nanopb-c/ |
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);
|
D | pb_encode.c | 494 bool checkreturn pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode() argument 497 if (!pb_field_iter_begin(&iter, fields, pb_const_cast(src_struct))) in pb_encode() 518 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_delimited() argument 520 return pb_encode_submessage(stream, fields, src_struct); in pb_encode_delimited() 523 …l pb_encode_nullterminated(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_nullterminated() argument 527 if (!pb_encode(stream, fields, src_struct)) in pb_encode_nullterminated() 533 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct) in pb_get_encoded_size() argument 537 if (!pb_encode(&stream, fields, src_struct)) in pb_get_encoded_size() 682 …eturn pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_submessage() argument 689 if (!pb_encode(&substream, fields, src_struct)) in pb_encode_submessage() [all …]
|
/external/grpc-grpc/third_party/nanopb/ |
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); 76 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 148 bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|
D | pb_encode.c | 372 bool checkreturn pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode() argument 375 if (!pb_field_iter_begin(&iter, fields, remove_const(src_struct))) in pb_encode() 396 bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_delimited() argument 398 return pb_encode_submessage(stream, fields, src_struct); in pb_encode_delimited() 401 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct) in pb_get_encoded_size() argument 405 if (!pb_encode(&stream, fields, src_struct)) in pb_get_encoded_size() 521 …eturn pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct) in pb_encode_submessage() argument 528 if (!pb_encode(&substream, fields, src_struct)) in pb_encode_submessage() 557 status = pb_encode(&substream, fields, src_struct); in pb_encode_submessage()
|
/external/grpc-grpc/third_party/nanopb/docs/ |
D | reference.rst | 433 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 437 :src_struct: Pointer to the data that will be serialized. 446 … bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 465 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 469 :src_struct: Pointer to the data that will be serialized. 561 …bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|
/external/nanopb-c/docs/ |
D | reference.rst | 443 bool pb_encode(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 447 :src_struct: Pointer to the data that will be serialized. 456 … bool pb_encode_delimited(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct); 475 bool pb_get_encoded_size(size_t *size, const pb_field_t fields[], const void *src_struct); 479 :src_struct: Pointer to the data that will be serialized. 571 …bool pb_encode_submessage(pb_ostream_t *stream, const pb_field_t fields[], const void *src_struct);
|