OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nanopb
(Results
1 - 25
of
61
) sorted by null
1
2
3
/external/nanopb-c/tests/fixed_count/
fixed_count.proto
1
/* Test
nanopb
fixed count option. */
5
import "
nanopb
.proto";
9
repeated int32 data = 1 [(
nanopb
).max_count = 3, (
nanopb
).fixed_count = true];
14
repeated Message1 data = 1 [(
nanopb
).max_count = 2, (
nanopb
).fixed_count = true];
19
repeated Message2 data1 = 1 [(
nanopb
).max_count = 2, (
nanopb
).fixed_count = true];
20
repeated Message2 data2 = 2 [(
nanopb
).max_count = 2, (
nanopb
).fixed_count = true]
[
all
...]
/external/grpc-grpc/third_party/nanopb/tests/inline/
inline.proto
1
/* Test
nanopb
option parsing.
7
import "
nanopb
.proto";
11
required bytes data = 1 [(
nanopb
).type = FT_INLINE, (
nanopb
).max_size = 32];
16
optional bytes data = 1 [(
nanopb
).type = FT_INLINE, (
nanopb
).max_size = 64];
/external/nanopb-c/tests/inline/
inline.proto
1
/* Test
nanopb
option parsing.
7
import "
nanopb
.proto";
11
required bytes data = 1 [(
nanopb
).type = FT_INLINE, (
nanopb
).max_size = 32];
16
optional bytes data = 1 [(
nanopb
).type = FT_INLINE, (
nanopb
).max_size = 64];
/external/grpc-grpc/third_party/nanopb/tests/intsizes/
intsizes.proto
1
/* Test the integer size overriding in
nanopb
options.
11
import '
nanopb
.proto';
14
required int32 req_int8 = 1 [(
nanopb
).int_size = IS_8];
15
required uint32 req_uint8 = 2 [(
nanopb
).int_size = IS_8];
16
required sint32 req_sint8 = 3 [(
nanopb
).int_size = IS_8];
17
required int32 req_int16 = 4 [(
nanopb
).int_size = IS_16];
18
required uint32 req_uint16 = 5 [(
nanopb
).int_size = IS_16];
19
required sint32 req_sint16 = 6 [(
nanopb
).int_size = IS_16];
20
required int32 req_int32 = 7 [(
nanopb
).int_size = IS_32];
21
required uint32 req_uint32 = 8 [(
nanopb
).int_size = IS_32]
[
all
...]
/external/nanopb-c/tests/intsizes/
intsizes.proto
1
/* Test the integer size overriding in
nanopb
options.
11
import '
nanopb
.proto';
14
required int32 req_int8 = 1 [(
nanopb
).int_size = IS_8];
15
required uint32 req_uint8 = 2 [(
nanopb
).int_size = IS_8];
16
required sint32 req_sint8 = 3 [(
nanopb
).int_size = IS_8];
17
required int32 req_int16 = 4 [(
nanopb
).int_size = IS_16];
18
required uint32 req_uint16 = 5 [(
nanopb
).int_size = IS_16];
19
required sint32 req_sint16 = 6 [(
nanopb
).int_size = IS_16];
20
required int32 req_int32 = 7 [(
nanopb
).int_size = IS_32];
21
required uint32 req_uint32 = 8 [(
nanopb
).int_size = IS_32]
[
all
...]
/external/grpc-grpc/third_party/nanopb/tests/
Makefile
15
lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/
nanopb
.info
18
lcov -r build/coverage/
nanopb
.info '*tests*' -o build/coverage/
nanopb
.info
21
genhtml -o build/coverage build/coverage/
nanopb
.info
/external/nanopb-c/tests/
Makefile
15
lcov --base-directory . --directory build/ --gcov-tool gcov-4.6 -c -o build/coverage/
nanopb
.info
18
lcov -r build/coverage/
nanopb
.info '*tests*' -o build/coverage/
nanopb
.info
21
genhtml -o build/coverage build/coverage/
nanopb
.info
/external/grpc-grpc/tools/fuzzer/runners/
nanopb_fuzzer_response_test.sh
30
bins/$config/nanopb_fuzzer_response_test $flags fuzzer_output test/core/
nanopb
/corpus_response
nanopb_fuzzer_serverlist_test.sh
30
bins/$config/nanopb_fuzzer_serverlist_test $flags fuzzer_output test/core/
nanopb
/corpus_serverlist
/external/nanopb-c/tests/options/
options.proto
1
/* Test
nanopb
option parsing.
7
import "
nanopb
.proto";
28
required string fieldsize = 1 [(
nanopb
).max_size = 40];
29
required string fieldlen = 2 [(
nanopb
).max_length = 40];
36
required int32 int32_callback = 1 [(
nanopb
).type = FT_CALLBACK];
75
optional int32 skipped_field = 2 [(
nanopb
).type = FT_IGNORE];
96
optional int32 proto3field = 1 [(
nanopb
).proto3 = true];
/external/grpc-grpc/third_party/nanopb/extra/
nanopb.mk
2
# .pb.c and .pb.h files out of .proto, as well the path to
nanopb
core.
4
# Path to the
nanopb
root directory
7
# Files for the
nanopb
core
28
PROTOC_OPTS = --plugin=protoc-gen-
nanopb
=$(NANOPB_DIR)/generator/protoc-gen-
nanopb
.bat
30
PROTOC_OPTS = --plugin=protoc-gen-
nanopb
=$(NANOPB_DIR)/generator/protoc-gen-
nanopb
/external/nanopb-c/extra/
nanopb.mk
2
# .pb.c and .pb.h files out of .proto, as well the path to
nanopb
core.
4
# Path to the
nanopb
root directory
7
# Files for the
nanopb
core
28
PROTOC_OPTS = --plugin=protoc-gen-
nanopb
=$(NANOPB_DIR)/generator/protoc-gen-
nanopb
.bat
30
PROTOC_OPTS = --plugin=protoc-gen-
nanopb
=$(NANOPB_DIR)/generator/protoc-gen-
nanopb
/external/grpc-grpc/third_party/nanopb/generator/
protoc-gen-nanopb.bat
5
:: protoc --plugin=
nanopb
=..../protoc-gen-
nanopb
.bat --nanopb_out=dir foo.proto
7
:: Note that if you use the binary package of
nanopb
, the protoc
/external/nanopb-c/generator/
protoc-gen-nanopb.bat
5
:: protoc --plugin=protoc-gen-
nanopb
=..../protoc-gen-
nanopb
.bat --nanopb_out=dir foo.proto
7
:: Note that if you use the binary package of
nanopb
, the protoc
/external/grpc-grpc/src/core/ext/filters/client_channel/lb_policy/grpclb/proto/grpc/lb/v1/google/protobuf/
duration.pb.c
1
/* Automatically generated
nanopb
constant definitions */
2
/* Generated by
nanopb
-0.3.7-dev */
7
#error Regenerate this file with the current version of
nanopb
generator.
duration.pb.h
1
/* Automatically generated
nanopb
header */
2
/* Generated by
nanopb
-0.3.7-dev */
9
#error Regenerate this file with the current version of
nanopb
generator.
35
/* Struct field encoding specification for
nanopb
*/
timestamp.pb.c
1
/* Automatically generated
nanopb
constant definitions */
2
/* Generated by
nanopb
-0.3.7-dev */
7
#error Regenerate this file with the current version of
nanopb
generator.
timestamp.pb.h
1
/* Automatically generated
nanopb
header */
2
/* Generated by
nanopb
-0.3.7-dev */
9
#error Regenerate this file with the current version of
nanopb
generator.
35
/* Struct field encoding specification for
nanopb
*/
/external/nanopb-c/examples/simple/
rules.mk
1
NANOPB_DIR := external/
nanopb
-0.3.9.1-linux-x86
22
include $(NANOPB_DIR)/extra/
nanopb
.mk
simple.pb.c
1
/* Automatically generated
nanopb
constant definitions */
2
/* Generated by
nanopb
-0.3.9.1 at Fri May 25 16:28:54 2018. */
8
#error Regenerate this file with the current version of
nanopb
generator.
simple.pb.h
1
/* Automatically generated
nanopb
header */
2
/* Generated by
nanopb
-0.3.9.1 at Fri May 25 16:28:54 2018. */
10
#error Regenerate this file with the current version of
nanopb
generator.
32
/* Struct field encoding specification for
nanopb
*/
/external/grpc-grpc/third_party/nanopb/tests/options/
options.proto
1
/* Test
nanopb
option parsing.
7
import "
nanopb
.proto";
28
required string fieldsize = 1 [(
nanopb
).max_size = 40];
35
required int32 int32_callback = 1 [(
nanopb
).type = FT_CALLBACK];
74
optional int32 skipped_field = 2 [(
nanopb
).type = FT_IGNORE];
/external/grpc-grpc/src/cpp/server/health/
health.pb.c
1
/* Automatically generated
nanopb
constant definitions */
2
/* Generated by
nanopb
-0.3.7-dev */
8
#error Regenerate this file with the current version of
nanopb
generator.
/external/grpc-grpc/third_party/nanopb/examples/network_server/
Makefile
1
# Include the
nanopb
provided Makefile rules
2
include ../../extra/
nanopb
.mk
/external/grpc-grpc/third_party/nanopb/examples/using_union_messages/
Makefile
1
# Include the
nanopb
provided Makefile rules
2
include ../../extra/
nanopb
.mk
Completed in 200 milliseconds
1
2
3