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.
26 lines
650 B
26 lines
650 B
// shim::dumpsys data
|
|
namespace bluetooth.shim;
|
|
|
|
attribute "privacy";
|
|
|
|
table ExamplePiecemealTable {
|
|
example_string:string (privacy:"Any");
|
|
example_int:int (privacy:"Any");
|
|
example_float:float (privacy:"Any");
|
|
}
|
|
|
|
table ExampleInstantTable {
|
|
example_string:string (privacy:"Any");
|
|
example_int:int (privacy:"Any");
|
|
example_float:float (privacy:"Any");
|
|
}
|
|
|
|
table DumpsysModuleData {
|
|
title:string (privacy:"Any");
|
|
number_of_bundled_schemas:int (privacy:"Any");
|
|
example_piecemeal_table:ExamplePiecemealTable (privacy:"Any");
|
|
example_instant_table:ExampleInstantTable (privacy:"Any");
|
|
}
|
|
|
|
root_type DumpsysModuleData;
|