-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathperfetto_flags.aconfig
More file actions
65 lines (64 loc) · 2.36 KB
/
perfetto_flags.aconfig
File metadata and controls
65 lines (64 loc) · 2.36 KB
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
60
61
62
63
64
65
package: "perfetto.flags"
container: "system"
flag {
name: "save_all_traces_in_bugreport"
namespace: "perfetto"
description: "This flag controls whether dumpstate invokes perfetto --save-for-bugreport (when disabled, old behavrior) or --save-all-for-bugreport (when enabled, new behavior). save-all serializes all the eligible active traces, rather than only the one with the highest bugreport score"
bug: "321196572"
}
flag {
name: "test_read_only_flag"
namespace: "perfetto"
description: "A test flag for verifying that support for read-only flags in Perfetto works correctly."
bug: "433766726"
is_fixed_read_only: true
}
flag {
name: "use_lockfree_taskrunner"
namespace: "perfetto"
description: "Controls whether base::MaybeLockFreeTaskRunner will use the battle-tested base::UnixTaskRunner or the new base::UnixTaskRunner"
bug: "441118768"
is_fixed_read_only: true
}
flag {
name: "buffer_clone_preserve_read_iter"
namespace: "perfetto"
description: "Controls whether TraceBuffer::CloneReadOnly() will preserve the read state (true, new behavior) or clear it (false, legacy behavior)."
bug: "448604718"
is_fixed_read_only: true
}
flag {
name: "use_unix_socket_inotify"
namespace: "perfetto"
description: "Enables immediate reconnection to traced in case of crash or disconnection using inotify"
bug: "445943111"
is_fixed_read_only: true
}
flag {
name: "track_event_incremental_state_clear_not_destroy"
namespace: "perfetto"
description: "Instead of creating/destroying intern maps for TrackEvent's ClearIncrementalState callback, instead just clear the maps, preventing unnecessary memory allocs/frees."
bug: "473625429"
is_fixed_read_only: true
}
flag {
name: "trigger_perfetto_on_traced_probes_disconnect"
namespace: "perfetto"
description: "When enabled, traced fires a trigger when traced_probes disconnects, allowing pre-configured trace sessions to capture crash diagnostics."
bug: "496506220"
is_fixed_read_only: true
}
flag {
name: "use_pcre2"
namespace: "perfetto"
description: "Controls whether to use PCRE2 as the regex engine on Android. If disabled, it falls back to std::regex."
bug: "494498282"
is_fixed_read_only: true
}
flag {
name: "sys_stats_large_read"
namespace: "perfetto"
description: "For sys_stats, calls read() until EOF instead of a single pread()"
bug: "503864690"
is_fixed_read_only: true
}