Searched refs:PB_WT_STRING (Results 1 – 8 of 8) sorted by relevance
/external/nanopb-c/examples/using_union_messages/ |
D | decode.c | 25 if (wire_type == PB_WT_STRING) in decode_unionmessage_type()
|
/external/nanopb-c/ |
D | pb_decode.c | 278 case PB_WT_STRING: return pb_skip_string(stream); in pb_skip_field() 427 if (wire_type == PB_WT_STRING in decode_static_field() 537 if (wire_type == PB_WT_STRING in decode_pointer_field() 614 if (wire_type == PB_WT_STRING) in decode_callback_field()
|
D | pb_encode.c | 127 if (!pb_encode_tag(stream, PB_WT_STRING, field->tag)) in encode_array() 487 wiretype = PB_WT_STRING; in pb_encode_tag_for_field()
|
D | pb.h | 297 PB_WT_STRING = 2, enumerator
|
/external/nanopb-c/tests/alltypes_callback/ |
D | encode_alltypes_callback.c | 90 return pb_encode_tag(stream, PB_WT_STRING, field->tag) && in write_repeated_fixed32() 104 return pb_encode_tag(stream, PB_WT_STRING, field->tag) && in write_repeated_fixed64()
|
/external/nanopb-c/docs/ |
D | reference.rst | 304 PB_WT_STRING = 2, 436 …ittle bit more involved: you need to use `pb_encode_tag` and specify `PB_WT_STRING` as the wire ty… 445 :wiretype: PB_WT_VARINT, PB_WT_64BIT, PB_WT_STRING or PB_WT_32BIT 468 STRING, BYTES, SUBMESSAGE PB_WT_STRING 646 Skip a varint-length-prefixed string. This means skipping a value with wire type PB_WT_STRING. :: 735 Decode the length for a field with wire type *PB_WT_STRING* and create a substream for reading the …
|
D | concepts.rst | 191 …as a packed array, you must call `pb_encode_tag`_ instead to specify a wire type of *PB_WT_STRING*.
|
/external/nanopb-c/tests/encode_unittests/ |
D | encode_unittests.c | 92 TEST(WRITES(pb_encode_tag(&s, PB_WT_STRING, 5), "\x2A")); in main()
|