Searched refs:PB_GET_ERROR (Results 1 – 20 of 20) sorted by relevance
/external/nanopb-c/examples/simple/ |
D | simple.c | 34 printf("Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main() 58 printf("Decoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/basic_buffer/ |
D | encode_buffer.c | 35 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_buffer.c | 83 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/basic_stream/ |
D | encode_stream.c | 37 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_stream.c | 79 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/missing_fields/ |
D | missing_fields.c | 34 printf("Decode failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/extensions/ |
D | encode_extensions.c | 46 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_extensions.c | 47 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/examples/network_server/ |
D | client.c | 75 fprintf(stderr, "Decode failed: %s\n", PB_GET_ERROR(&input)); in listdir()
|
D | server.c | 58 printf("Decode failed: %s\n", PB_GET_ERROR(&input)); in handle_connection()
|
/external/nanopb-c/examples/using_union_messages/ |
D | decode.c | 88 printf("Decode failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/ |
D | pb.h | 508 #define PB_GET_ERROR(stream) "(errmsg disabled)" macro 516 #define PB_GET_ERROR(stream) ((stream)->errmsg ? (stream)->errmsg : "(none)") macro
|
/external/nanopb-c/tests/alltypes/ |
D | encode_alltypes.c | 141 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_alltypes.c | 208 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/alltypes_pointer/ |
D | encode_alltypes_pointer.c | 184 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_alltypes_pointer.c | 166 fprintf(stderr, "Test failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/backwards_compatibility/ |
D | decode_legacy.c | 197 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/tests/alltypes_callback/ |
D | encode_alltypes_callback.c | 393 fprintf(stderr, "Encoding failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
D | decode_alltypes_callback.c | 418 printf("Parsing failed: %s\n", PB_GET_ERROR(&stream)); in main()
|
/external/nanopb-c/docs/ |
D | reference.rst | 343 PB_GET_ERROR section in pb.h 348 #define PB_GET_ERROR(stream) (string expression) 354 printf("Decode failed: %s\n", PB_GET_ERROR(stream));
|