summaryrefslogtreecommitdiff
path: root/system/gd/dumpsys/bluetooth_flatbuffer_test.fbs
blob: f449813620e6e4eb1dc77f5ac6fa40b87ae50466 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Bluetooth module test schema

attribute "privacy";

table TestTable {
    string_private:string; // no privacy attribute implies private
    string_opaque:string (privacy:"Opaque");
    string_anonymized:string (privacy:"Anonymized");
    string_any:string (privacy:"Any");

    int_private:int32 (privacy:"Private"); // Explicitly private
    int_opaque:int32 (privacy:"Opaque");
    int_anonymized:int32 (privacy:"Anonymized");
    int_any:int32 (privacy:"Any");
}

root_type TestTable;