Home
last modified time | relevance | path

Searched refs:PB_WT_STRING (Results 1 – 8 of 8) sorted by relevance

/external/nanopb-c/examples/using_union_messages/
Ddecode.c25 if (wire_type == PB_WT_STRING) in decode_unionmessage_type()
/external/nanopb-c/
Dpb_decode.c278 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()
Dpb_encode.c127 if (!pb_encode_tag(stream, PB_WT_STRING, field->tag)) in encode_array()
487 wiretype = PB_WT_STRING; in pb_encode_tag_for_field()
Dpb.h297 PB_WT_STRING = 2, enumerator
/external/nanopb-c/tests/alltypes_callback/
Dencode_alltypes_callback.c90 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/
Dreference.rst304 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 …
Dconcepts.rst191 …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/
Dencode_unittests.c92 TEST(WRITES(pb_encode_tag(&s, PB_WT_STRING, 5), "\x2A")); in main()