/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 78 int64_t opt_sfixed64 = 3052; local 160 alltypes.opt_sfixed64 = &opt_sfixed64;
|
decode_alltypes_pointer.c | 94 TEST(alltypes.opt_sfixed64 == NULL); 117 TEST(alltypes.opt_sfixed64 && *alltypes.opt_sfixed64== 3052);
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 214 int64_t opt_sfixed64 = 3052; local 375 alltypes.opt_sfixed64.funcs.decode = &read_fixed64; 376 alltypes.opt_sfixed64.arg = &opt_sfixed64;
|
encode_alltypes_callback.c | 201 int64_t opt_sfixed64 = 3052; local 356 alltypes.opt_sfixed64.funcs.encode = &write_fixed64; 357 alltypes.opt_sfixed64.arg = &opt_sfixed64;
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 84 PB_FIELD( 52, SFIXED64, OPTIONAL, STATIC, AllTypes, opt_sfixed64, opt_fixed64, &AllTypes_opt_sfixed64_default), 85 PB_FIELD( 53, DOUBLE , OPTIONAL, STATIC, AllTypes, opt_double, opt_sfixed64, &AllTypes_opt_double_default),
|
alltypes_legacy.h | 121 int64_t opt_sfixed64; member in struct:_AllTypes
|
encode_legacy.c | 100 alltypes.opt_sfixed64 = 3052;
|
decode_legacy.c | 112 TEST(alltypes.opt_sfixed64 == 4052); 156 TEST(alltypes.opt_sfixed64 == 3052);
|
/external/nanopb-c/tests/alltypes/ |
encode_alltypes.c | 109 alltypes.opt_sfixed64 = 3052;
|
decode_alltypes.c | 110 TEST(alltypes.opt_sfixed64 == 4052); 155 TEST(alltypes.opt_sfixed64 == 3052);
|