/external/qemu/ |
qemu-options.h | 32 #define DEF(option, opt_arg, opt_enum, opt_help) \ 33 opt_enum,
|
vl-android.c | [all...] |
/external/nanopb-c/tests/alltypes_pointer/ |
encode_alltypes_pointer.c | 84 MyEnum opt_enum = MyEnum_Truth; local 165 alltypes.opt_enum = &opt_enum;
|
decode_alltypes_pointer.c | 100 TEST(alltypes.opt_enum == NULL); 125 TEST(alltypes.opt_enum && *alltypes.opt_enum == MyEnum_Truth);
|
/external/nanopb-c/tests/backwards_compatibility/ |
alltypes_legacy.c | 89 PB_FIELD( 57, ENUM , OPTIONAL, STATIC, AllTypes, opt_enum, opt_submsg, &AllTypes_opt_enum_default), 90 PB_FIELD( 99, INT32 , REQUIRED, STATIC, AllTypes, end, opt_enum, 0),
|
alltypes_legacy.h | 131 MyEnum opt_enum; member in struct:_AllTypes
|
encode_legacy.c | 113 alltypes.opt_enum = MyEnum_Truth;
|
decode_legacy.c | 126 TEST(alltypes.opt_enum == MyEnum_Second); 170 TEST(alltypes.opt_enum == MyEnum_Truth);
|
/external/nanopb-c/tests/alltypes/ |
encode_alltypes.c | 122 alltypes.opt_enum = MyEnum_Truth;
|
decode_alltypes.c | 124 TEST(alltypes.opt_enum == MyEnum_Second); 169 TEST(alltypes.opt_enum == MyEnum_Truth);
|
/external/nanopb-c/tests/alltypes_callback/ |
decode_alltypes_callback.c | 390 alltypes.opt_enum.funcs.decode = &read_varint; 391 alltypes.opt_enum.arg = (void*)MyEnum_Truth;
|
encode_alltypes_callback.c | 371 alltypes.opt_enum.funcs.encode = &write_varint; 372 alltypes.opt_enum.arg = (void*)MyEnum_Truth;
|