HomeSort by relevance Sort by last modified time
    Searched refs:PB_GET_ERROR (Results 1 - 19 of 19) sorted by null

  /external/nanopb-c/examples/simple/
simple.c 34 printf("Encoding failed: %s\n", PB_GET_ERROR(&stream));
58 printf("Decoding failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/basic_buffer/
encode_buffer.c 35 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
decode_buffer.c 83 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/basic_stream/
encode_stream.c 37 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
decode_stream.c 79 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/missing_fields/
missing_fields.c 34 printf("Decode failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/extensions/
encode_extensions.c 46 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
decode_extensions.c 47 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/examples/using_union_messages/
decode.c 88 printf("Decode failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/examples/network_server/
client.c 75 fprintf(stderr, "Decode failed: %s\n", PB_GET_ERROR(&input));
server.c 58 printf("Decode failed: %s\n", PB_GET_ERROR(&input));
  /external/nanopb-c/tests/alltypes/
encode_alltypes.c 141 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
decode_alltypes.c 208 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/
pb.h 508 #define PB_GET_ERROR(stream) "(errmsg disabled)"
516 #define PB_GET_ERROR(stream) ((stream)->errmsg ? (stream)->errmsg : "(none)")
  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 184 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));
decode_alltypes_pointer.c 166 fprintf(stderr, "Test failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/backwards_compatibility/
decode_legacy.c 197 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
  /external/nanopb-c/tests/alltypes_callback/
decode_alltypes_callback.c 418 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream));
encode_alltypes_callback.c 393 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream));

Completed in 140 milliseconds