You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
719 B
28 lines
719 B
include "foo.fbs";
|
|
include "bar.fbs";
|
|
include "baz.fbs";
|
|
include "qux.fbs";
|
|
|
|
namespace testing;
|
|
|
|
attribute "privacy";
|
|
|
|
table DumpsysTestDataRoot {
|
|
string_private:string;
|
|
string_opaque:string (privacy:"Opaque");
|
|
string_anonymized:string (privacy:"Anonymized");
|
|
string_any:string (privacy:"Any");
|
|
|
|
int_private:int32 (privacy:"Private");
|
|
int_opaque:int32 (privacy:"Opaque");
|
|
int_anonymized:int32 (privacy:"Anonymized");
|
|
int_any:int32 (privacy:"Any");
|
|
|
|
foo_module_data:FooTestSchema (privacy:"Any");
|
|
bar_module_data:BarTestSchema (privacy:"Any");
|
|
baz_module_data:BazTestSchema (privacy:"Any");
|
|
qux_module_data:QuxTestSchema (privacy:"Any");
|
|
}
|
|
|
|
root_type DumpsysTestDataRoot;
|