summaryrefslogtreecommitdiff
path: root/flags/system_service.aconfig
blob: 65caf1e60c4597e2680426aef22129fb0660c7a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package: "com.android.bluetooth.flags"
container: "com.android.bt"

flag {
    name: "enforce_resolve_system_service_behavior"
    namespace: "bluetooth"
    description: "Loudly crash when it is not possible to find a service to start bluetooth"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "366273182"
}

flag {
    name: "get_state_from_system_server"
    namespace: "bluetooth"
    description: "Get Bluetooth state from system server instead of from Bluetooth app"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "362569584"
}

flag {
    name: "get_name_and_address_as_callback"
    namespace: "bluetooth"
    description: "Getting the name and address is a non-oneway call. Instead inform the system server with callback"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "368114370"
}

flag {
    name: "kill_instead_of_exit"
    namespace: "bluetooth"
    description: "There is no value in pretending we are exiting properly. This is a kill and we should express it this way when finishing the process"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "339553092"
}

flag {
    name: "remove_one_time_get_name_and_address"
    namespace: "bluetooth"
    description: "We don't need to start bluetooth the first time to get name & address. We can wait for a proper start"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
    bug: "368120237"
}

flag {
    name: "system_server_messenger"
    namespace: "bluetooth"
    description: "Replace binder call to the system server with a Messenger to enforce thread safety"
    bug: "321804999"
}