/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 75 int32_t opt_sfixed32 = 3049; local 157 alltypes.opt_sfixed32 = &opt_sfixed32;
|
decode_alltypes_pointer.c | 91 TEST(alltypes.opt_sfixed32 == NULL); 114 TEST(alltypes.opt_sfixed32 && *alltypes.opt_sfixed32== 3049);
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 211 int32_t opt_sfixed32 = 3049; local 366 alltypes.opt_sfixed32.funcs.decode = &read_fixed32; 367 alltypes.opt_sfixed32.arg = &opt_sfixed32;
|
encode_alltypes_callback.c | 198 int32_t opt_sfixed32 = 3049; local 347 alltypes.opt_sfixed32.funcs.encode = &write_fixed32; 348 alltypes.opt_sfixed32.arg = &opt_sfixed32;
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 81 PB_FIELD( 49, SFIXED32, OPTIONAL, STATIC, AllTypes, opt_sfixed32, opt_fixed32, &AllTypes_opt_sfixed32_default), 82 PB_FIELD( 50, FLOAT , OPTIONAL, STATIC, AllTypes, opt_float, opt_sfixed32, &AllTypes_opt_float_default),
|
alltypes_legacy.h | 115 int32_t opt_sfixed32; member in struct:_AllTypes
|
encode_legacy.c | 93 alltypes.opt_sfixed32 = 3049;
|
decode_legacy.c | 105 TEST(alltypes.opt_sfixed32 == 4049); 149 TEST(alltypes.opt_sfixed32 == 3049);
|
/external/nanopb-c/tests/alltypes/ |
encode_alltypes.c | 102 alltypes.opt_sfixed32 = 3049;
|
decode_alltypes.c | 103 TEST(alltypes.opt_sfixed32 == 4049); 148 TEST(alltypes.opt_sfixed32 == 3049);
|