perfetto_consumer_proto/
perfetto.protos.rs

1#[derive(Clone, PartialEq, ::prost::Message)]
2pub struct ObservableEvents {
3    #[prost(message, repeated, tag="1")]
4    pub instance_state_changes: ::prost::alloc::vec::Vec<observable_events::DataSourceInstanceStateChange>,
5    #[prost(bool, optional, tag="2")]
6    pub all_data_sources_started: ::core::option::Option<bool>,
7    #[prost(message, optional, tag="3")]
8    pub clone_trigger_hit: ::core::option::Option<observable_events::CloneTriggerHit>,
9}
10/// Nested message and enum types in `ObservableEvents`.
11pub mod observable_events {
12    #[derive(Clone, PartialEq, ::prost::Message)]
13    pub struct DataSourceInstanceStateChange {
14        #[prost(string, optional, tag="1")]
15        pub producer_name: ::core::option::Option<::prost::alloc::string::String>,
16        #[prost(string, optional, tag="2")]
17        pub data_source_name: ::core::option::Option<::prost::alloc::string::String>,
18        #[prost(enumeration="DataSourceInstanceState", optional, tag="3")]
19        pub state: ::core::option::Option<i32>,
20    }
21    #[derive(Clone, PartialEq, ::prost::Message)]
22    pub struct CloneTriggerHit {
23        /// The TracingSessionID of the original tracing session which had a
24        /// CLONE_SNAPSHOT trigger defined. This is necessary just because the
25        /// consumer has no idea of what is the TSID of its own tracing session and
26        /// there is no other good way to plumb it.
27        #[prost(int64, optional, tag="1")]
28        pub tracing_session_id: ::core::option::Option<i64>,
29        /// The name of the CLONE_SNAPSHOT trigger which was hit.
30        #[prost(string, optional, tag="2")]
31        pub trigger_name: ::core::option::Option<::prost::alloc::string::String>,
32        /// The name of the producer that sent the CLONE_SNAPSHOT trigger.
33        #[prost(string, optional, tag="3")]
34        pub producer_name: ::core::option::Option<::prost::alloc::string::String>,
35        /// The uid of the producer that sent the CLONE_SNAPSHOT trigger.
36        #[prost(uint32, optional, tag="4")]
37        pub producer_uid: ::core::option::Option<u32>,
38        /// The timestamp of the CLONE_SNAPSHOT trigger which was hit.
39        #[prost(uint64, optional, tag="5")]
40        pub boot_time_ns: ::core::option::Option<u64>,
41    }
42    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
43    #[repr(i32)]
44    pub enum Type {
45        Unspecified = 0,
46        /// State changes of data source instances associated with the consumer's
47        /// session. Note that not all data sources may support these notifications.
48        /// See |will_notify_on_start/stop| in DataSourceDescriptor.
49        DataSourcesInstances = 1,
50        /// State change triggered when all data sources are in the STARTED state.
51        /// For data sources that registered with |will_notify_on_start| this happens
52        /// only after the data source has acked the start. This allows the consumer
53        /// to synchronize with the data sources and to perform actions (e.g. start a
54        /// test binary) only after trace recording is actually started.
55        /// Introduced in Android 11 (R).
56        AllDataSourcesStarted = 2,
57        /// When a tracing session has one or more triggers of type CLONE_SNAPSHOT
58        /// and a matching trigger is hit, the service will send this notification to
59        /// the consumer after |stop_delay_ms|.
60        CloneTriggerHit = 4,
61    }
62    impl Type {
63        /// String value of the enum field names used in the ProtoBuf definition.
64        ///
65        /// The values are not transformed in any way and thus are considered stable
66        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
67        pub fn as_str_name(&self) -> &'static str {
68            match self {
69                Type::Unspecified => "TYPE_UNSPECIFIED",
70                Type::DataSourcesInstances => "TYPE_DATA_SOURCES_INSTANCES",
71                Type::AllDataSourcesStarted => "TYPE_ALL_DATA_SOURCES_STARTED",
72                Type::CloneTriggerHit => "TYPE_CLONE_TRIGGER_HIT",
73            }
74        }
75    }
76    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
77    #[repr(i32)]
78    pub enum DataSourceInstanceState {
79        /// A data source is created in stopped state.
80        Stopped = 1,
81        Started = 2,
82    }
83    impl DataSourceInstanceState {
84        /// String value of the enum field names used in the ProtoBuf definition.
85        ///
86        /// The values are not transformed in any way and thus are considered stable
87        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
88        pub fn as_str_name(&self) -> &'static str {
89            match self {
90                DataSourceInstanceState::Stopped => "DATA_SOURCE_INSTANCE_STATE_STOPPED",
91                DataSourceInstanceState::Started => "DATA_SOURCE_INSTANCE_STATE_STARTED",
92            }
93        }
94    }
95}
96#[derive(Clone, PartialEq, ::prost::Message)]
97pub struct FtraceDescriptor {
98    /// Report the available atrace categories.
99    ///
100    /// Used by Traceur via `perfetto --query`.
101    #[prost(message, repeated, tag="1")]
102    pub atrace_categories: ::prost::alloc::vec::Vec<ftrace_descriptor::AtraceCategory>,
103}
104/// Nested message and enum types in `FtraceDescriptor`.
105pub mod ftrace_descriptor {
106    #[derive(Clone, PartialEq, ::prost::Message)]
107    pub struct AtraceCategory {
108        #[prost(string, optional, tag="1")]
109        pub name: ::core::option::Option<::prost::alloc::string::String>,
110        #[prost(string, optional, tag="2")]
111        pub description: ::core::option::Option<::prost::alloc::string::String>,
112    }
113}
114/// Description of GPU counters.
115/// This message is sent by a GPU counter producer to specify the counters
116/// available in the hardware.
117#[derive(Clone, PartialEq, ::prost::Message)]
118pub struct GpuCounterDescriptor {
119    #[prost(message, repeated, tag="1")]
120    pub specs: ::prost::alloc::vec::Vec<gpu_counter_descriptor::GpuCounterSpec>,
121    #[prost(message, repeated, tag="2")]
122    pub blocks: ::prost::alloc::vec::Vec<gpu_counter_descriptor::GpuCounterBlock>,
123    /// optional.  Minimum sampling period supported by the producer in
124    /// nanoseconds.
125    #[prost(uint64, optional, tag="3")]
126    pub min_sampling_period_ns: ::core::option::Option<u64>,
127    /// optional.  Maximum sampling period supported by the producer in
128    /// nanoseconds.
129    #[prost(uint64, optional, tag="4")]
130    pub max_sampling_period_ns: ::core::option::Option<u64>,
131    /// optional.  The producer supports counter sampling by instrumenting the
132    /// command buffer.
133    #[prost(bool, optional, tag="5")]
134    pub supports_instrumented_sampling: ::core::option::Option<bool>,
135}
136/// Nested message and enum types in `GpuCounterDescriptor`.
137pub mod gpu_counter_descriptor {
138    #[derive(Clone, PartialEq, ::prost::Message)]
139    pub struct GpuCounterSpec {
140        #[prost(uint32, optional, tag="1")]
141        pub counter_id: ::core::option::Option<u32>,
142        #[prost(string, optional, tag="2")]
143        pub name: ::core::option::Option<::prost::alloc::string::String>,
144        #[prost(string, optional, tag="3")]
145        pub description: ::core::option::Option<::prost::alloc::string::String>,
146        #[prost(enumeration="MeasureUnit", repeated, packed="false", tag="7")]
147        pub numerator_units: ::prost::alloc::vec::Vec<i32>,
148        #[prost(enumeration="MeasureUnit", repeated, packed="false", tag="8")]
149        pub denominator_units: ::prost::alloc::vec::Vec<i32>,
150        #[prost(bool, optional, tag="9")]
151        pub select_by_default: ::core::option::Option<bool>,
152        #[prost(enumeration="GpuCounterGroup", repeated, packed="false", tag="10")]
153        pub groups: ::prost::alloc::vec::Vec<i32>,
154        #[prost(oneof="gpu_counter_spec::PeakValue", tags="5, 6")]
155        pub peak_value: ::core::option::Option<gpu_counter_spec::PeakValue>,
156    }
157    /// Nested message and enum types in `GpuCounterSpec`.
158    pub mod gpu_counter_spec {
159        #[derive(Clone, PartialEq, ::prost::Oneof)]
160        pub enum PeakValue {
161            #[prost(int64, tag="5")]
162            IntPeakValue(i64),
163            #[prost(double, tag="6")]
164            DoublePeakValue(f64),
165        }
166    }
167    /// Allow producer to group counters into block to represent counter islands.
168    /// A capacity may be specified to indicate the number of counters that can be
169    /// enable simultaneously in that block.
170    #[derive(Clone, PartialEq, ::prost::Message)]
171    pub struct GpuCounterBlock {
172        /// required. Unique ID for the counter group.
173        #[prost(uint32, optional, tag="1")]
174        pub block_id: ::core::option::Option<u32>,
175        /// optional. Number of counters supported by the block. No limit if unset.
176        #[prost(uint32, optional, tag="2")]
177        pub block_capacity: ::core::option::Option<u32>,
178        /// optional. Name of block.
179        #[prost(string, optional, tag="3")]
180        pub name: ::core::option::Option<::prost::alloc::string::String>,
181        /// optional. Description for the block.
182        #[prost(string, optional, tag="4")]
183        pub description: ::core::option::Option<::prost::alloc::string::String>,
184        /// list of counters that are part of the block.
185        #[prost(uint32, repeated, packed="false", tag="5")]
186        pub counter_ids: ::prost::alloc::vec::Vec<u32>,
187    }
188    /// Logical groups for a counter.  This is used in the UI to present the
189    /// related counters together.
190    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
191    #[repr(i32)]
192    pub enum GpuCounterGroup {
193        Unclassified = 0,
194        System = 1,
195        Vertices = 2,
196        Fragments = 3,
197        Primitives = 4,
198        /// Includes counters relating to caching and bandwidth.
199        Memory = 5,
200        Compute = 6,
201    }
202    impl GpuCounterGroup {
203        /// String value of the enum field names used in the ProtoBuf definition.
204        ///
205        /// The values are not transformed in any way and thus are considered stable
206        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
207        pub fn as_str_name(&self) -> &'static str {
208            match self {
209                GpuCounterGroup::Unclassified => "UNCLASSIFIED",
210                GpuCounterGroup::System => "SYSTEM",
211                GpuCounterGroup::Vertices => "VERTICES",
212                GpuCounterGroup::Fragments => "FRAGMENTS",
213                GpuCounterGroup::Primitives => "PRIMITIVES",
214                GpuCounterGroup::Memory => "MEMORY",
215                GpuCounterGroup::Compute => "COMPUTE",
216            }
217        }
218    }
219    /// next id: 41
220    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
221    #[repr(i32)]
222    pub enum MeasureUnit {
223        None = 0,
224        Bit = 1,
225        Kilobit = 2,
226        Megabit = 3,
227        Gigabit = 4,
228        Terabit = 5,
229        Petabit = 6,
230        Byte = 7,
231        Kilobyte = 8,
232        Megabyte = 9,
233        Gigabyte = 10,
234        Terabyte = 11,
235        Petabyte = 12,
236        Hertz = 13,
237        Kilohertz = 14,
238        Megahertz = 15,
239        Gigahertz = 16,
240        Terahertz = 17,
241        Petahertz = 18,
242        Nanosecond = 19,
243        Microsecond = 20,
244        Millisecond = 21,
245        Second = 22,
246        Minute = 23,
247        Hour = 24,
248        Vertex = 25,
249        Pixel = 26,
250        Triangle = 27,
251        Primitive = 38,
252        Fragment = 39,
253        Milliwatt = 28,
254        Watt = 29,
255        Kilowatt = 30,
256        Joule = 31,
257        Volt = 32,
258        Ampere = 33,
259        Celsius = 34,
260        Fahrenheit = 35,
261        Kelvin = 36,
262        /// Values should be out of 100.
263        Percent = 37,
264        Instruction = 40,
265    }
266    impl MeasureUnit {
267        /// String value of the enum field names used in the ProtoBuf definition.
268        ///
269        /// The values are not transformed in any way and thus are considered stable
270        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
271        pub fn as_str_name(&self) -> &'static str {
272            match self {
273                MeasureUnit::None => "NONE",
274                MeasureUnit::Bit => "BIT",
275                MeasureUnit::Kilobit => "KILOBIT",
276                MeasureUnit::Megabit => "MEGABIT",
277                MeasureUnit::Gigabit => "GIGABIT",
278                MeasureUnit::Terabit => "TERABIT",
279                MeasureUnit::Petabit => "PETABIT",
280                MeasureUnit::Byte => "BYTE",
281                MeasureUnit::Kilobyte => "KILOBYTE",
282                MeasureUnit::Megabyte => "MEGABYTE",
283                MeasureUnit::Gigabyte => "GIGABYTE",
284                MeasureUnit::Terabyte => "TERABYTE",
285                MeasureUnit::Petabyte => "PETABYTE",
286                MeasureUnit::Hertz => "HERTZ",
287                MeasureUnit::Kilohertz => "KILOHERTZ",
288                MeasureUnit::Megahertz => "MEGAHERTZ",
289                MeasureUnit::Gigahertz => "GIGAHERTZ",
290                MeasureUnit::Terahertz => "TERAHERTZ",
291                MeasureUnit::Petahertz => "PETAHERTZ",
292                MeasureUnit::Nanosecond => "NANOSECOND",
293                MeasureUnit::Microsecond => "MICROSECOND",
294                MeasureUnit::Millisecond => "MILLISECOND",
295                MeasureUnit::Second => "SECOND",
296                MeasureUnit::Minute => "MINUTE",
297                MeasureUnit::Hour => "HOUR",
298                MeasureUnit::Vertex => "VERTEX",
299                MeasureUnit::Pixel => "PIXEL",
300                MeasureUnit::Triangle => "TRIANGLE",
301                MeasureUnit::Primitive => "PRIMITIVE",
302                MeasureUnit::Fragment => "FRAGMENT",
303                MeasureUnit::Milliwatt => "MILLIWATT",
304                MeasureUnit::Watt => "WATT",
305                MeasureUnit::Kilowatt => "KILOWATT",
306                MeasureUnit::Joule => "JOULE",
307                MeasureUnit::Volt => "VOLT",
308                MeasureUnit::Ampere => "AMPERE",
309                MeasureUnit::Celsius => "CELSIUS",
310                MeasureUnit::Fahrenheit => "FAHRENHEIT",
311                MeasureUnit::Kelvin => "KELVIN",
312                MeasureUnit::Percent => "PERCENT",
313                MeasureUnit::Instruction => "INSTRUCTION",
314            }
315        }
316    }
317}
318#[derive(Clone, PartialEq, ::prost::Message)]
319pub struct TrackEventCategory {
320    #[prost(string, optional, tag="1")]
321    pub name: ::core::option::Option<::prost::alloc::string::String>,
322    #[prost(string, optional, tag="2")]
323    pub description: ::core::option::Option<::prost::alloc::string::String>,
324    #[prost(string, repeated, tag="3")]
325    pub tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
326}
327#[derive(Clone, PartialEq, ::prost::Message)]
328pub struct TrackEventDescriptor {
329    #[prost(message, repeated, tag="1")]
330    pub available_categories: ::prost::alloc::vec::Vec<TrackEventCategory>,
331}
332/// This message is sent from Producer(s) to the tracing Service when registering
333/// to advertise their capabilities. It describes the structure of tracing
334/// protos that will be produced by the data source and the supported filters.
335#[derive(Clone, PartialEq, ::prost::Message)]
336pub struct DataSourceDescriptor {
337    /// e.g., "linux.ftrace", "chromium.tracing"
338    #[prost(string, optional, tag="1")]
339    pub name: ::core::option::Option<::prost::alloc::string::String>,
340    /// When non-zero, this is a unique ID within the scope of the Producer for
341    /// this data source (it is NOT globally unique). This is useful to
342    /// differentiate between data sources with matching names when calling
343    /// UpdateDataSource(). This field has been introduced in November 2021
344    /// (v22, Android T) and is not supported on older versions.
345    #[prost(uint64, optional, tag="7")]
346    pub id: ::core::option::Option<u64>,
347    /// When true the data source is expected to ack the stop request through the
348    /// NotifyDataSourceStopped() IPC. This field has been introduced after
349    /// Android P in Jul 2018 and is not supported on older versions.
350    #[prost(bool, optional, tag="2")]
351    pub will_notify_on_stop: ::core::option::Option<bool>,
352    /// When true the data source is expected to ack the start request through the
353    /// NotifyDataSourceStarted() IPC. This field has been introduced after
354    /// Android P in March 2019 and is not supported on older versions.
355    #[prost(bool, optional, tag="3")]
356    pub will_notify_on_start: ::core::option::Option<bool>,
357    /// If true, opt into receiving the ClearIncrementalState() IPC. This should be
358    /// set if the data source writes packets that refer to previous trace
359    /// contents, and knows how to stop referring to the already-emitted data.
360    #[prost(bool, optional, tag="4")]
361    pub handles_incremental_state_clear: ::core::option::Option<bool>,
362    /// If true, indicates that the data source does nothing upon Flush. This
363    /// allows the service to reduce the flush-related IPC traffic and better deal
364    /// with frozen producers (see go/perfetto-frozen). This is usually the case
365    /// for data sources like 'track_event' that don't have access to the various
366    /// thread task runners to post a flush task and rely purely on server-side
367    /// scraping.
368    /// Introduced in v39 / Android V.
369    #[prost(bool, optional, tag="9")]
370    pub no_flush: ::core::option::Option<bool>,
371    /// Optional specification about available GPU counters.
372    #[prost(message, optional, tag="5")]
373    pub gpu_counter_descriptor: ::core::option::Option<GpuCounterDescriptor>,
374    #[prost(message, optional, tag="6")]
375    pub track_event_descriptor: ::core::option::Option<TrackEventDescriptor>,
376    #[prost(message, optional, tag="8")]
377    pub ftrace_descriptor: ::core::option::Option<FtraceDescriptor>,
378}
379/// Reports the state of the tracing service. Used to gather details about the
380/// data sources connected.
381/// See ConsumerPort::QueryServiceState().
382#[derive(Clone, PartialEq, ::prost::Message)]
383pub struct TracingServiceState {
384    /// Lists all the producers connected.
385    #[prost(message, repeated, tag="1")]
386    pub producers: ::prost::alloc::vec::Vec<tracing_service_state::Producer>,
387    /// Lists the data sources available.
388    #[prost(message, repeated, tag="2")]
389    pub data_sources: ::prost::alloc::vec::Vec<tracing_service_state::DataSource>,
390    /// Lists the tracing sessions active AND owned by a consumer that has the same
391    /// UID of the caller (or all of them if the caller is root).
392    /// Introduced in v24 / Android T.
393    #[prost(message, repeated, tag="6")]
394    pub tracing_sessions: ::prost::alloc::vec::Vec<tracing_service_state::TracingSession>,
395    /// This is always set to true from v24 and beyond. This flag is only used to
396    /// tell the difference between: (1) talking to a recent service which happens
397    /// to have no tracing session active; (2) talking to an older version of the
398    /// service which will never report any tracing session.
399    #[prost(bool, optional, tag="7")]
400    pub supports_tracing_sessions: ::core::option::Option<bool>,
401    /// Total number of tracing sessions.
402    #[prost(int32, optional, tag="3")]
403    pub num_sessions: ::core::option::Option<i32>,
404    /// Number of tracing sessions in the started state. Always <= num_sessions.
405    #[prost(int32, optional, tag="4")]
406    pub num_sessions_started: ::core::option::Option<i32>,
407    /// The version of traced (the same returned by `traced --version`).
408    /// This is a human readable string with and its format varies depending on
409    /// the build system and the repo (standalone vs AOSP).
410    /// This is intended for human debugging only.
411    #[prost(string, optional, tag="5")]
412    pub tracing_service_version: ::core::option::Option<::prost::alloc::string::String>,
413}
414/// Nested message and enum types in `TracingServiceState`.
415pub mod tracing_service_state {
416    /// Describes a producer process.
417    #[derive(Clone, PartialEq, ::prost::Message)]
418    pub struct Producer {
419        /// Unique ID of the producer (monotonic counter).
420        #[prost(int32, optional, tag="1")]
421        pub id: ::core::option::Option<i32>,
422        /// Typically matches the process name.
423        #[prost(string, optional, tag="2")]
424        pub name: ::core::option::Option<::prost::alloc::string::String>,
425        /// Unix pid of the remote process. Supported only on Linux-based systems.
426        /// Introduced in v24 / Android T.
427        #[prost(int32, optional, tag="5")]
428        pub pid: ::core::option::Option<i32>,
429        /// Unix uid of the remote process.
430        #[prost(int32, optional, tag="3")]
431        pub uid: ::core::option::Option<i32>,
432        /// The version of the client library used by the producer.
433        /// This is a human readable string with and its format varies depending on
434        /// the build system and the repo (standalone vs AOSP).
435        /// This is intended for human debugging only.
436        #[prost(string, optional, tag="4")]
437        pub sdk_version: ::core::option::Option<::prost::alloc::string::String>,
438        /// Returns true if the process appears to be frozen (Android only).
439        /// Introduced in Perfetto V49 / Android 24Q4.
440        #[prost(bool, optional, tag="6")]
441        pub frozen: ::core::option::Option<bool>,
442    }
443    /// Describes a data source registered by a producer. Data sources are listed
444    /// regardless of the fact that they are being used or not.
445    #[derive(Clone, PartialEq, ::prost::Message)]
446    pub struct DataSource {
447        /// Descriptor passed by the data source when calling RegisterDataSource().
448        #[prost(message, optional, tag="1")]
449        pub ds_descriptor: ::core::option::Option<super::DataSourceDescriptor>,
450        /// ID of the producer, as per Producer.id.
451        #[prost(int32, optional, tag="2")]
452        pub producer_id: ::core::option::Option<i32>,
453    }
454    #[derive(Clone, PartialEq, ::prost::Message)]
455    pub struct TracingSession {
456        /// The TracingSessionID.
457        #[prost(uint64, optional, tag="1")]
458        pub id: ::core::option::Option<u64>,
459        /// The Unix uid of the consumer that started the session.
460        /// This is meaningful only if the caller is root. In all other cases only
461        /// tracing sessions that match the caller UID will be displayed.
462        #[prost(int32, optional, tag="2")]
463        pub consumer_uid: ::core::option::Option<i32>,
464        /// Internal state of the tracing session.
465        /// These strings are FYI only and subjected to change.
466        #[prost(string, optional, tag="3")]
467        pub state: ::core::option::Option<::prost::alloc::string::String>,
468        /// The unique_session_name as set in the trace config (might be empty).
469        #[prost(string, optional, tag="4")]
470        pub unique_session_name: ::core::option::Option<::prost::alloc::string::String>,
471        /// The number and size of each buffer.
472        #[prost(uint32, repeated, packed="false", tag="5")]
473        pub buffer_size_kb: ::prost::alloc::vec::Vec<u32>,
474        /// Duration, as specified in the TraceConfig.duration_ms.
475        #[prost(uint32, optional, tag="6")]
476        pub duration_ms: ::core::option::Option<u32>,
477        /// Number of data sources involved in the session.
478        #[prost(uint32, optional, tag="7")]
479        pub num_data_sources: ::core::option::Option<u32>,
480        /// Time when the session was started, in the CLOCK_REALTIME domain.
481        /// Available only on Linux-based systems.
482        #[prost(int64, optional, tag="8")]
483        pub start_realtime_ns: ::core::option::Option<i64>,
484        // The fields below have been introduced in v42.
485
486        /// The bugreport_score, as set in TraceConfig.bugreport_score.
487        #[prost(int32, optional, tag="9")]
488        pub bugreport_score: ::core::option::Option<i32>,
489        /// As per TraceConfig.bugreport_filename.
490        #[prost(string, optional, tag="10")]
491        pub bugreport_filename: ::core::option::Option<::prost::alloc::string::String>,
492        /// If true, the session is in the STARTED state. If false the session is in
493        /// any other state (see `state` field).
494        #[prost(bool, optional, tag="11")]
495        pub is_started: ::core::option::Option<bool>,
496    }
497}
498#[derive(Clone, PartialEq, ::prost::Message)]
499pub struct TracingServiceCapabilities {
500    /// Whether the service supports QueryCapabilities() at all or not.
501    /// This is only used at the C++ level to distinguish the case of talking to
502    /// an older version of the service that doesn't support QueryCapabilities().
503    /// In that case the IPC layer will just reject the unknown call, and the
504    /// consumer_ipc_client_impl.cc will return an empty message where this field
505    /// is false. In all other cases, this is always set to true.
506    #[prost(bool, optional, tag="1")]
507    pub has_query_capabilities: ::core::option::Option<bool>,
508    /// The set of known events that can be passed to ConsumerPort.ObserveEvents().
509    #[prost(enumeration="observable_events::Type", repeated, packed="false", tag="2")]
510    pub observable_events: ::prost::alloc::vec::Vec<i32>,
511    /// Whether the service supports TraceConfig.output_path (for asking traced to
512    /// create the output file instead of passing a file descriptor).
513    #[prost(bool, optional, tag="3")]
514    pub has_trace_config_output_path: ::core::option::Option<bool>,
515    /// Whether the service supports CloneSession and CLONE_SNAPSHOT triggers.
516    #[prost(bool, optional, tag="4")]
517    pub has_clone_session: ::core::option::Option<bool>,
518}
519/// Statistics for the internals of the tracing service.
520///
521/// Next id: 19.
522#[derive(Clone, PartialEq, ::prost::Message)]
523pub struct TraceStats {
524    /// Stats for the TraceBuffer(s) of the current trace session.
525    #[prost(message, repeated, tag="1")]
526    pub buffer_stats: ::prost::alloc::vec::Vec<trace_stats::BufferStats>,
527    /// The thresholds of each the `writer_stats` histogram buckets. This is
528    /// emitted only once as all WriterStats share the same bucket layout.
529    /// This field has the same cardinality of the
530    /// `writer_stats.chunk_payload_histogram_{counts,sum}` - 1.
531    /// (The -1 is because the last overflow bucket is not reported in the _def).
532    /// An array of values [10, 100, 1000] in the _def array means that there are
533    /// four buckets (3 + the implicit overflow bucket):
534    /// \[0\]: x <= 10; \[1\]: 100 < x <= 1000; \[2\]: 1000 < x <= 1000; \[3\]: x > 1000.
535    #[prost(int64, repeated, packed="false", tag="17")]
536    pub chunk_payload_histogram_def: ::prost::alloc::vec::Vec<i64>,
537    #[prost(message, repeated, tag="18")]
538    pub writer_stats: ::prost::alloc::vec::Vec<trace_stats::WriterStats>,
539    /// Num. producers connected (whether they are involved in the current tracing
540    /// session or not).
541    #[prost(uint32, optional, tag="2")]
542    pub producers_connected: ::core::option::Option<u32>,
543    /// Num. producers ever seen for all trace sessions since startup (it's a good
544    /// proxy for inferring num. producers crashed / killed).
545    #[prost(uint64, optional, tag="3")]
546    pub producers_seen: ::core::option::Option<u64>,
547    /// Num. data sources registered for all trace sessions.
548    #[prost(uint32, optional, tag="4")]
549    pub data_sources_registered: ::core::option::Option<u32>,
550    /// Num. data sources ever seen for all trace sessions since startup.
551    #[prost(uint64, optional, tag="5")]
552    pub data_sources_seen: ::core::option::Option<u64>,
553    /// Num. concurrently active tracing sessions.
554    #[prost(uint32, optional, tag="6")]
555    pub tracing_sessions: ::core::option::Option<u32>,
556    /// Num. buffers for all tracing session (not just the current one). This will
557    /// be >= buffer_stats.size(), because the latter is only about the current
558    /// session.
559    #[prost(uint32, optional, tag="7")]
560    pub total_buffers: ::core::option::Option<u32>,
561    // The fields below have been introduced in Android Q.
562
563    /// Num. chunks that were discarded by the service before attempting to commit
564    /// them to a buffer, e.g. because the producer specified an invalid buffer ID.
565    #[prost(uint64, optional, tag="8")]
566    pub chunks_discarded: ::core::option::Option<u64>,
567    /// Num. patches that were discarded by the service before attempting to apply
568    /// them to a buffer, e.g. because the producer specified an invalid buffer ID.
569    #[prost(uint64, optional, tag="9")]
570    pub patches_discarded: ::core::option::Option<u64>,
571    /// Packets that failed validation of the TrustedPacket. If this is > 0, there
572    /// is a bug in the producer.
573    #[prost(uint64, optional, tag="10")]
574    pub invalid_packets: ::core::option::Option<u64>,
575    #[prost(message, optional, tag="11")]
576    pub filter_stats: ::core::option::Option<trace_stats::FilterStats>,
577    /// Count of Flush() requests (either from the Consumer, or self-induced
578    /// periodic flushes). The final Flush() is also included in the count.
579    #[prost(uint64, optional, tag="12")]
580    pub flushes_requested: ::core::option::Option<u64>,
581    /// The count of the Flush() requests that were completed successfully.
582    /// In a well behaving trace this should always be == `flush_requests`.
583    #[prost(uint64, optional, tag="13")]
584    pub flushes_succeeded: ::core::option::Option<u64>,
585    /// The count of the Flush() requests that failed (in most timed out).
586    /// In a well behaving trace this should always be == 0.
587    #[prost(uint64, optional, tag="14")]
588    pub flushes_failed: ::core::option::Option<u64>,
589    #[prost(enumeration="trace_stats::FinalFlushOutcome", optional, tag="15")]
590    pub final_flush_outcome: ::core::option::Option<i32>,
591}
592/// Nested message and enum types in `TraceStats`.
593pub mod trace_stats {
594    /// From TraceBuffer::Stats.
595    ///
596    /// Next id: 21.
597    #[derive(Clone, PartialEq, ::prost::Message)]
598    pub struct BufferStats {
599        /// Size of the circular buffer in bytes.
600        #[prost(uint64, optional, tag="12")]
601        pub buffer_size: ::core::option::Option<u64>,
602        /// Num. bytes written into the circular buffer, including chunk headers.
603        #[prost(uint64, optional, tag="1")]
604        pub bytes_written: ::core::option::Option<u64>,
605        /// Num. bytes overwritten before they have been read (i.e. loss of data).
606        #[prost(uint64, optional, tag="13")]
607        pub bytes_overwritten: ::core::option::Option<u64>,
608        /// Total size of chunks that were fully read from the circular buffer by the
609        /// consumer. This may not be equal to |bytes_written| either in the middle
610        /// of tracing, or if |chunks_overwritten| is non-zero. Note that this is the
611        /// size of the chunks read from the buffer, including chunk headers, which
612        /// will be different from the total size of packets returned to the
613        /// consumer.
614        ///
615        /// The current utilization of the trace buffer (mid-tracing) can be obtained
616        /// by subtracting |bytes_read| and |bytes_overwritten| from |bytes_written|,
617        /// adding the difference of |padding_bytes_written| and
618        /// |padding_bytes_cleared|, and comparing this sum to the |buffer_size|.
619        /// Note that this represents the total size of buffered data in the buffer,
620        /// yet this data may be spread non-contiguously through the buffer and may
621        /// be overridden before the utilization reaches 100%.
622        #[prost(uint64, optional, tag="14")]
623        pub bytes_read: ::core::option::Option<u64>,
624        /// Num. bytes that were allocated as padding between chunks in the circular
625        /// buffer.
626        #[prost(uint64, optional, tag="15")]
627        pub padding_bytes_written: ::core::option::Option<u64>,
628        /// Num. of padding bytes that were removed from the circular buffer when
629        /// they were overwritten.
630        ///
631        /// The difference between |padding_bytes_written| and
632        /// |padding_bytes_cleared| denotes the total size of padding currently
633        /// present in the buffer.
634        #[prost(uint64, optional, tag="16")]
635        pub padding_bytes_cleared: ::core::option::Option<u64>,
636        /// Num. chunks (!= packets) written into the buffer.
637        #[prost(uint64, optional, tag="2")]
638        pub chunks_written: ::core::option::Option<u64>,
639        /// Num. chunks (!= packets) rewritten into the buffer. This means we rewrote
640        /// the same chunk with additional packets appended to the end.
641        #[prost(uint64, optional, tag="10")]
642        pub chunks_rewritten: ::core::option::Option<u64>,
643        /// Num. chunks overwritten before they have been read (i.e. loss of data).
644        #[prost(uint64, optional, tag="3")]
645        pub chunks_overwritten: ::core::option::Option<u64>,
646        /// Num. chunks discarded (i.e. loss of data). Can be > 0 only when a buffer
647        /// is configured with FillPolicy == DISCARD.
648        #[prost(uint64, optional, tag="18")]
649        pub chunks_discarded: ::core::option::Option<u64>,
650        /// Num. chunks (!= packets) that were fully read from the circular buffer by
651        /// the consumer. This may not be equal to |chunks_written| either in the
652        /// middle of tracing, or if |chunks_overwritten| is non-zero.
653        #[prost(uint64, optional, tag="17")]
654        pub chunks_read: ::core::option::Option<u64>,
655        /// Num. chunks that were committed out of order.
656        #[prost(uint64, optional, tag="11")]
657        pub chunks_committed_out_of_order: ::core::option::Option<u64>,
658        /// Num. times the ring buffer wrapped around.
659        #[prost(uint64, optional, tag="4")]
660        pub write_wrap_count: ::core::option::Option<u64>,
661        /// Num. out-of-band (OOB) patches that succeeded.
662        #[prost(uint64, optional, tag="5")]
663        pub patches_succeeded: ::core::option::Option<u64>,
664        /// Num. OOB patches that failed (e.g., the chunk to patch was gone).
665        #[prost(uint64, optional, tag="6")]
666        pub patches_failed: ::core::option::Option<u64>,
667        /// Num. readaheads (for large multi-chunk packet reads) that ended up in a
668        /// successful packet read.
669        #[prost(uint64, optional, tag="7")]
670        pub readaheads_succeeded: ::core::option::Option<u64>,
671        /// Num. readaheads aborted because of missing chunks in the sequence stream.
672        /// Note that a small number > 0 is totally expected: occasionally, when
673        /// issuing a read, the very last packet in a sequence might be incomplete
674        /// (because the producer is still writing it while we read). The read will
675        /// stop at that point, for that sequence, increasing this counter.
676        #[prost(uint64, optional, tag="8")]
677        pub readaheads_failed: ::core::option::Option<u64>,
678        /// Num. of violations of the SharedMemoryABI found while writing or reading
679        /// the buffer. This is an indication of either a bug in the producer(s) or
680        /// malicious producer(s).
681        #[prost(uint64, optional, tag="9")]
682        pub abi_violations: ::core::option::Option<u64>,
683        // The fields below have been introduced in Android R.
684
685        /// Num. of times the service detected packet loss on a trace writer
686        /// sequence. This is usually caused by exhaustion of available chunks in the
687        /// writer process's SMB. Note that this relies on the client's TraceWriter
688        /// indicating this loss to the service -- packets lost for other reasons are
689        /// not reflected in this stat.
690        #[prost(uint64, optional, tag="19")]
691        pub trace_writer_packet_loss: ::core::option::Option<u64>,
692    }
693    /// Per TraceWriter stat. Each {producer, trace writer} tuple is publicly
694    /// visible as a unique sequence ID in the trace.
695    #[derive(Clone, PartialEq, ::prost::Message)]
696    pub struct WriterStats {
697        /// This matches the TracePacket.trusted_packet_sequence_id and is used to
698        /// correlate the stats with the actual packet types.
699        #[prost(uint64, optional, tag="1")]
700        pub sequence_id: ::core::option::Option<u64>,
701        /// The buffer index (0..N, as defined in the TraceConfig).
702        #[prost(uint32, optional, tag="4")]
703        pub buffer: ::core::option::Option<u32>,
704        /// These two arrays have the same cardinality and match the cardinality of
705        /// chunk_payload_histogram_def + 1 (for the overflow bucket, see below).
706        /// `sum` contains the SUM(entries) and `counts` contains the COUNT(entries)
707        /// for each bucket.
708        #[prost(uint64, repeated, tag="2")]
709        pub chunk_payload_histogram_counts: ::prost::alloc::vec::Vec<u64>,
710        #[prost(int64, repeated, tag="3")]
711        pub chunk_payload_histogram_sum: ::prost::alloc::vec::Vec<i64>,
712    }
713    /// This is set only when the TraceConfig specifies a TraceFilter.
714    #[derive(Clone, PartialEq, ::prost::Message)]
715    pub struct FilterStats {
716        #[prost(uint64, optional, tag="1")]
717        pub input_packets: ::core::option::Option<u64>,
718        #[prost(uint64, optional, tag="2")]
719        pub input_bytes: ::core::option::Option<u64>,
720        #[prost(uint64, optional, tag="3")]
721        pub output_bytes: ::core::option::Option<u64>,
722        #[prost(uint64, optional, tag="4")]
723        pub errors: ::core::option::Option<u64>,
724        #[prost(uint64, optional, tag="5")]
725        pub time_taken_ns: ::core::option::Option<u64>,
726        /// The number of bytes discarded by the filter (i.e. output - input).
727        /// The array has one entry for each buffer defined in the config (unless no
728        /// packets for that buffer were seen and hence filtered).
729        /// Note: the SUM(bytes_discarded_per_buffer) will be <= but not == the total
730        /// (output_bytes - input_bytes) because the filter might also discard
731        /// server-generated synthetic packets, that have no buffer index.
732        #[prost(uint64, repeated, packed="false", tag="20")]
733        pub bytes_discarded_per_buffer: ::prost::alloc::vec::Vec<u64>,
734    }
735    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
736    #[repr(i32)]
737    pub enum FinalFlushOutcome {
738        FinalFlushUnspecified = 0,
739        FinalFlushSucceeded = 1,
740        FinalFlushFailed = 2,
741    }
742    impl FinalFlushOutcome {
743        /// String value of the enum field names used in the ProtoBuf definition.
744        ///
745        /// The values are not transformed in any way and thus are considered stable
746        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
747        pub fn as_str_name(&self) -> &'static str {
748            match self {
749                FinalFlushOutcome::FinalFlushUnspecified => "FINAL_FLUSH_UNSPECIFIED",
750                FinalFlushOutcome::FinalFlushSucceeded => "FINAL_FLUSH_SUCCEEDED",
751                FinalFlushOutcome::FinalFlushFailed => "FINAL_FLUSH_FAILED",
752            }
753        }
754    }
755}
756#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
757#[repr(i32)]
758pub enum BuiltinClock {
759    Unknown = 0,
760    Realtime = 1,
761    RealtimeCoarse = 2,
762    Monotonic = 3,
763    MonotonicCoarse = 4,
764    MonotonicRaw = 5,
765    Boottime = 6,
766    Tsc = 9,
767    Perf = 10,
768    MaxId = 63,
769}
770impl BuiltinClock {
771    /// String value of the enum field names used in the ProtoBuf definition.
772    ///
773    /// The values are not transformed in any way and thus are considered stable
774    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
775    pub fn as_str_name(&self) -> &'static str {
776        match self {
777            BuiltinClock::Unknown => "BUILTIN_CLOCK_UNKNOWN",
778            BuiltinClock::Realtime => "BUILTIN_CLOCK_REALTIME",
779            BuiltinClock::RealtimeCoarse => "BUILTIN_CLOCK_REALTIME_COARSE",
780            BuiltinClock::Monotonic => "BUILTIN_CLOCK_MONOTONIC",
781            BuiltinClock::MonotonicCoarse => "BUILTIN_CLOCK_MONOTONIC_COARSE",
782            BuiltinClock::MonotonicRaw => "BUILTIN_CLOCK_MONOTONIC_RAW",
783            BuiltinClock::Boottime => "BUILTIN_CLOCK_BOOTTIME",
784            BuiltinClock::Tsc => "BUILTIN_CLOCK_TSC",
785            BuiltinClock::Perf => "BUILTIN_CLOCK_PERF",
786            BuiltinClock::MaxId => "BUILTIN_CLOCK_MAX_ID",
787        }
788    }
789}
790/// Data source that lists game modes and game interventions of games
791/// on an Android device.
792#[derive(Clone, PartialEq, ::prost::Message)]
793pub struct AndroidGameInterventionListConfig {
794    /// If not empty, emit info about only the following list of package names
795    /// (exact match, no regex). Otherwise, emit info about all packages.
796    #[prost(string, repeated, tag="1")]
797    pub package_name_filter: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
798}
799/// Custom configuration for the "android.input.inputevent" data source.
800///
801/// NOTE: Input traces can only be taken on debuggable (userdebug/eng) builds!
802///
803/// Next ID: 5
804#[derive(Clone, PartialEq, ::prost::Message)]
805pub struct AndroidInputEventConfig {
806    /// The tracing mode to use. If unspecified, it will default to
807    /// TRACE_MODE_USE_RULES.
808    #[prost(enumeration="android_input_event_config::TraceMode", optional, tag="1")]
809    pub mode: ::core::option::Option<i32>,
810    /// The list of rules to use to determine the trace level of events.
811    /// Each event will be traced using the TraceLevel of the first rule that it
812    /// triggers from this list. The rules are evaluated in the order in which they
813    /// are specified. If an event does not match any of the rules,
814    /// TRACE_LEVEL_NONE will be used by default.
815    #[prost(message, repeated, tag="2")]
816    pub rules: ::prost::alloc::vec::Vec<android_input_event_config::TraceRule>,
817    // --- Control flags ---
818
819    /// Trace input events processed by the system as they are being dispatched
820    /// to application windows. All trace rules will apply.
821    ///    - If this flag is used without enabling trace_dispatcher_window_dispatch,
822    ///    it will
823    ///      trace InputDispatcher's inbound events (which does not include events
824    ///      synthesized within InputDispatcher) that match the rules.
825    ///    - If used with trace_dispatcher_window_dispatch, all inbound and outbound
826    ///    events
827    ///      matching the rules, including all events synthesized within
828    ///      InputDispatcher, will be traced.
829    #[prost(bool, optional, tag="3")]
830    pub trace_dispatcher_input_events: ::core::option::Option<bool>,
831    /// Trace details about which windows the system is sending each input event
832    /// to. All trace rules will apply.
833    #[prost(bool, optional, tag="4")]
834    pub trace_dispatcher_window_dispatch: ::core::option::Option<bool>,
835}
836/// Nested message and enum types in `AndroidInputEventConfig`.
837pub mod android_input_event_config {
838    /// A rule that specifies the TraceLevel for an event based on matching
839    /// conditions. All matchers in the rule are optional. To trigger this rule, an
840    /// event must match all of its specified matchers (i.e. the matchers function
841    /// like a series of conditions connected by a logical 'AND' operator). A rule
842    /// with no specified matchers will match all events. Next ID: 6
843    #[derive(Clone, PartialEq, ::prost::Message)]
844    pub struct TraceRule {
845        /// The trace level to be used for events that trigger this rule.
846        /// If unspecified, TRACE_LEVEL_NONE will be used by default.
847        #[prost(enumeration="TraceLevel", optional, tag="1")]
848        pub trace_level: ::core::option::Option<i32>,
849        // --- Optional Matchers ---
850
851        /// Package matchers
852        ///
853        /// Respectively matches if all or any of the target apps for this event are
854        /// contained in the specified list of package names.
855        ///
856        /// Intended usage:
857        ///    - Use match_all_packages to selectively allow tracing for the listed
858        ///    packages.
859        ///    - Use match_any_packages to selectively deny tracing for certain
860        ///    packages.
861        ///
862        /// WARNING: Great care must be taken when designing rules for field tracing!
863        ///           This is because each event is almost always sent to more than
864        ///           one app.
865        ///               For example, when allowing tracing for a package that has a
866        ///               spy window
867        ///           over the display (e.g. SystemUI) using match_any_packages,
868        ///           essentially all input will be recorded on that display. This is
869        ///           because the events will be sent to the spy as well as the
870        ///           foreground app, and regardless of what the foreground app is,
871        ///           the event will end up being traced.
872        ///               Alternatively, when attempting to block tracing for specific
873        ///               packages using
874        ///           match_all_packages, no events will likely be blocked. This is
875        ///           because the event will also be sent to other apps (such as, but
876        ///           not limited to, ones with spy windows), so the matcher will not
877        ///           match unless all other targets are also listed under the
878        ///           match_all_packages list.
879        #[prost(string, repeated, tag="2")]
880        pub match_all_packages: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
881        #[prost(string, repeated, tag="3")]
882        pub match_any_packages: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
883        /// Matches if the event is secure, which means that at least one of the
884        /// targets of this event is using the window flag FLAG_SECURE.
885        #[prost(bool, optional, tag="4")]
886        pub match_secure: ::core::option::Option<bool>,
887        /// Matches if there was an active IME connection while this event was being
888        /// processed.
889        #[prost(bool, optional, tag="5")]
890        pub match_ime_connection_active: ::core::option::Option<bool>,
891    }
892    /// Trace modes are tracing presets that are included in the system.
893    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
894    #[repr(i32)]
895    pub enum TraceMode {
896        /// Preset mode for maximal tracing.
897        /// WARNING: This will bypass all privacy measures on debuggable builds, and
898        /// will record all
899        ///           input events processed by the system, regardless of the context
900        ///           in which they were processed. It should only be used for tracing
901        ///           on a local device or for tests. It should NEVER be used for
902        ///           field tracing.
903        TraceAll = 0,
904        /// Use the tracing rules defined in this config to specify what events to
905        /// trace.
906        UseRules = 1,
907    }
908    impl TraceMode {
909        /// String value of the enum field names used in the ProtoBuf definition.
910        ///
911        /// The values are not transformed in any way and thus are considered stable
912        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
913        pub fn as_str_name(&self) -> &'static str {
914            match self {
915                TraceMode::TraceAll => "TRACE_MODE_TRACE_ALL",
916                TraceMode::UseRules => "TRACE_MODE_USE_RULES",
917            }
918        }
919    }
920    /// The level of tracing that should be applied to an event.
921    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
922    #[repr(i32)]
923    pub enum TraceLevel {
924        /// Do not trace the input event.
925        None = 0,
926        /// Trace the event as a redacted event, where certain sensitive fields are
927        /// omitted from the trace, including the coordinates of pointer events and
928        /// the key/scan codes of key events.
929        Redacted = 1,
930        /// Trace the complete event.
931        Complete = 2,
932    }
933    impl TraceLevel {
934        /// String value of the enum field names used in the ProtoBuf definition.
935        ///
936        /// The values are not transformed in any way and thus are considered stable
937        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
938        pub fn as_str_name(&self) -> &'static str {
939            match self {
940                TraceLevel::None => "TRACE_LEVEL_NONE",
941                TraceLevel::Redacted => "TRACE_LEVEL_REDACTED",
942                TraceLevel::Complete => "TRACE_LEVEL_COMPLETE",
943            }
944        }
945    }
946}
947/// Values from NDK's android/log.h.
948#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
949#[repr(i32)]
950pub enum AndroidLogId {
951    /// MAIN.
952    LidDefault = 0,
953    LidRadio = 1,
954    LidEvents = 2,
955    LidSystem = 3,
956    LidCrash = 4,
957    LidStats = 5,
958    LidSecurity = 6,
959    LidKernel = 7,
960}
961impl AndroidLogId {
962    /// String value of the enum field names used in the ProtoBuf definition.
963    ///
964    /// The values are not transformed in any way and thus are considered stable
965    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
966    pub fn as_str_name(&self) -> &'static str {
967        match self {
968            AndroidLogId::LidDefault => "LID_DEFAULT",
969            AndroidLogId::LidRadio => "LID_RADIO",
970            AndroidLogId::LidEvents => "LID_EVENTS",
971            AndroidLogId::LidSystem => "LID_SYSTEM",
972            AndroidLogId::LidCrash => "LID_CRASH",
973            AndroidLogId::LidStats => "LID_STATS",
974            AndroidLogId::LidSecurity => "LID_SECURITY",
975            AndroidLogId::LidKernel => "LID_KERNEL",
976        }
977    }
978}
979#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
980#[repr(i32)]
981pub enum AndroidLogPriority {
982    PrioUnspecified = 0,
983    /// _DEFAULT, but should never be seen in logs.
984    PrioUnused = 1,
985    PrioVerbose = 2,
986    PrioDebug = 3,
987    PrioInfo = 4,
988    PrioWarn = 5,
989    PrioError = 6,
990    PrioFatal = 7,
991}
992impl AndroidLogPriority {
993    /// String value of the enum field names used in the ProtoBuf definition.
994    ///
995    /// The values are not transformed in any way and thus are considered stable
996    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
997    pub fn as_str_name(&self) -> &'static str {
998        match self {
999            AndroidLogPriority::PrioUnspecified => "PRIO_UNSPECIFIED",
1000            AndroidLogPriority::PrioUnused => "PRIO_UNUSED",
1001            AndroidLogPriority::PrioVerbose => "PRIO_VERBOSE",
1002            AndroidLogPriority::PrioDebug => "PRIO_DEBUG",
1003            AndroidLogPriority::PrioInfo => "PRIO_INFO",
1004            AndroidLogPriority::PrioWarn => "PRIO_WARN",
1005            AndroidLogPriority::PrioError => "PRIO_ERROR",
1006            AndroidLogPriority::PrioFatal => "PRIO_FATAL",
1007        }
1008    }
1009}
1010#[derive(Clone, PartialEq, ::prost::Message)]
1011pub struct AndroidLogConfig {
1012    #[prost(enumeration="AndroidLogId", repeated, packed="false", tag="1")]
1013    pub log_ids: ::prost::alloc::vec::Vec<i32>,
1014    /// If set ignores all log messages whose prio is < the given value.
1015    #[prost(enumeration="AndroidLogPriority", optional, tag="3")]
1016    pub min_prio: ::core::option::Option<i32>,
1017    /// If non-empty ignores all log messages whose tag doesn't match one of the
1018    /// specified values.
1019    #[prost(string, repeated, tag="4")]
1020    pub filter_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1021}
1022/// Data source that polls for display state. This should only be used for
1023/// backward-compatibility; AndroidSystemPropertyConfig should be preferred.
1024#[derive(Clone, PartialEq, ::prost::Message)]
1025pub struct AndroidPolledStateConfig {
1026    /// Frequency of polling. If absent the state will be recorded once, at the
1027    /// start of the trace.
1028    /// This is required to be > 100ms to avoid excessive CPU usage.
1029    #[prost(uint32, optional, tag="1")]
1030    pub poll_ms: ::core::option::Option<u32>,
1031}
1032/// Data source that polls for system properties.
1033#[derive(Clone, PartialEq, ::prost::Message)]
1034pub struct AndroidSystemPropertyConfig {
1035    /// Frequency of polling. If absent the state will be recorded once, at the
1036    /// start of the trace.
1037    /// This is required to be > 100ms to avoid excessive CPU usage.
1038    #[prost(uint32, optional, tag="1")]
1039    pub poll_ms: ::core::option::Option<u32>,
1040    /// Properties to poll. All property names must start with "debug.tracing.".
1041    #[prost(string, repeated, tag="2")]
1042    pub property_name: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1043}
1044/// Data source that controls the system properties used to guard initialization
1045/// of track_event producers (i.e. Skia) in apps using HWUI, and certain
1046/// processes like SurfaceFlinger.
1047///
1048/// This data source only tells Skia to initialized the Perfetto SDK and start
1049/// routing data to the Track Event system instead of ATrace. For those events
1050/// to actually show up in a trace, the track_event data source must be used as
1051/// well. The Perfetto SDK cannot be de-initialized, so some long-lived apps and
1052/// processes may need to be restarted for Skia to revert to using ATrace if
1053/// Track Events are no longer desired.
1054///
1055/// In addition to switching Skia to use Perfetto's track_event data source,
1056/// this "guard" also controls Skia's "broad tracing", which removes Skia's
1057/// internal tracing constraints and allows the track_event config to specify
1058/// which categories should be traced. Filtering to the "skia.always" category
1059/// *tag* in a track_event config can be used to re-enable the standard
1060/// constraints typically used with ATrace.
1061///
1062/// Data source name: android.sdk_sysprop_guard
1063/// Introduced in Android 14 (U) QPR1.
1064/// Next id: 4
1065#[derive(Clone, PartialEq, ::prost::Message)]
1066pub struct AndroidSdkSyspropGuardConfig {
1067    /// If true, configures SurfaceFlinger to initialize Skia's Perfetto
1068    /// integration with the track_event data source in RenderEngine.
1069    /// If false or omitted, the simpler ATrace fallback is used.
1070    ///
1071    /// NOTE: once enabled, Skia will only revert to ATrace if SurfaceFlinger is
1072    /// restarted.
1073    ///
1074    /// Specifically this sets the following system properties:
1075    ///    - debug.tracing.ctl.renderengine.skia_tracing_enabled
1076    ///    - debug.tracing.ctl.renderengine.skia_use_perfetto_track_events
1077    ///
1078    /// Does not affect actual track_event data *collection*, which must be
1079    /// configured separately.
1080    #[prost(bool, optional, tag="1")]
1081    pub surfaceflinger_skia_track_events: ::core::option::Option<bool>,
1082    /// If true, configures HWUI apps to initialize Skia's Perfetto integration
1083    /// with the track_event data source. hwui_package_name_filter
1084    /// can be used to control which apps are affected.
1085    /// If false or omitted, the simpler ATrace fallback is used.
1086    ///
1087    /// NOTE: once enabled, Skia will only revert to ATrace if the app is
1088    /// restarted.
1089    ///
1090    /// ATTENTION: affects ALL HWUI APPS if hwui_package_name_filter is not set!
1091    /// If filtering is NOT set, this controls these GLOBAL system properties:
1092    ///    - debug.tracing.ctl.hwui.skia_tracing_enabled
1093    ///    - debug.tracing.ctl.hwui.skia_use_perfetto_track_events
1094    /// If filtering IS set, this controls these APP-SPECIFIC system properties,
1095    /// for each package listed in the filter:
1096    ///    - debug.tracing.ctl.hwui.skia_tracing_enabled.<package.name>
1097    ///    - debug.tracing.ctl.hwui.skia_use_perfetto_track_events.<package.name>
1098    ///
1099    /// Does not affect actual track_event data *collection*, which must be
1100    /// configured separately.
1101    #[prost(bool, optional, tag="2")]
1102    pub hwui_skia_track_events: ::core::option::Option<bool>,
1103    /// If non-empty, hwui_skia_track_events applies to only the packages listed.
1104    /// Otherwise, hwui_skia_track_events applies globally to all HWUI apps.
1105    #[prost(string, repeated, tag="3")]
1106    pub hwui_package_name_filter: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1107}
1108/// Configuration for the android.app_wakelocks data source.
1109#[derive(Clone, PartialEq, ::prost::Message)]
1110pub struct AppWakelocksConfig {
1111    /// Specifies the delay (in milliseconds) after which the data source will
1112    /// attempt to write events. Writing less frequently reduces the trace size by
1113    /// making better use of the packed arrays and reducing the total number of
1114    /// TracePackets needed (which each have dozens of bytes of overhead). The
1115    /// suggested delay is 5000ms.
1116    #[prost(int32, optional, tag="1")]
1117    pub write_delay_ms: ::core::option::Option<i32>,
1118    /// When set, wakelocks held for less than this amount of time are filtered
1119    /// from the resulting trace. Note: duration is computed by matching wakelocks
1120    /// with identical attributes, not by tracking the underlying objects. The
1121    /// threshold should be < the trace's flush_period_ms.
1122    #[prost(int32, optional, tag="2")]
1123    pub filter_duration_below_ms: ::core::option::Option<i32>,
1124    /// When true, the owner_pid is dropped from the resulting output, reducing the
1125    /// size of the interning tables.
1126    #[prost(bool, optional, tag="3")]
1127    pub drop_owner_pid: ::core::option::Option<bool>,
1128}
1129/// Data source that records kernel (and native) wakelock data.
1130#[derive(Clone, PartialEq, ::prost::Message)]
1131pub struct KernelWakelocksConfig {
1132    /// Record at this frequency.
1133    #[prost(uint32, optional, tag="1")]
1134    pub poll_ms: ::core::option::Option<u32>,
1135}
1136/// Network tracing data source that records details on all packets sent or
1137/// received by the network.
1138#[derive(Clone, PartialEq, ::prost::Message)]
1139pub struct NetworkPacketTraceConfig {
1140    /// Polling frequency in milliseconds. Network tracing writes to a fixed size
1141    /// ring buffer. The polling interval should be such that the ring buffer is
1142    /// unlikely to fill in that interval (or that filling is an acceptable risk).
1143    /// The minimum polling rate is 100ms (values below this are ignored).
1144    /// Introduced in Android 14 (U).
1145    #[prost(uint32, optional, tag="1")]
1146    pub poll_ms: ::core::option::Option<u32>,
1147    /// The aggregation_threshold is the number of packets at which an event will
1148    /// switch from per-packet details to aggregate details. For example, a value
1149    /// of 50 means that if a particular event (grouped by the unique combinations
1150    /// of metadata fields: {interface, direction, uid, etc}) has fewer than 50
1151    /// packets, the exact timestamp and length are recorded for each packet. If
1152    /// there were 50 or more packets in an event, it would only record the total
1153    /// duration, packets, and length. A value of zero or unspecified will always
1154    /// / record per-packet details. A value of 1 always records aggregate details.
1155    #[prost(uint32, optional, tag="2")]
1156    pub aggregation_threshold: ::core::option::Option<u32>,
1157    /// Specifies the maximum number of packet contexts to intern at a time. This
1158    /// prevents the interning table from growing too large and controls whether
1159    /// interning is enabled or disabled (a value of zero disables interning and
1160    /// is the default). When a data sources interning table reaches this amount,
1161    /// packet contexts will be inlined into NetworkPacketEvents.
1162    #[prost(uint32, optional, tag="3")]
1163    pub intern_limit: ::core::option::Option<u32>,
1164    /// The following fields specify whether certain fields should be dropped from
1165    /// the output. Dropping fields improves normalization results, reduces the
1166    /// size of the interning table, and slightly reduces event size.
1167    #[prost(bool, optional, tag="4")]
1168    pub drop_local_port: ::core::option::Option<bool>,
1169    #[prost(bool, optional, tag="5")]
1170    pub drop_remote_port: ::core::option::Option<bool>,
1171    #[prost(bool, optional, tag="6")]
1172    pub drop_tcp_flags: ::core::option::Option<bool>,
1173}
1174/// Data source that lists details (such as version code) about packages on an
1175/// Android device.
1176#[derive(Clone, PartialEq, ::prost::Message)]
1177pub struct PackagesListConfig {
1178    /// If not empty, emit info about only the following list of package names
1179    /// (exact match, no regex). Otherwise, emit info about all packages.
1180    #[prost(string, repeated, tag="1")]
1181    pub package_name_filter: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1182}
1183/// Data source that records events from the modem.
1184#[derive(Clone, PartialEq, ::prost::Message)]
1185pub struct PixelModemConfig {
1186    #[prost(enumeration="pixel_modem_config::EventGroup", optional, tag="1")]
1187    pub event_group: ::core::option::Option<i32>,
1188    /// If set, record only events with these hashes.
1189    #[prost(int64, repeated, packed="false", tag="2")]
1190    pub pigweed_hash_allow_list: ::prost::alloc::vec::Vec<i64>,
1191    /// If set and allow_list is not set, deny events with these hashes.
1192    #[prost(int64, repeated, packed="false", tag="3")]
1193    pub pigweed_hash_deny_list: ::prost::alloc::vec::Vec<i64>,
1194}
1195/// Nested message and enum types in `PixelModemConfig`.
1196pub mod pixel_modem_config {
1197    /// Event group to record, as defined by the modem.
1198    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1199    #[repr(i32)]
1200    pub enum EventGroup {
1201        Unknown = 0,
1202        /// Events suitable for low bandwidth tracing only.
1203        LowBandwidth = 1,
1204        /// Events suitable for high and low bandwidth tracing.
1205        HighAndLowBandwidth = 2,
1206    }
1207    impl EventGroup {
1208        /// String value of the enum field names used in the ProtoBuf definition.
1209        ///
1210        /// The values are not transformed in any way and thus are considered stable
1211        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1212        pub fn as_str_name(&self) -> &'static str {
1213            match self {
1214                EventGroup::Unknown => "EVENT_GROUP_UNKNOWN",
1215                EventGroup::LowBandwidth => "EVENT_GROUP_LOW_BANDWIDTH",
1216                EventGroup::HighAndLowBandwidth => "EVENT_GROUP_HIGH_AND_LOW_BANDWIDTH",
1217            }
1218        }
1219    }
1220}
1221#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1222#[repr(i32)]
1223pub enum ProtoLogLevel {
1224    ProtologLevelUndefined = 0,
1225    ProtologLevelDebug = 1,
1226    ProtologLevelVerbose = 2,
1227    ProtologLevelInfo = 3,
1228    ProtologLevelWarn = 4,
1229    ProtologLevelError = 5,
1230    ProtologLevelWtf = 6,
1231}
1232impl ProtoLogLevel {
1233    /// String value of the enum field names used in the ProtoBuf definition.
1234    ///
1235    /// The values are not transformed in any way and thus are considered stable
1236    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1237    pub fn as_str_name(&self) -> &'static str {
1238        match self {
1239            ProtoLogLevel::ProtologLevelUndefined => "PROTOLOG_LEVEL_UNDEFINED",
1240            ProtoLogLevel::ProtologLevelDebug => "PROTOLOG_LEVEL_DEBUG",
1241            ProtoLogLevel::ProtologLevelVerbose => "PROTOLOG_LEVEL_VERBOSE",
1242            ProtoLogLevel::ProtologLevelInfo => "PROTOLOG_LEVEL_INFO",
1243            ProtoLogLevel::ProtologLevelWarn => "PROTOLOG_LEVEL_WARN",
1244            ProtoLogLevel::ProtologLevelError => "PROTOLOG_LEVEL_ERROR",
1245            ProtoLogLevel::ProtologLevelWtf => "PROTOLOG_LEVEL_WTF",
1246        }
1247    }
1248}
1249/// Custom configuration for the "android.protolog" data source.
1250/// ProtoLog is a logging mechanism that is intented to be more efficient than
1251/// logcat. This configures what logs to capture in the tracing instance.
1252#[derive(Clone, PartialEq, ::prost::Message)]
1253pub struct ProtoLogConfig {
1254    /// Specified the configurations for each of the logging groups. If none is
1255    /// specified for a group the defaults will be used.
1256    #[prost(message, repeated, tag="1")]
1257    pub group_overrides: ::prost::alloc::vec::Vec<ProtoLogGroup>,
1258    /// Specified what tracing mode to use for the tracing instance.
1259    #[prost(enumeration="proto_log_config::TracingMode", optional, tag="2")]
1260    pub tracing_mode: ::core::option::Option<i32>,
1261    /// If set, any message with log level higher than this level (inclusive) will
1262    /// be traced. Group overrides take precedence over this value.
1263    #[prost(enumeration="ProtoLogLevel", optional, tag="3")]
1264    pub default_log_from_level: ::core::option::Option<i32>,
1265}
1266/// Nested message and enum types in `ProtoLogConfig`.
1267pub mod proto_log_config {
1268    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1269    #[repr(i32)]
1270    pub enum TracingMode {
1271        /// When using the DEFAULT tracing mode, only log groups and levels specified
1272        /// in the group_overrides are traced.
1273        Default = 0,
1274        /// When using the ENABLE_ALL tracing mode, all log groups and levels are
1275        /// traced, unless specified in the group_overrides.
1276        EnableAll = 1,
1277    }
1278    impl TracingMode {
1279        /// String value of the enum field names used in the ProtoBuf definition.
1280        ///
1281        /// The values are not transformed in any way and thus are considered stable
1282        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1283        pub fn as_str_name(&self) -> &'static str {
1284            match self {
1285                TracingMode::Default => "DEFAULT",
1286                TracingMode::EnableAll => "ENABLE_ALL",
1287            }
1288        }
1289    }
1290}
1291#[derive(Clone, PartialEq, ::prost::Message)]
1292pub struct ProtoLogGroup {
1293    /// The ProtoLog group name this configuration entry applies to.
1294    #[prost(string, optional, tag="1")]
1295    pub group_name: ::core::option::Option<::prost::alloc::string::String>,
1296    /// Specify the level from which to start capturing protologs.
1297    /// e.g. if ProtoLogLevel.WARN is specified only warning, errors and fatal log
1298    /// message will be traced.
1299    #[prost(enumeration="ProtoLogLevel", optional, tag="2")]
1300    pub log_from: ::core::option::Option<i32>,
1301    /// When set to true we will collect the stacktrace for each protolog message
1302    /// in this group that we are tracing.
1303    #[prost(bool, optional, tag="3")]
1304    pub collect_stacktrace: ::core::option::Option<bool>,
1305}
1306/// Custom configuration for the "android.surfaceflinger.layers" data source.
1307#[derive(Clone, PartialEq, ::prost::Message)]
1308pub struct SurfaceFlingerLayersConfig {
1309    #[prost(enumeration="surface_flinger_layers_config::Mode", optional, tag="1")]
1310    pub mode: ::core::option::Option<i32>,
1311    #[prost(enumeration="surface_flinger_layers_config::TraceFlag", repeated, packed="false", tag="2")]
1312    pub trace_flags: ::prost::alloc::vec::Vec<i32>,
1313}
1314/// Nested message and enum types in `SurfaceFlingerLayersConfig`.
1315pub mod surface_flinger_layers_config {
1316    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1317    #[repr(i32)]
1318    pub enum Mode {
1319        Unspecified = 0,
1320        /// Trace layers snapshots. A snapshot is taken every time a layers change
1321        /// occurs.
1322        Active = 1,
1323        /// Generate layers snapshots from the transactions kept in the
1324        /// SurfaceFlinger's internal ring buffer.
1325        /// The layers snapshots generation occurs when this data source is flushed.
1326        Generated = 2,
1327        /// Trace a single layers snapshot.
1328        Dump = 3,
1329        /// Default mode (applied by SurfaceFlinger if no mode is specified).
1330        /// Same as MODE_GENERATED, but triggers the layers snapshots generation only when a bugreport
1331        /// is taken.
1332        GeneratedBugreportOnly = 4,
1333    }
1334    impl Mode {
1335        /// String value of the enum field names used in the ProtoBuf definition.
1336        ///
1337        /// The values are not transformed in any way and thus are considered stable
1338        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1339        pub fn as_str_name(&self) -> &'static str {
1340            match self {
1341                Mode::Unspecified => "MODE_UNSPECIFIED",
1342                Mode::Active => "MODE_ACTIVE",
1343                Mode::Generated => "MODE_GENERATED",
1344                Mode::Dump => "MODE_DUMP",
1345                Mode::GeneratedBugreportOnly => "MODE_GENERATED_BUGREPORT_ONLY",
1346            }
1347        }
1348    }
1349    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1350    #[repr(i32)]
1351    pub enum TraceFlag {
1352        Unspecified = 0,
1353        Input = 2,
1354        Composition = 4,
1355        Extra = 8,
1356        Hwc = 16,
1357        Buffers = 32,
1358        VirtualDisplays = 64,
1359        /// INPUT | COMPOSITION | EXTRA
1360        All = 14,
1361    }
1362    impl TraceFlag {
1363        /// String value of the enum field names used in the ProtoBuf definition.
1364        ///
1365        /// The values are not transformed in any way and thus are considered stable
1366        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1367        pub fn as_str_name(&self) -> &'static str {
1368            match self {
1369                TraceFlag::Unspecified => "TRACE_FLAG_UNSPECIFIED",
1370                TraceFlag::Input => "TRACE_FLAG_INPUT",
1371                TraceFlag::Composition => "TRACE_FLAG_COMPOSITION",
1372                TraceFlag::Extra => "TRACE_FLAG_EXTRA",
1373                TraceFlag::Hwc => "TRACE_FLAG_HWC",
1374                TraceFlag::Buffers => "TRACE_FLAG_BUFFERS",
1375                TraceFlag::VirtualDisplays => "TRACE_FLAG_VIRTUAL_DISPLAYS",
1376                TraceFlag::All => "TRACE_FLAG_ALL",
1377            }
1378        }
1379    }
1380}
1381/// Custom configuration for the "android.surfaceflinger.transactions" data
1382/// source.
1383#[derive(Clone, PartialEq, ::prost::Message)]
1384pub struct SurfaceFlingerTransactionsConfig {
1385    #[prost(enumeration="surface_flinger_transactions_config::Mode", optional, tag="1")]
1386    pub mode: ::core::option::Option<i32>,
1387}
1388/// Nested message and enum types in `SurfaceFlingerTransactionsConfig`.
1389pub mod surface_flinger_transactions_config {
1390    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1391    #[repr(i32)]
1392    pub enum Mode {
1393        Unspecified = 0,
1394        /// Default mode (applied by SurfaceFlinger if no mode is specified).
1395        /// SurfaceFlinger writes its internal ring buffer of transactions every time
1396        /// the data source is flushed. The ring buffer contains the SurfaceFlinger's
1397        /// initial state and the latest transactions.
1398        Continuous = 1,
1399        /// SurfaceFlinger writes the initial state and then each incoming
1400        /// transaction until the data source is stopped.
1401        Active = 2,
1402    }
1403    impl Mode {
1404        /// String value of the enum field names used in the ProtoBuf definition.
1405        ///
1406        /// The values are not transformed in any way and thus are considered stable
1407        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1408        pub fn as_str_name(&self) -> &'static str {
1409            match self {
1410                Mode::Unspecified => "MODE_UNSPECIFIED",
1411                Mode::Continuous => "MODE_CONTINUOUS",
1412                Mode::Active => "MODE_ACTIVE",
1413            }
1414        }
1415    }
1416}
1417/// Custom configuration for the "android.windowmanager" data source.
1418#[derive(Clone, PartialEq, ::prost::Message)]
1419pub struct WindowManagerConfig {
1420    #[prost(enumeration="window_manager_config::LogFrequency", optional, tag="1")]
1421    pub log_frequency: ::core::option::Option<i32>,
1422    #[prost(enumeration="window_manager_config::LogLevel", optional, tag="2")]
1423    pub log_level: ::core::option::Option<i32>,
1424}
1425/// Nested message and enum types in `WindowManagerConfig`.
1426pub mod window_manager_config {
1427    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1428    #[repr(i32)]
1429    pub enum LogFrequency {
1430        Unspecified = 0,
1431        /// Trace state snapshots when a frame is committed.
1432        Frame = 1,
1433        /// Trace state snapshots every time a transaction is committed.
1434        Transaction = 2,
1435        /// Trace single state snapshots when the data source is started.
1436        SingleDump = 3,
1437    }
1438    impl LogFrequency {
1439        /// String value of the enum field names used in the ProtoBuf definition.
1440        ///
1441        /// The values are not transformed in any way and thus are considered stable
1442        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1443        pub fn as_str_name(&self) -> &'static str {
1444            match self {
1445                LogFrequency::Unspecified => "LOG_FREQUENCY_UNSPECIFIED",
1446                LogFrequency::Frame => "LOG_FREQUENCY_FRAME",
1447                LogFrequency::Transaction => "LOG_FREQUENCY_TRANSACTION",
1448                LogFrequency::SingleDump => "LOG_FREQUENCY_SINGLE_DUMP",
1449            }
1450        }
1451    }
1452    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1453    #[repr(i32)]
1454    pub enum LogLevel {
1455        Unspecified = 0,
1456        /// Logs all elements with maximum amount of information.
1457        Verbose = 1,
1458        /// Logs all elements but doesn't write all configuration data.
1459        Debug = 2,
1460        /// Logs only visible elements, with the minimum amount of performance
1461        /// overhead
1462        Critical = 3,
1463    }
1464    impl LogLevel {
1465        /// String value of the enum field names used in the ProtoBuf definition.
1466        ///
1467        /// The values are not transformed in any way and thus are considered stable
1468        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1469        pub fn as_str_name(&self) -> &'static str {
1470            match self {
1471                LogLevel::Unspecified => "LOG_LEVEL_UNSPECIFIED",
1472                LogLevel::Verbose => "LOG_LEVEL_VERBOSE",
1473                LogLevel::Debug => "LOG_LEVEL_DEBUG",
1474                LogLevel::Critical => "LOG_LEVEL_CRITICAL",
1475            }
1476        }
1477    }
1478}
1479#[derive(Clone, PartialEq, ::prost::Message)]
1480pub struct ChromeConfig {
1481    #[prost(string, optional, tag="1")]
1482    pub trace_config: ::core::option::Option<::prost::alloc::string::String>,
1483    /// When enabled, the data source should only fill in fields in the output that
1484    /// are not potentially privacy sensitive.
1485    #[prost(bool, optional, tag="2")]
1486    pub privacy_filtering_enabled: ::core::option::Option<bool>,
1487    /// Instead of emitting binary protobuf, convert the trace data to the legacy
1488    /// JSON format. Note that the trace data will still be returned as a series of
1489    /// TracePackets, but the embedded data will be JSON instead of serialized
1490    /// protobuf.
1491    #[prost(bool, optional, tag="3")]
1492    pub convert_to_legacy_json: ::core::option::Option<bool>,
1493    #[prost(enumeration="chrome_config::ClientPriority", optional, tag="4")]
1494    pub client_priority: ::core::option::Option<i32>,
1495    /// Applicable only when using legacy JSON format.
1496    /// If |json_agent_label_filter| is not empty, only data pertaining to
1497    /// the specified tracing agent label (e.g. "traceEvents") will be returned.
1498    #[prost(string, optional, tag="5")]
1499    pub json_agent_label_filter: ::core::option::Option<::prost::alloc::string::String>,
1500}
1501/// Nested message and enum types in `ChromeConfig`.
1502pub mod chrome_config {
1503    /// Priority of the tracing session client. A higher priority session may
1504    /// preempt a lower priority one in configurations where concurrent sessions
1505    /// aren't supported.
1506    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1507    #[repr(i32)]
1508    pub enum ClientPriority {
1509        Unknown = 0,
1510        Background = 1,
1511        UserInitiated = 2,
1512    }
1513    impl ClientPriority {
1514        /// String value of the enum field names used in the ProtoBuf definition.
1515        ///
1516        /// The values are not transformed in any way and thus are considered stable
1517        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1518        pub fn as_str_name(&self) -> &'static str {
1519            match self {
1520                ClientPriority::Unknown => "UNKNOWN",
1521                ClientPriority::Background => "BACKGROUND",
1522                ClientPriority::UserInitiated => "USER_INITIATED",
1523            }
1524        }
1525    }
1526}
1527#[derive(Clone, PartialEq, ::prost::Message)]
1528pub struct V8Config {
1529    /// Whether to log the actual content of scripts (e.g. content of the JS file
1530    /// that was compiled to generate code).
1531    /// ATTENTION: This could considerably increase the size of the resuling trace
1532    ///             file.
1533    #[prost(bool, optional, tag="1")]
1534    pub log_script_sources: ::core::option::Option<bool>,
1535    /// Whether to log the generated code for jitted functions (machine code or
1536    /// bytecode).
1537    /// ATTENTION: This could considerably increase the size of the resuling trace
1538    ///             file.
1539    #[prost(bool, optional, tag="2")]
1540    pub log_instructions: ::core::option::Option<bool>,
1541}
1542/// Proto definition based on the struct _EVENT_TRACE_PROPERTIES definition
1543/// See: <https://learn.microsoft.com/en-us/windows/win32/api/evntrace/>
1544/// ns-evntrace-event_trace_properties
1545#[derive(Clone, PartialEq, ::prost::Message)]
1546pub struct EtwConfig {
1547    /// The kernel_flags determines the flags that will be used by the etw tracing
1548    /// session. These kernel flags have been built to expose the useful events
1549    /// captured from the kernel mode only.
1550    #[prost(enumeration="etw_config::KernelFlag", repeated, packed="false", tag="1")]
1551    pub kernel_flags: ::prost::alloc::vec::Vec<i32>,
1552}
1553/// Nested message and enum types in `EtwConfig`.
1554pub mod etw_config {
1555    /// The KernelFlag represent list of kernel flags that we are intrested in.
1556    /// To get a more extensive list run 'xperf -providers k'.
1557    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1558    #[repr(i32)]
1559    pub enum KernelFlag {
1560        Cswitch = 0,
1561        Dispatcher = 1,
1562    }
1563    impl KernelFlag {
1564        /// String value of the enum field names used in the ProtoBuf definition.
1565        ///
1566        /// The values are not transformed in any way and thus are considered stable
1567        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1568        pub fn as_str_name(&self) -> &'static str {
1569            match self {
1570                KernelFlag::Cswitch => "CSWITCH",
1571                KernelFlag::Dispatcher => "DISPATCHER",
1572            }
1573        }
1574    }
1575}
1576#[derive(Clone, PartialEq, ::prost::Message)]
1577pub struct ChromiumSystemMetricsConfig {
1578    /// Samples counters every X ms.
1579    #[prost(uint32, optional, tag="1")]
1580    pub sampling_interval_ms: ::core::option::Option<u32>,
1581}
1582/// Next id: 31
1583#[derive(Clone, PartialEq, ::prost::Message)]
1584pub struct FtraceConfig {
1585    /// Ftrace events to record, example: "sched/sched_switch".
1586    #[prost(string, repeated, tag="1")]
1587    pub ftrace_events: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1588    /// Ftrace events to record, specific for kprobes and kretprobes
1589    #[prost(message, repeated, tag="30")]
1590    pub kprobe_events: ::prost::alloc::vec::Vec<ftrace_config::KprobeEvent>,
1591    /// Android-specific event categories:
1592    #[prost(string, repeated, tag="2")]
1593    pub atrace_categories: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1594    #[prost(string, repeated, tag="3")]
1595    pub atrace_apps: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1596    /// Some processes can emit data through atrace or through the perfetto SDK via
1597    /// the "track_event" data source. For these categories, the SDK will be
1598    /// preferred, if possible, for this config.
1599    #[prost(string, repeated, tag="28")]
1600    pub atrace_categories_prefer_sdk: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1601    /// Size of each per-cpu kernel ftrace ring buffer.
1602    /// Not guaranteed if there are multiple concurrent tracing sessions, as the
1603    /// buffers cannot be resized without pausing recording in the kernel.
1604    #[prost(uint32, optional, tag="10")]
1605    pub buffer_size_kb: ::core::option::Option<u32>,
1606    /// If set, specifies how often the tracing daemon reads from the kernel ring
1607    /// buffer. Not guaranteed if there are multiple concurrent tracing sessions.
1608    /// Leave unset unless you're fine-tuning a local config.
1609    #[prost(uint32, optional, tag="11")]
1610    pub drain_period_ms: ::core::option::Option<u32>,
1611    /// If set, the tracing daemon will read kernel ring buffers as soon as
1612    /// they're filled past this percentage of occupancy. In other words, a value
1613    /// of 50 means that a read pass is triggered as soon as any per-cpu buffer is
1614    /// half-full. Not guaranteed if there are multiple concurrent tracing
1615    /// sessions.
1616    /// Currently does nothing on Linux kernels below v6.9.
1617    /// Introduced in: perfetto v48.
1618    #[prost(uint32, optional, tag="29")]
1619    pub drain_buffer_percent: ::core::option::Option<u32>,
1620    #[prost(message, optional, tag="12")]
1621    pub compact_sched: ::core::option::Option<ftrace_config::CompactSchedConfig>,
1622    #[prost(message, optional, tag="22")]
1623    pub print_filter: ::core::option::Option<ftrace_config::PrintFilter>,
1624    /// Enables symbol name resolution against /proc/kallsyms.
1625    /// It requires that either traced_probes is running as root or that
1626    /// kptr_restrict has been manually lowered.
1627    /// It does not disclose KASLR, symbol addresses are mangled.
1628    #[prost(bool, optional, tag="13")]
1629    pub symbolize_ksyms: ::core::option::Option<bool>,
1630    #[prost(enumeration="ftrace_config::KsymsMemPolicy", optional, tag="17")]
1631    pub ksyms_mem_policy: ::core::option::Option<i32>,
1632    /// By default the kernel symbolizer is lazily initialized on a deferred task
1633    /// to reduce ftrace's time-to-start-recording. Unfortunately that makes
1634    /// ksyms integration tests hard. This flag forces the kernel symbolizer to be
1635    /// initialized synchronously on the data source start and hence avoiding
1636    /// timing races in tests.
1637    /// DEPRECATED in v28 / Android U. This is now the default behavior, setting it
1638    /// to true is a no-op.
1639    #[deprecated]
1640    #[prost(bool, optional, tag="14")]
1641    pub initialize_ksyms_synchronously_for_testing: ::core::option::Option<bool>,
1642    /// When this boolean is true AND the ftrace_events contains "kmem/rss_stat",
1643    /// this option causes traced_probes to enable the "kmem/rss_stat_throttled"
1644    /// event instead if present, and fall back to "kmem/rss_stat" if not present.
1645    /// The historical context for this is the following:
1646    /// - Up to Android S (12), the rss_stat was internally throttled in its
1647    ///    kernel implementation.
1648    /// - A change introduced in the kernels after S has introduced a new
1649    ///    "rss_stat_throttled" making the original "rss_stat" event unthrottled
1650    ///    (hence very spammy).
1651    /// - Not all Android T/13 devices will receive a new kernel though, hence we
1652    ///    need to deal with both cases.
1653    /// For more context: go/rss-stat-throttled.
1654    #[prost(bool, optional, tag="15")]
1655    pub throttle_rss_stat: ::core::option::Option<bool>,
1656    /// If true, avoid enabling events that aren't statically known by
1657    /// traced_probes. Otherwise, the default is to emit such events as
1658    /// GenericFtraceEvent protos.
1659    /// Prefer to keep this flag at its default. This was added for Android
1660    /// tracing, where atrace categories and/or atrace HAL requested events can
1661    /// expand to events that aren't of interest to the tracing user.
1662    /// Introduced in: Android T.
1663    #[prost(bool, optional, tag="16")]
1664    pub disable_generic_events: ::core::option::Option<bool>,
1665    /// The subset of syscalls to record. To record all syscalls, leave this unset
1666    /// and add "ftrace_events: raw_syscalls/sys_{enter,exit}" to the config.
1667    /// * before perfetto v43, requires the config to also enable
1668    ///    raw_syscalls/sys_{enter,exit}.
1669    /// * perfetto v43+ does the right thing if you set only this field.
1670    /// Example: ["sys_read", "sys_open"].
1671    /// Introduced in: Android U.
1672    #[prost(string, repeated, tag="18")]
1673    pub syscall_events: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1674    /// If true, enable the "function_graph" kernel tracer that emits events
1675    /// whenever a kernel function is entered and exited
1676    /// (funcgraph_entry/funcgraph_exit).
1677    /// Notes on use:
1678    /// * Requires |symbolize_ksyms| for function name resolution.
1679    /// * Use |function_filters| or |function_graph_roots| to constrain the traced
1680    ///    set of functions, otherwise the event bandwidth will be too high for
1681    ///    practical use.
1682    /// * The data source might be rejected if there is already a concurrent
1683    ///    ftrace data source that does not use function graph itself, as we do not
1684    ///    support switching kernel tracers mid-trace.
1685    /// * Requires a kernel compiled with CONFIG_FUNCTION_GRAPH_TRACER. This is
1686    ///    enabled if "cat /sys/kernel/tracing/available_tracers" includes
1687    ///    "function_graph".
1688    /// Android:
1689    /// * Available only on debuggable builds.
1690    /// * Introduced in: Android U.
1691    #[prost(bool, optional, tag="19")]
1692    pub enable_function_graph: ::core::option::Option<bool>,
1693    /// Constrains the set of functions traced when |enable_function_graph| is
1694    /// true. Supports globs, e.g. "sched*". You can specify multiple filters,
1695    /// in which case all matching functions will be traced. See kernel
1696    /// documentation on ftrace "set_ftrace_filter" file for more details.
1697    /// Android:
1698    /// * Available only on debuggable builds.
1699    /// * Introduced in: Android U.
1700    #[prost(string, repeated, tag="20")]
1701    pub function_filters: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1702    /// If |enable_function_graph| is true, trace this set of functions *and* all
1703    /// of its callees. Supports globs. Can be set together with
1704    /// |function_filters|, in which case only callees matching the filter will be
1705    /// traced. If setting both, you most likely want all roots to also be
1706    /// included in |function_filters|.
1707    /// Android:
1708    /// * Available only on debuggable builds.
1709    /// * Introduced in: Android U.
1710    #[prost(string, repeated, tag="21")]
1711    pub function_graph_roots: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1712    /// If true, does not clear ftrace buffers before the start of the program.
1713    /// This makes sense only if this is the first ftrace data source instance
1714    /// created after the daemon has been started. Can be useful for gathering boot
1715    /// traces, if ftrace has been separately configured (e.g. via kernel
1716    /// commandline).
1717    #[prost(bool, optional, tag="23")]
1718    pub preserve_ftrace_buffer: ::core::option::Option<bool>,
1719    /// If true, overrides the default timestamp clock and uses a raw hardware
1720    /// based monotonic clock for getting timestamps.
1721    /// * Introduced in: Android U.
1722    #[prost(bool, optional, tag="24")]
1723    pub use_monotonic_raw_clock: ::core::option::Option<bool>,
1724    /// If |instance_name| is not empty, then attempt to use that tracefs instance
1725    /// for event recording. Normally, this means
1726    /// `/sys/kernel/tracing/instances/$instance_name`.
1727    ///
1728    /// The name "hyp" is reserved.
1729    ///
1730    /// The instance must already exist, the tracing daemon *will not* create it
1731    /// for you as it typically doesn't have such permissions.
1732    /// Only a subset of features is guaranteed to work with non-default instances,
1733    /// at the time of writing:
1734    ///   * ftrace_events
1735    ///   * buffer_size_kb
1736    #[prost(string, optional, tag="25")]
1737    pub instance_name: ::core::option::Option<::prost::alloc::string::String>,
1738    /// If true, |buffer_size_kb| is interpreted as a lower bound, allowing the
1739    /// implementation to choose a bigger buffer size.
1740    ///
1741    /// Most configs for perfetto v43+ should simply leave both fields unset.
1742    ///
1743    /// If you need a config compatible with a range of perfetto builds and you
1744    /// used to set a non-default buffer_size_kb, consider setting both fields.
1745    /// Example:
1746    ///    buffer_size_kb: 4096
1747    ///    buffer_size_lower_bound: true
1748    /// On older builds, the per-cpu buffers will be exactly 4 MB.
1749    /// On v43+, buffers will be at least 4 MB.
1750    /// In both cases, neither is guaranteed if there are other concurrent
1751    /// perfetto ftrace sessions, as the buffers cannot be resized without pausing
1752    /// the recording in the kernel.
1753    /// Introduced in: perfetto v43.
1754    #[prost(bool, optional, tag="27")]
1755    pub buffer_size_lower_bound: ::core::option::Option<bool>,
1756}
1757/// Nested message and enum types in `FtraceConfig`.
1758pub mod ftrace_config {
1759    #[derive(Clone, PartialEq, ::prost::Message)]
1760    pub struct KprobeEvent {
1761        /// Kernel function name to attach to, for example "fuse_file_write_iter"
1762        #[prost(string, optional, tag="1")]
1763        pub probe: ::core::option::Option<::prost::alloc::string::String>,
1764        #[prost(enumeration="kprobe_event::KprobeType", optional, tag="2")]
1765        pub r#type: ::core::option::Option<i32>,
1766    }
1767    /// Nested message and enum types in `KprobeEvent`.
1768    pub mod kprobe_event {
1769        #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1770        #[repr(i32)]
1771        pub enum KprobeType {
1772            Unknown = 0,
1773            Kprobe = 1,
1774            Kretprobe = 2,
1775            Both = 3,
1776        }
1777        impl KprobeType {
1778            /// String value of the enum field names used in the ProtoBuf definition.
1779            ///
1780            /// The values are not transformed in any way and thus are considered stable
1781            /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1782            pub fn as_str_name(&self) -> &'static str {
1783                match self {
1784                    KprobeType::Unknown => "KPROBE_TYPE_UNKNOWN",
1785                    KprobeType::Kprobe => "KPROBE_TYPE_KPROBE",
1786                    KprobeType::Kretprobe => "KPROBE_TYPE_KRETPROBE",
1787                    KprobeType::Both => "KPROBE_TYPE_BOTH",
1788                }
1789            }
1790        }
1791    }
1792    /// Configuration for compact encoding of scheduler events. When enabled (and
1793    /// recording the relevant ftrace events), specific high-volume events are
1794    /// encoded in a denser format than normal.
1795    #[derive(Clone, PartialEq, ::prost::Message)]
1796    pub struct CompactSchedConfig {
1797        /// If true, and sched_switch or sched_waking ftrace events are enabled,
1798        /// record those events in the compact format.
1799        ///
1800        /// If the field is unset, the default is:
1801        /// * perfetto v42.0+: enabled
1802        /// * before: disabled
1803        #[prost(bool, optional, tag="1")]
1804        pub enabled: ::core::option::Option<bool>,
1805    }
1806    /// Optional filter for "ftrace/print" events.
1807    ///
1808    /// The filter consists of multiple rules. As soon as a rule matches (the rules
1809    /// are processed in order), its `allow` field will be used as the outcome: if
1810    /// `allow` is true, the event will be included in the trace, otherwise it will
1811    /// be discarded. If an event does not match any rule, it will be allowed by
1812    /// default (a rule with an empty prefix and allow=false, disallows everything
1813    /// by default).
1814    #[derive(Clone, PartialEq, ::prost::Message)]
1815    pub struct PrintFilter {
1816        #[prost(message, repeated, tag="1")]
1817        pub rules: ::prost::alloc::vec::Vec<print_filter::Rule>,
1818    }
1819    /// Nested message and enum types in `PrintFilter`.
1820    pub mod print_filter {
1821        #[derive(Clone, PartialEq, ::prost::Message)]
1822        pub struct Rule {
1823            #[prost(bool, optional, tag="2")]
1824            pub allow: ::core::option::Option<bool>,
1825            #[prost(oneof="rule::Match", tags="1, 3")]
1826            pub r#match: ::core::option::Option<rule::Match>,
1827        }
1828        /// Nested message and enum types in `Rule`.
1829        pub mod rule {
1830            /// Matches an atrace message of the form:
1831            /// <type>|pid|<prefix>...
1832            #[derive(Clone, PartialEq, ::prost::Message)]
1833            pub struct AtraceMessage {
1834                #[prost(string, optional, tag="1")]
1835                pub r#type: ::core::option::Option<::prost::alloc::string::String>,
1836                #[prost(string, optional, tag="2")]
1837                pub prefix: ::core::option::Option<::prost::alloc::string::String>,
1838            }
1839            #[derive(Clone, PartialEq, ::prost::Oneof)]
1840            pub enum Match {
1841                /// This rule matches if `prefix` matches exactly with the beginning of
1842                /// the "ftrace/print" "buf" field.
1843                #[prost(string, tag="1")]
1844                Prefix(::prost::alloc::string::String),
1845                /// This rule matches if the "buf" field contains an atrace-style print
1846                /// message as specified in `atrace_msg`.
1847                #[prost(message, tag="3")]
1848                AtraceMsg(AtraceMessage),
1849            }
1850        }
1851    }
1852    /// When symbolize_ksyms=true, determines whether the traced_probes daemon
1853    /// should keep the symbol map in memory (and reuse it for future tracing
1854    /// sessions) or clear it (saving memory) and re-create it on each tracing
1855    /// session (wasting cpu and wall time).
1856    /// The tradeoff is roughly:
1857    ///   KSYMS_RETAIN: pay a fixed ~1.2 MB cost after the first trace.
1858    ///   KSYMS_CLEANUP_ON_STOP: pay a ~300-500ms cost when starting each trace.
1859    /// Default behavior: KSYMS_CLEANUP_ON_STOP.
1860    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1861    #[repr(i32)]
1862    pub enum KsymsMemPolicy {
1863        KsymsUnspecified = 0,
1864        KsymsCleanupOnStop = 1,
1865        KsymsRetain = 2,
1866    }
1867    impl KsymsMemPolicy {
1868        /// String value of the enum field names used in the ProtoBuf definition.
1869        ///
1870        /// The values are not transformed in any way and thus are considered stable
1871        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1872        pub fn as_str_name(&self) -> &'static str {
1873            match self {
1874                KsymsMemPolicy::KsymsUnspecified => "KSYMS_UNSPECIFIED",
1875                KsymsMemPolicy::KsymsCleanupOnStop => "KSYMS_CLEANUP_ON_STOP",
1876                KsymsMemPolicy::KsymsRetain => "KSYMS_RETAIN",
1877            }
1878        }
1879    }
1880}
1881#[derive(Clone, PartialEq, ::prost::Message)]
1882pub struct GpuCounterConfig {
1883    /// Desired sampling interval for counters.
1884    #[prost(uint64, optional, tag="1")]
1885    pub counter_period_ns: ::core::option::Option<u64>,
1886    /// List of counters to be sampled. Counter IDs correspond to the ones
1887    /// described in GpuCounterSpec in the data source descriptor.
1888    #[prost(uint32, repeated, packed="false", tag="2")]
1889    pub counter_ids: ::prost::alloc::vec::Vec<u32>,
1890    /// Sample counters by instrumenting command buffers.
1891    #[prost(bool, optional, tag="3")]
1892    pub instrumented_sampling: ::core::option::Option<bool>,
1893    /// Fix gpu clock rate during trace session.
1894    #[prost(bool, optional, tag="4")]
1895    pub fix_gpu_clock: ::core::option::Option<bool>,
1896}
1897#[derive(Clone, PartialEq, ::prost::Message)]
1898pub struct VulkanMemoryConfig {
1899    /// Tracking driver memory usage events
1900    #[prost(bool, optional, tag="1")]
1901    pub track_driver_memory_usage: ::core::option::Option<bool>,
1902    /// Tracking device memory usage events
1903    #[prost(bool, optional, tag="2")]
1904    pub track_device_memory_usage: ::core::option::Option<bool>,
1905}
1906#[derive(Clone, PartialEq, ::prost::Message)]
1907pub struct GpuRenderStagesConfig {
1908    /// Enable to separate the color and depth/stencil load and store stages
1909    /// into a separate stages. If disabled, the depth/stencil load and store
1910    /// stages will be combined.  Disabled by default. This option has no effect if
1911    /// Low Overhead mode is enabled.
1912    #[prost(bool, optional, tag="1")]
1913    pub full_loadstore: ::core::option::Option<bool>,
1914    /// Use the low overhead mode for traces. In this mode render stages are
1915    /// combined into a single workload stage. This provides less granular data but
1916    /// induces minimal GPU overhead. Disabled by default.
1917    #[prost(bool, optional, tag="2")]
1918    pub low_overhead: ::core::option::Option<bool>,
1919    /// Trace metrics to capture for each render stage
1920    #[prost(string, repeated, tag="3")]
1921    pub trace_metrics: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1922}
1923#[derive(Clone, PartialEq, ::prost::Message)]
1924pub struct InodeFileConfig {
1925    /// How long to pause between batches.
1926    #[prost(uint32, optional, tag="1")]
1927    pub scan_interval_ms: ::core::option::Option<u32>,
1928    /// How long to wait before the first scan in order to accumulate inodes.
1929    #[prost(uint32, optional, tag="2")]
1930    pub scan_delay_ms: ::core::option::Option<u32>,
1931    /// How many inodes to scan in one batch.
1932    #[prost(uint32, optional, tag="3")]
1933    pub scan_batch_size: ::core::option::Option<u32>,
1934    /// Do not scan for inodes not found in the static map.
1935    #[prost(bool, optional, tag="4")]
1936    pub do_not_scan: ::core::option::Option<bool>,
1937    /// If non-empty, only scan inodes corresponding to block devices named in
1938    /// this list.
1939    #[prost(string, repeated, tag="5")]
1940    pub scan_mount_points: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1941    /// When encountering an inode belonging to a block device corresponding
1942    /// to one of the mount points in this map, scan its scan_roots instead.
1943    #[prost(message, repeated, tag="6")]
1944    pub mount_point_mapping: ::prost::alloc::vec::Vec<inode_file_config::MountPointMappingEntry>,
1945}
1946/// Nested message and enum types in `InodeFileConfig`.
1947pub mod inode_file_config {
1948    #[derive(Clone, PartialEq, ::prost::Message)]
1949    pub struct MountPointMappingEntry {
1950        #[prost(string, optional, tag="1")]
1951        pub mountpoint: ::core::option::Option<::prost::alloc::string::String>,
1952        #[prost(string, repeated, tag="2")]
1953        pub scan_roots: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
1954    }
1955}
1956#[derive(Clone, PartialEq, ::prost::Message)]
1957pub struct ConsoleConfig {
1958    #[prost(enumeration="console_config::Output", optional, tag="1")]
1959    pub output: ::core::option::Option<i32>,
1960    #[prost(bool, optional, tag="2")]
1961    pub enable_colors: ::core::option::Option<bool>,
1962}
1963/// Nested message and enum types in `ConsoleConfig`.
1964pub mod console_config {
1965    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
1966    #[repr(i32)]
1967    pub enum Output {
1968        Unspecified = 0,
1969        Stdout = 1,
1970        Stderr = 2,
1971    }
1972    impl Output {
1973        /// String value of the enum field names used in the ProtoBuf definition.
1974        ///
1975        /// The values are not transformed in any way and thus are considered stable
1976        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
1977        pub fn as_str_name(&self) -> &'static str {
1978            match self {
1979                Output::Unspecified => "OUTPUT_UNSPECIFIED",
1980                Output::Stdout => "OUTPUT_STDOUT",
1981                Output::Stderr => "OUTPUT_STDERR",
1982            }
1983        }
1984    }
1985}
1986/// Configuration for trace packet interception. Used for diverting trace data to
1987/// non-Perfetto sources (e.g., logging to the console, ETW) when using the
1988/// Perfetto SDK.
1989#[derive(Clone, PartialEq, ::prost::Message)]
1990pub struct InterceptorConfig {
1991    /// Matches the name given to RegisterInterceptor().
1992    #[prost(string, optional, tag="1")]
1993    pub name: ::core::option::Option<::prost::alloc::string::String>,
1994    #[prost(message, optional, tag="100")]
1995    pub console_config: ::core::option::Option<ConsoleConfig>,
1996}
1997#[derive(Clone, PartialEq, ::prost::Message)]
1998pub struct AndroidPowerConfig {
1999    #[prost(uint32, optional, tag="1")]
2000    pub battery_poll_ms: ::core::option::Option<u32>,
2001    #[prost(enumeration="android_power_config::BatteryCounters", repeated, packed="false", tag="2")]
2002    pub battery_counters: ::prost::alloc::vec::Vec<i32>,
2003    /// Where available enables per-power-rail measurements.
2004    #[prost(bool, optional, tag="3")]
2005    pub collect_power_rails: ::core::option::Option<bool>,
2006    /// Provides a breakdown of energy estimation for various subsystem (e.g. GPU).
2007    /// Available from Android S.
2008    #[prost(bool, optional, tag="4")]
2009    pub collect_energy_estimation_breakdown: ::core::option::Option<bool>,
2010    /// Provides a breakdown of time in state for various subsystems.
2011    /// Available from Android U.
2012    #[prost(bool, optional, tag="5")]
2013    pub collect_entity_state_residency: ::core::option::Option<bool>,
2014}
2015/// Nested message and enum types in `AndroidPowerConfig`.
2016pub mod android_power_config {
2017    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
2018    #[repr(i32)]
2019    pub enum BatteryCounters {
2020        BatteryCounterUnspecified = 0,
2021        /// Coulomb counter.
2022        BatteryCounterCharge = 1,
2023        /// Charge (%).
2024        BatteryCounterCapacityPercent = 2,
2025        /// Instantaneous current.
2026        BatteryCounterCurrent = 3,
2027        /// Avg current.
2028        BatteryCounterCurrentAvg = 4,
2029        /// Instantaneous voltage.
2030        BatteryCounterVoltage = 5,
2031    }
2032    impl BatteryCounters {
2033        /// String value of the enum field names used in the ProtoBuf definition.
2034        ///
2035        /// The values are not transformed in any way and thus are considered stable
2036        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
2037        pub fn as_str_name(&self) -> &'static str {
2038            match self {
2039                BatteryCounters::BatteryCounterUnspecified => "BATTERY_COUNTER_UNSPECIFIED",
2040                BatteryCounters::BatteryCounterCharge => "BATTERY_COUNTER_CHARGE",
2041                BatteryCounters::BatteryCounterCapacityPercent => "BATTERY_COUNTER_CAPACITY_PERCENT",
2042                BatteryCounters::BatteryCounterCurrent => "BATTERY_COUNTER_CURRENT",
2043                BatteryCounters::BatteryCounterCurrentAvg => "BATTERY_COUNTER_CURRENT_AVG",
2044                BatteryCounters::BatteryCounterVoltage => "BATTERY_COUNTER_VOLTAGE",
2045            }
2046        }
2047    }
2048}
2049/// This enum is obtained by post-processing
2050/// AOSP/frameworks/proto_logging/stats/atoms.proto through
2051/// AOSP/external/perfetto/tools/update-statsd-descriptor, which extracts one
2052/// enum value for each proto field defined in the upstream atoms.proto.
2053#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
2054#[repr(i32)]
2055pub enum AtomId {
2056    AtomUnspecified = 0,
2057    AtomBleScanStateChanged = 2,
2058    AtomProcessStateChanged = 3,
2059    AtomBleScanResultReceived = 4,
2060    AtomSensorStateChanged = 5,
2061    AtomGpsScanStateChanged = 6,
2062    AtomSyncStateChanged = 7,
2063    AtomScheduledJobStateChanged = 8,
2064    AtomScreenBrightnessChanged = 9,
2065    AtomWakelockStateChanged = 10,
2066    AtomLongPartialWakelockStateChanged = 11,
2067    AtomMobileRadioPowerStateChanged = 12,
2068    AtomWifiRadioPowerStateChanged = 13,
2069    AtomActivityManagerSleepStateChanged = 14,
2070    AtomMemoryFactorStateChanged = 15,
2071    AtomExcessiveCpuUsageReported = 16,
2072    AtomCachedKillReported = 17,
2073    AtomProcessMemoryStatReported = 18,
2074    AtomLauncherEvent = 19,
2075    AtomBatterySaverModeStateChanged = 20,
2076    AtomDeviceIdleModeStateChanged = 21,
2077    AtomDeviceIdlingModeStateChanged = 22,
2078    AtomAudioStateChanged = 23,
2079    AtomMediaCodecStateChanged = 24,
2080    AtomCameraStateChanged = 25,
2081    AtomFlashlightStateChanged = 26,
2082    AtomUidProcessStateChanged = 27,
2083    AtomProcessLifeCycleStateChanged = 28,
2084    AtomScreenStateChanged = 29,
2085    AtomBatteryLevelChanged = 30,
2086    AtomChargingStateChanged = 31,
2087    AtomPluggedStateChanged = 32,
2088    AtomInteractiveStateChanged = 33,
2089    AtomTouchEventReported = 34,
2090    AtomWakeupAlarmOccurred = 35,
2091    AtomKernelWakeupReported = 36,
2092    AtomWifiLockStateChanged = 37,
2093    AtomWifiSignalStrengthChanged = 38,
2094    AtomWifiScanStateChanged = 39,
2095    AtomPhoneSignalStrengthChanged = 40,
2096    AtomSettingChanged = 41,
2097    AtomActivityForegroundStateChanged = 42,
2098    AtomIsolatedUidChanged = 43,
2099    AtomPacketWakeupOccurred = 44,
2100    AtomWallClockTimeShifted = 45,
2101    AtomAnomalyDetected = 46,
2102    AtomAppBreadcrumbReported = 47,
2103    AtomAppStartOccurred = 48,
2104    AtomAppStartCanceled = 49,
2105    AtomAppStartFullyDrawn = 50,
2106    AtomLmkKillOccurred = 51,
2107    AtomPictureInPictureStateChanged = 52,
2108    AtomWifiMulticastLockStateChanged = 53,
2109    AtomAppStartMemoryStateCaptured = 55,
2110    AtomShutdownSequenceReported = 56,
2111    AtomBootSequenceReported = 57,
2112    AtomOverlayStateChanged = 59,
2113    AtomForegroundServiceStateChanged = 60,
2114    AtomCallStateChanged = 61,
2115    AtomKeyguardStateChanged = 62,
2116    AtomKeyguardBouncerStateChanged = 63,
2117    AtomKeyguardBouncerPasswordEntered = 64,
2118    AtomAppDied = 65,
2119    AtomResourceConfigurationChanged = 66,
2120    AtomBluetoothEnabledStateChanged = 67,
2121    AtomBluetoothConnectionStateChanged = 68,
2122    AtomGpsSignalQualityChanged = 69,
2123    AtomUsbConnectorStateChanged = 70,
2124    AtomSpeakerImpedanceReported = 71,
2125    AtomHardwareFailed = 72,
2126    AtomPhysicalDropDetected = 73,
2127    AtomChargeCyclesReported = 74,
2128    AtomMobileConnectionStateChanged = 75,
2129    AtomMobileRadioTechnologyChanged = 76,
2130    AtomUsbDeviceAttached = 77,
2131    AtomAppCrashOccurred = 78,
2132    AtomAnrOccurred = 79,
2133    AtomWtfOccurred = 80,
2134    AtomLowMemReported = 81,
2135    AtomGenericAtom = 82,
2136    AtomVibratorStateChanged = 84,
2137    AtomDeferredJobStatsReported = 85,
2138    AtomThermalThrottling = 86,
2139    AtomBiometricAcquired = 87,
2140    AtomBiometricAuthenticated = 88,
2141    AtomBiometricErrorOccurred = 89,
2142    AtomUiEventReported = 90,
2143    AtomBatteryHealthSnapshot = 91,
2144    AtomSlowIo = 92,
2145    AtomBatteryCausedShutdown = 93,
2146    AtomPhoneServiceStateChanged = 94,
2147    AtomPhoneStateChanged = 95,
2148    AtomUserRestrictionChanged = 96,
2149    AtomSettingsUiChanged = 97,
2150    AtomConnectivityStateChanged = 98,
2151    AtomServiceStateChanged = 99,
2152    AtomServiceLaunchReported = 100,
2153    AtomFlagFlipUpdateOccurred = 101,
2154    AtomBinaryPushStateChanged = 102,
2155    AtomDevicePolicyEvent = 103,
2156    AtomDocsUiFileOpCanceled = 104,
2157    AtomDocsUiFileOpCopyMoveModeReported = 105,
2158    AtomDocsUiFileOpFailure = 106,
2159    AtomDocsUiProviderFileOp = 107,
2160    AtomDocsUiInvalidScopedAccessRequest = 108,
2161    AtomDocsUiLaunchReported = 109,
2162    AtomDocsUiRootVisited = 110,
2163    AtomDocsUiStartupMs = 111,
2164    AtomDocsUiUserActionReported = 112,
2165    AtomWifiEnabledStateChanged = 113,
2166    AtomWifiRunningStateChanged = 114,
2167    AtomAppCompacted = 115,
2168    AtomNetworkDnsEventReported = 116,
2169    AtomDocsUiPickerLaunchedFromReported = 117,
2170    AtomDocsUiPickResultReported = 118,
2171    AtomDocsUiSearchModeReported = 119,
2172    AtomDocsUiSearchTypeReported = 120,
2173    AtomDataStallEvent = 121,
2174    AtomRescuePartyResetReported = 122,
2175    AtomSignedConfigReported = 123,
2176    AtomGnssNiEventReported = 124,
2177    AtomBluetoothLinkLayerConnectionEvent = 125,
2178    AtomBluetoothAclConnectionStateChanged = 126,
2179    AtomBluetoothScoConnectionStateChanged = 127,
2180    AtomAppDowngraded = 128,
2181    AtomAppOptimizedAfterDowngraded = 129,
2182    AtomLowStorageStateChanged = 130,
2183    AtomGnssNfwNotificationReported = 131,
2184    AtomGnssConfigurationReported = 132,
2185    AtomUsbPortOverheatEventReported = 133,
2186    AtomNfcErrorOccurred = 134,
2187    AtomNfcStateChanged = 135,
2188    AtomNfcBeamOccurred = 136,
2189    AtomNfcCardemulationOccurred = 137,
2190    AtomNfcTagOccurred = 138,
2191    AtomNfcHceTransactionOccurred = 139,
2192    AtomSeStateChanged = 140,
2193    AtomSeOmapiReported = 141,
2194    AtomBroadcastDispatchLatencyReported = 142,
2195    AtomAttentionManagerServiceResultReported = 143,
2196    AtomAdbConnectionChanged = 144,
2197    AtomSpeechDspStatReported = 145,
2198    AtomUsbContaminantReported = 146,
2199    AtomWatchdogRollbackOccurred = 147,
2200    AtomBiometricSystemHealthIssueDetected = 148,
2201    AtomBubbleUiChanged = 149,
2202    AtomScheduledJobConstraintChanged = 150,
2203    AtomBluetoothActiveDeviceChanged = 151,
2204    AtomBluetoothA2dpPlaybackStateChanged = 152,
2205    AtomBluetoothA2dpCodecConfigChanged = 153,
2206    AtomBluetoothA2dpCodecCapabilityChanged = 154,
2207    AtomBluetoothA2dpAudioUnderrunReported = 155,
2208    AtomBluetoothA2dpAudioOverrunReported = 156,
2209    AtomBluetoothDeviceRssiReported = 157,
2210    AtomBluetoothDeviceFailedContactCounterReported = 158,
2211    AtomBluetoothDeviceTxPowerLevelReported = 159,
2212    AtomBluetoothHciTimeoutReported = 160,
2213    AtomBluetoothQualityReportReported = 161,
2214    AtomBluetoothDeviceInfoReported = 162,
2215    AtomBluetoothRemoteVersionInfoReported = 163,
2216    AtomBluetoothSdpAttributeReported = 164,
2217    AtomBluetoothBondStateChanged = 165,
2218    AtomBluetoothClassicPairingEventReported = 166,
2219    AtomBluetoothSmpPairingEventReported = 167,
2220    AtomScreenTimeoutExtensionReported = 168,
2221    AtomProcessStartTime = 169,
2222    AtomPermissionGrantRequestResultReported = 170,
2223    AtomBluetoothSocketConnectionStateChanged = 171,
2224    AtomDeviceIdentifierAccessDenied = 172,
2225    AtomBubbleDeveloperErrorReported = 173,
2226    AtomAssistGestureStageReported = 174,
2227    AtomAssistGestureFeedbackReported = 175,
2228    AtomAssistGestureProgressReported = 176,
2229    AtomTouchGestureClassified = 177,
2230    AtomHiddenApiUsed = 178,
2231    AtomStyleUiChanged = 179,
2232    AtomPrivacyIndicatorsInteracted = 180,
2233    AtomAppInstallOnExternalStorageReported = 181,
2234    AtomNetworkStackReported = 182,
2235    AtomAppMovedStorageReported = 183,
2236    AtomBiometricEnrolled = 184,
2237    AtomSystemServerWatchdogOccurred = 185,
2238    AtomTombStoneOccurred = 186,
2239    AtomBluetoothClassOfDeviceReported = 187,
2240    AtomIntelligenceEventReported = 188,
2241    AtomThermalThrottlingSeverityStateChanged = 189,
2242    AtomRoleRequestResultReported = 190,
2243    AtomMediametricsAudiopolicyReported = 191,
2244    AtomMediametricsAudiorecordReported = 192,
2245    AtomMediametricsAudiothreadReported = 193,
2246    AtomMediametricsAudiotrackReported = 194,
2247    AtomMediametricsCodecReported = 195,
2248    AtomMediametricsDrmWidevineReported = 196,
2249    AtomMediametricsExtractorReported = 197,
2250    AtomMediametricsMediadrmReported = 198,
2251    AtomMediametricsNuplayerReported = 199,
2252    AtomMediametricsRecorderReported = 200,
2253    AtomMediametricsDrmmanagerReported = 201,
2254    AtomCarPowerStateChanged = 203,
2255    AtomGarageModeInfo = 204,
2256    AtomTestAtomReported = 205,
2257    AtomContentCaptureCallerMismatchReported = 206,
2258    AtomContentCaptureServiceEvents = 207,
2259    AtomContentCaptureSessionEvents = 208,
2260    AtomContentCaptureFlushed = 209,
2261    AtomLocationManagerApiUsageReported = 210,
2262    AtomReviewPermissionsFragmentResultReported = 211,
2263    AtomRuntimePermissionsUpgradeResult = 212,
2264    AtomGrantPermissionsActivityButtonActions = 213,
2265    AtomLocationAccessCheckNotificationAction = 214,
2266    AtomAppPermissionFragmentActionReported = 215,
2267    AtomAppPermissionFragmentViewed = 216,
2268    AtomAppPermissionsFragmentViewed = 217,
2269    AtomPermissionAppsFragmentViewed = 218,
2270    AtomTextSelectionEvent = 219,
2271    AtomTextLinkifyEvent = 220,
2272    AtomConversationActionsEvent = 221,
2273    AtomLanguageDetectionEvent = 222,
2274    AtomExclusionRectStateChanged = 223,
2275    AtomBackGestureReportedReported = 224,
2276    AtomUpdateEngineUpdateAttemptReported = 225,
2277    AtomUpdateEngineSuccessfulUpdateReported = 226,
2278    AtomCameraActionEvent = 227,
2279    AtomAppCompatibilityChangeReported = 228,
2280    AtomPerfettoUploaded = 229,
2281    AtomVmsClientConnectionStateChanged = 230,
2282    AtomMediaProviderScanOccurred = 233,
2283    AtomMediaContentDeleted = 234,
2284    AtomMediaProviderPermissionRequested = 235,
2285    AtomMediaProviderSchemaChanged = 236,
2286    AtomMediaProviderIdleMaintenanceFinished = 237,
2287    AtomRebootEscrowRecoveryReported = 238,
2288    AtomBootTimeEventDurationReported = 239,
2289    AtomBootTimeEventElapsedTimeReported = 240,
2290    AtomBootTimeEventUtcTimeReported = 241,
2291    AtomBootTimeEventErrorCodeReported = 242,
2292    AtomUserspaceRebootReported = 243,
2293    AtomNotificationReported = 244,
2294    AtomNotificationPanelReported = 245,
2295    AtomNotificationChannelModified = 246,
2296    AtomIntegrityCheckResultReported = 247,
2297    AtomIntegrityRulesPushed = 248,
2298    AtomCbMessageReported = 249,
2299    AtomCbMessageError = 250,
2300    AtomWifiHealthStatReported = 251,
2301    AtomWifiFailureStatReported = 252,
2302    AtomWifiConnectionResultReported = 253,
2303    AtomAppFreezeChanged = 254,
2304    AtomSnapshotMergeReported = 255,
2305    AtomForegroundServiceAppOpSessionEnded = 256,
2306    AtomDisplayJankReported = 257,
2307    AtomAppStandbyBucketChanged = 258,
2308    AtomSharesheetStarted = 259,
2309    AtomRankingSelected = 260,
2310    AtomTvsettingsUiInteracted = 261,
2311    AtomLauncherSnapshot = 262,
2312    AtomPackageInstallerV2Reported = 263,
2313    AtomUserLifecycleJourneyReported = 264,
2314    AtomUserLifecycleEventOccurred = 265,
2315    AtomAccessibilityShortcutReported = 266,
2316    AtomAccessibilityServiceReported = 267,
2317    AtomDocsUiDragAndDropReported = 268,
2318    AtomAppUsageEventOccurred = 269,
2319    AtomAutoRevokeNotificationClicked = 270,
2320    AtomAutoRevokeFragmentAppViewed = 271,
2321    AtomAutoRevokedAppInteraction = 272,
2322    AtomAppPermissionGroupsFragmentAutoRevokeAction = 273,
2323    AtomEvsUsageStatsReported = 274,
2324    AtomAudioPowerUsageDataReported = 275,
2325    AtomTvTunerStateChanged = 276,
2326    AtomMediaoutputOpSwitchReported = 277,
2327    AtomCbMessageFiltered = 278,
2328    AtomTvTunerDvrStatus = 279,
2329    AtomTvCasSessionOpenStatus = 280,
2330    AtomAssistantInvocationReported = 281,
2331    AtomDisplayWakeReported = 282,
2332    AtomCarUserHalModifyUserRequestReported = 283,
2333    AtomCarUserHalModifyUserResponseReported = 284,
2334    AtomCarUserHalPostSwitchResponseReported = 285,
2335    AtomCarUserHalInitialUserInfoRequestReported = 286,
2336    AtomCarUserHalInitialUserInfoResponseReported = 287,
2337    AtomCarUserHalUserAssociationRequestReported = 288,
2338    AtomCarUserHalSetUserAssociationResponseReported = 289,
2339    AtomNetworkIpProvisioningReported = 290,
2340    AtomNetworkDhcpRenewReported = 291,
2341    AtomNetworkValidationReported = 292,
2342    AtomNetworkStackQuirkReported = 293,
2343    AtomMediametricsAudiorecorddeviceusageReported = 294,
2344    AtomMediametricsAudiothreaddeviceusageReported = 295,
2345    AtomMediametricsAudiotrackdeviceusageReported = 296,
2346    AtomMediametricsAudiodeviceconnectionReported = 297,
2347    AtomBlobCommitted = 298,
2348    AtomBlobLeased = 299,
2349    AtomBlobOpened = 300,
2350    AtomContactsProviderStatusReported = 301,
2351    AtomKeystoreKeyEventReported = 302,
2352    AtomNetworkTetheringReported = 303,
2353    AtomImeTouchReported = 304,
2354    AtomUiInteractionFrameInfoReported = 305,
2355    AtomUiActionLatencyReported = 306,
2356    AtomWifiDisconnectReported = 307,
2357    AtomWifiConnectionStateChanged = 308,
2358    AtomHdmiCecActiveSourceChanged = 309,
2359    AtomHdmiCecMessageReported = 310,
2360    AtomAirplaneMode = 311,
2361    AtomModemRestart = 312,
2362    AtomCarrierIdMismatchReported = 313,
2363    AtomCarrierIdTableUpdated = 314,
2364    AtomDataStallRecoveryReported = 315,
2365    AtomMediametricsMediaparserReported = 316,
2366    AtomTlsHandshakeReported = 317,
2367    AtomTextClassifierApiUsageReported = 318,
2368    AtomCarWatchdogKillStatsReported = 319,
2369    AtomMediametricsPlaybackReported = 320,
2370    AtomMediaNetworkInfoChanged = 321,
2371    AtomMediaPlaybackStateChanged = 322,
2372    AtomMediaPlaybackErrorReported = 323,
2373    AtomMediaPlaybackTrackChanged = 324,
2374    AtomWifiScanReported = 325,
2375    AtomWifiPnoScanReported = 326,
2376    AtomTifTuneChanged = 327,
2377    AtomAutoRotateReported = 328,
2378    AtomPerfettoTrigger = 329,
2379    AtomTranscodingData = 330,
2380    AtomImsServiceEntitlementUpdated = 331,
2381    AtomDeviceRotated = 333,
2382    AtomSimSpecificSettingsRestored = 334,
2383    AtomTextClassifierDownloadReported = 335,
2384    AtomPinStorageEvent = 336,
2385    AtomFaceDownReported = 337,
2386    AtomBluetoothHalCrashReasonReported = 338,
2387    AtomRebootEscrowPreparationReported = 339,
2388    AtomRebootEscrowLskfCaptureReported = 340,
2389    AtomRebootEscrowRebootReported = 341,
2390    AtomBinderLatencyReported = 342,
2391    AtomMediametricsAaudiostreamReported = 343,
2392    AtomMediaTranscodingSessionEnded = 344,
2393    AtomMagnificationUsageReported = 345,
2394    AtomMagnificationModeWithImeOnReported = 346,
2395    AtomAppSearchCallStatsReported = 347,
2396    AtomAppSearchPutDocumentStatsReported = 348,
2397    AtomDeviceControlChanged = 349,
2398    AtomDeviceStateChanged = 350,
2399    AtomInputdeviceRegistered = 351,
2400    AtomSmartspaceCardReported = 352,
2401    AtomAuthPromptAuthenticateInvoked = 353,
2402    AtomAuthManagerCanAuthenticateInvoked = 354,
2403    AtomAuthEnrollActionInvoked = 355,
2404    AtomAuthDeprecatedApiUsed = 356,
2405    AtomUnattendedRebootOccurred = 357,
2406    AtomLongRebootBlockingReported = 358,
2407    AtomLocationTimeZoneProviderStateChanged = 359,
2408    AtomFdtrackEventOccurred = 364,
2409    AtomTimeoutAutoExtendedReported = 365,
2410    AtomAlarmBatchDelivered = 367,
2411    AtomAlarmScheduled = 368,
2412    AtomCarWatchdogIoOveruseStatsReported = 369,
2413    AtomUserLevelHibernationStateChanged = 370,
2414    AtomAppSearchInitializeStatsReported = 371,
2415    AtomAppSearchQueryStatsReported = 372,
2416    AtomAppProcessDied = 373,
2417    AtomNetworkIpReachabilityMonitorReported = 374,
2418    AtomSlowInputEventReported = 375,
2419    AtomAnrOccurredProcessingStarted = 376,
2420    AtomAppSearchRemoveStatsReported = 377,
2421    AtomMediaCodecReported = 378,
2422    AtomPermissionUsageFragmentInteraction = 379,
2423    AtomPermissionDetailsInteraction = 380,
2424    AtomPrivacySensorToggleInteraction = 381,
2425    AtomPrivacyToggleDialogInteraction = 382,
2426    AtomAppSearchOptimizeStatsReported = 383,
2427    AtomNonA11yToolServiceWarningReport = 384,
2428    AtomAppCompatStateChanged = 386,
2429    AtomSizeCompatRestartButtonEventReported = 387,
2430    AtomSplitscreenUiChanged = 388,
2431    AtomNetworkDnsHandshakeReported = 389,
2432    AtomBluetoothCodePathCounter = 390,
2433    AtomBluetoothLeBatchScanReportDelay = 392,
2434    AtomAccessibilityFloatingMenuUiChanged = 393,
2435    AtomNeuralnetworksCompilationCompleted = 394,
2436    AtomNeuralnetworksExecutionCompleted = 395,
2437    AtomNeuralnetworksCompilationFailed = 396,
2438    AtomNeuralnetworksExecutionFailed = 397,
2439    AtomContextHubBooted = 398,
2440    AtomContextHubRestarted = 399,
2441    AtomContextHubLoadedNanoappSnapshotReported = 400,
2442    AtomChreCodeDownloadTransacted = 401,
2443    AtomUwbSessionInited = 402,
2444    AtomUwbSessionClosed = 403,
2445    AtomUwbFirstRangingReceived = 404,
2446    AtomUwbRangingMeasurementReceived = 405,
2447    AtomTextClassifierDownloadWorkScheduled = 406,
2448    AtomTextClassifierDownloadWorkCompleted = 407,
2449    AtomClipboardCleared = 408,
2450    AtomVmCreationRequested = 409,
2451    AtomNearbyDeviceScanStateChanged = 410,
2452    AtomApplicationLocalesChanged = 412,
2453    AtomMediametricsAudiotrackstatusReported = 413,
2454    AtomFoldStateDurationReported = 414,
2455    AtomLocationTimeZoneProviderControllerStateChanged = 415,
2456    AtomDisplayHbmStateChanged = 416,
2457    AtomDisplayHbmBrightnessChanged = 417,
2458    AtomPersistentUriPermissionsFlushed = 418,
2459    AtomEarlyBootCompOsArtifactsCheckReported = 419,
2460    AtomVbmetaDigestReported = 420,
2461    AtomApexInfoGathered = 421,
2462    AtomPvmInfoGathered = 422,
2463    AtomWearSettingsUiInteracted = 423,
2464    AtomTracingServiceReportEvent = 424,
2465    AtomMediametricsAudiorecordstatusReported = 425,
2466    AtomLauncherLatency = 426,
2467    AtomDropboxEntryDropped = 427,
2468    AtomWifiP2pConnectionReported = 428,
2469    AtomGameStateChanged = 429,
2470    AtomHotwordDetectorCreateRequested = 430,
2471    AtomHotwordDetectionServiceInitResultReported = 431,
2472    AtomHotwordDetectionServiceRestarted = 432,
2473    AtomHotwordDetectorKeyphraseTriggered = 433,
2474    AtomHotwordDetectorEvents = 434,
2475    AtomBootCompletedBroadcastCompletionLatencyReported = 437,
2476    AtomContactsIndexerUpdateStatsReported = 440,
2477    AtomAppBackgroundRestrictionsInfo = 441,
2478    AtomMmsSmsProviderGetThreadIdFailed = 442,
2479    AtomMmsSmsDatabaseHelperOnUpgradeFailed = 443,
2480    AtomPermissionReminderNotificationInteracted = 444,
2481    AtomRecentPermissionDecisionsInteracted = 445,
2482    AtomGnssPsdsDownloadReported = 446,
2483    AtomLeAudioConnectionSessionReported = 447,
2484    AtomLeAudioBroadcastSessionReported = 448,
2485    AtomDreamUiEventReported = 449,
2486    AtomTaskManagerEventReported = 450,
2487    AtomCdmAssociationAction = 451,
2488    AtomMagnificationTripleTapAndHoldActivatedSessionReported = 452,
2489    AtomMagnificationFollowTypingFocusActivatedSessionReported = 453,
2490    AtomAccessibilityTextReadingOptionsChanged = 454,
2491    AtomWifiSetupFailureCrashReported = 455,
2492    AtomUwbDeviceErrorReported = 456,
2493    AtomIsolatedCompilationScheduled = 457,
2494    AtomIsolatedCompilationEnded = 458,
2495    AtomOnsOpportunisticEsimProvisioningComplete = 459,
2496    AtomSystemServerPreWatchdogOccurred = 460,
2497    AtomTelephonyAnomalyDetected = 461,
2498    AtomLetterboxPositionChanged = 462,
2499    AtomRemoteKeyProvisioningAttempt = 463,
2500    AtomRemoteKeyProvisioningNetworkInfo = 464,
2501    AtomRemoteKeyProvisioningTiming = 465,
2502    AtomMediaoutputOpInteractionReport = 466,
2503    AtomSyncExemptionOccurred = 468,
2504    AtomAutofillPresentationEventReported = 469,
2505    AtomDockStateChanged = 470,
2506    AtomSafetySourceStateCollected = 471,
2507    AtomSafetyCenterSystemEventReported = 472,
2508    AtomSafetyCenterInteractionReported = 473,
2509    AtomSettingsProviderSettingChanged = 474,
2510    AtomBroadcastDeliveryEventReported = 475,
2511    AtomServiceRequestEventReported = 476,
2512    AtomProviderAcquisitionEventReported = 477,
2513    AtomBluetoothDeviceNameReported = 478,
2514    AtomCbConfigUpdated = 479,
2515    AtomCbModuleErrorReported = 480,
2516    AtomCbServiceFeatureChanged = 481,
2517    AtomCbReceiverFeatureChanged = 482,
2518    AtomPrivacySignalNotificationInteraction = 484,
2519    AtomPrivacySignalIssueCardInteraction = 485,
2520    AtomPrivacySignalsJobFailure = 486,
2521    AtomVibrationReported = 487,
2522    AtomUwbRangingStart = 489,
2523    AtomAppCompactedV2 = 491,
2524    AtomDisplayBrightnessChanged = 494,
2525    AtomActivityActionBlocked = 495,
2526    AtomNetworkDnsServerSupportReported = 504,
2527    AtomVmBooted = 505,
2528    AtomVmExited = 506,
2529    AtomAmbientBrightnessStatsReported = 507,
2530    AtomMediametricsSpatializercapabilitiesReported = 508,
2531    AtomMediametricsSpatializerdeviceenabledReported = 509,
2532    AtomMediametricsHeadtrackerdeviceenabledReported = 510,
2533    AtomMediametricsHeadtrackerdevicesupportedReported = 511,
2534    AtomHearingAidInfoReported = 513,
2535    AtomDeviceWideJobConstraintChanged = 514,
2536    AtomAmbientModeChanged = 515,
2537    AtomAnrLatencyReported = 516,
2538    AtomResourceApiInfo = 517,
2539    AtomSystemDefaultNetworkChanged = 518,
2540    AtomIwlanSetupDataCallResultReported = 519,
2541    AtomIwlanPdnDisconnectedReasonReported = 520,
2542    AtomAirplaneModeSessionReported = 521,
2543    AtomVmCpuStatusReported = 522,
2544    AtomVmMemStatusReported = 523,
2545    AtomPackageInstallationSessionReported = 524,
2546    AtomDefaultNetworkRematchInfo = 525,
2547    AtomNetworkSelectionPerformance = 526,
2548    AtomNetworkNsdReported = 527,
2549    AtomBluetoothDisconnectionReasonReported = 529,
2550    AtomBluetoothLocalVersionsReported = 530,
2551    AtomBluetoothRemoteSupportedFeaturesReported = 531,
2552    AtomBluetoothLocalSupportedFeaturesReported = 532,
2553    AtomBluetoothGattAppInfo = 533,
2554    AtomBrightnessConfigurationUpdated = 534,
2555    AtomWearMediaOutputSwitcherLaunched = 538,
2556    AtomWearMediaOutputSwitcherFinished = 539,
2557    AtomWearMediaOutputSwitcherConnectionReported = 540,
2558    AtomWearMediaOutputSwitcherDeviceScanTriggered = 541,
2559    AtomWearMediaOutputSwitcherFirstDeviceScanLatency = 542,
2560    AtomWearMediaOutputSwitcherConnectDeviceLatency = 543,
2561    AtomPackageManagerSnapshotReported = 544,
2562    AtomPackageManagerAppsFilterCacheBuildReported = 545,
2563    AtomPackageManagerAppsFilterCacheUpdateReported = 546,
2564    AtomLauncherImpressionEvent = 547,
2565    AtomWearMediaOutputSwitcherAllDevicesScanLatency = 549,
2566    AtomWsWatchFaceEdited = 551,
2567    AtomWsWatchFaceFavoriteActionReported = 552,
2568    AtomWsWatchFaceSetActionReported = 553,
2569    AtomPackageUninstallationReported = 554,
2570    AtomGameModeChanged = 555,
2571    AtomGameModeConfigurationChanged = 556,
2572    AtomBedtimeModeStateChanged = 557,
2573    AtomNetworkSliceSessionEnded = 558,
2574    AtomNetworkSliceDailyDataUsageReported = 559,
2575    AtomNfcTagTypeOccurred = 560,
2576    AtomNfcAidConflictOccurred = 561,
2577    AtomNfcReaderConflictOccurred = 562,
2578    AtomWsTileListChanged = 563,
2579    AtomGetTypeAccessedWithoutPermission = 564,
2580    AtomMobileBundledAppInfoGathered = 566,
2581    AtomWsWatchFaceComplicationSetChanged = 567,
2582    AtomMediaDrmCreated = 568,
2583    AtomMediaDrmErrored = 569,
2584    AtomMediaDrmSessionOpened = 570,
2585    AtomMediaDrmSessionClosed = 571,
2586    AtomUserSelectedResolution = 572,
2587    AtomUnsafeIntentEventReported = 573,
2588    AtomPerformanceHintSessionReported = 574,
2589    AtomMediametricsMidiDeviceCloseReported = 576,
2590    AtomBiometricTouchReported = 577,
2591    AtomHotwordAudioEgressEventReported = 578,
2592    AtomLocationEnabledStateChanged = 580,
2593    AtomImeRequestFinished = 581,
2594    AtomUsbComplianceWarningsReported = 582,
2595    AtomAppSupportedLocalesChanged = 583,
2596    AtomMediaProviderVolumeRecoveryReported = 586,
2597    AtomBiometricPropertiesCollected = 587,
2598    AtomKernelWakeupAttributed = 588,
2599    AtomScreenStateChangedV2 = 589,
2600    AtomWsBackupActionReported = 590,
2601    AtomWsRestoreActionReported = 591,
2602    AtomDeviceLogAccessEventReported = 592,
2603    AtomMediaSessionUpdated = 594,
2604    AtomWearOobeStateChanged = 595,
2605    AtomWsNotificationUpdated = 596,
2606    AtomNetworkValidationFailureStatsDailyReported = 601,
2607    AtomWsComplicationTapped = 602,
2608    AtomWsNotificationBlocking = 780,
2609    AtomWsNotificationBridgemodeUpdated = 822,
2610    AtomWsNotificationDismissalActioned = 823,
2611    AtomWsNotificationActioned = 824,
2612    AtomWsNotificationLatency = 880,
2613    AtomWifiBytesTransfer = 10000,
2614    AtomWifiBytesTransferByFgBg = 10001,
2615    AtomMobileBytesTransfer = 10002,
2616    AtomMobileBytesTransferByFgBg = 10003,
2617    AtomBluetoothBytesTransfer = 10006,
2618    AtomKernelWakelock = 10004,
2619    AtomSubsystemSleepState = 10005,
2620    AtomCpuTimePerUid = 10009,
2621    AtomCpuTimePerUidFreq = 10010,
2622    AtomWifiActivityInfo = 10011,
2623    AtomModemActivityInfo = 10012,
2624    AtomBluetoothActivityInfo = 10007,
2625    AtomProcessMemoryState = 10013,
2626    AtomSystemElapsedRealtime = 10014,
2627    AtomSystemUptime = 10015,
2628    AtomCpuActiveTime = 10016,
2629    AtomCpuClusterTime = 10017,
2630    AtomDiskSpace = 10018,
2631    AtomRemainingBatteryCapacity = 10019,
2632    AtomFullBatteryCapacity = 10020,
2633    AtomTemperature = 10021,
2634    AtomBinderCalls = 10022,
2635    AtomBinderCallsExceptions = 10023,
2636    AtomLooperStats = 10024,
2637    AtomDiskStats = 10025,
2638    AtomDirectoryUsage = 10026,
2639    AtomAppSize = 10027,
2640    AtomCategorySize = 10028,
2641    AtomProcStats = 10029,
2642    AtomBatteryVoltage = 10030,
2643    AtomNumFingerprintsEnrolled = 10031,
2644    AtomDiskIo = 10032,
2645    AtomPowerProfile = 10033,
2646    AtomProcStatsPkgProc = 10034,
2647    AtomProcessCpuTime = 10035,
2648    AtomCpuTimePerThreadFreq = 10037,
2649    AtomOnDevicePowerMeasurement = 10038,
2650    AtomDeviceCalculatedPowerUse = 10039,
2651    AtomProcessMemoryHighWaterMark = 10042,
2652    AtomBatteryLevel = 10043,
2653    AtomBuildInformation = 10044,
2654    AtomBatteryCycleCount = 10045,
2655    AtomDebugElapsedClock = 10046,
2656    AtomDebugFailingElapsedClock = 10047,
2657    AtomNumFacesEnrolled = 10048,
2658    AtomRoleHolder = 10049,
2659    AtomDangerousPermissionState = 10050,
2660    AtomTrainInfo = 10051,
2661    AtomTimeZoneDataInfo = 10052,
2662    AtomExternalStorageInfo = 10053,
2663    AtomGpuStatsGlobalInfo = 10054,
2664    AtomGpuStatsAppInfo = 10055,
2665    AtomSystemIonHeapSize = 10056,
2666    AtomAppsOnExternalStorageInfo = 10057,
2667    AtomFaceSettings = 10058,
2668    AtomCoolingDevice = 10059,
2669    AtomAppOps = 10060,
2670    AtomProcessSystemIonHeapSize = 10061,
2671    AtomSurfaceflingerStatsGlobalInfo = 10062,
2672    AtomSurfaceflingerStatsLayerInfo = 10063,
2673    AtomProcessMemorySnapshot = 10064,
2674    AtomVmsClientStats = 10065,
2675    AtomNotificationRemoteViews = 10066,
2676    AtomDangerousPermissionStateSampled = 10067,
2677    AtomGraphicsStats = 10068,
2678    AtomRuntimeAppOpAccess = 10069,
2679    AtomIonHeapSize = 10070,
2680    AtomPackageNotificationPreferences = 10071,
2681    AtomPackageNotificationChannelPreferences = 10072,
2682    AtomPackageNotificationChannelGroupPreferences = 10073,
2683    AtomGnssStats = 10074,
2684    AtomAttributedAppOps = 10075,
2685    AtomVoiceCallSession = 10076,
2686    AtomVoiceCallRatUsage = 10077,
2687    AtomSimSlotState = 10078,
2688    AtomSupportedRadioAccessFamily = 10079,
2689    AtomSettingSnapshot = 10080,
2690    AtomBlobInfo = 10081,
2691    AtomDataUsageBytesTransfer = 10082,
2692    AtomBytesTransferByTagAndMetered = 10083,
2693    AtomDndModeRule = 10084,
2694    AtomGeneralExternalStorageAccessStats = 10085,
2695    AtomIncomingSms = 10086,
2696    AtomOutgoingSms = 10087,
2697    AtomCarrierIdTableVersion = 10088,
2698    AtomDataCallSession = 10089,
2699    AtomCellularServiceState = 10090,
2700    AtomCellularDataServiceSwitch = 10091,
2701    AtomSystemMemory = 10092,
2702    AtomImsRegistrationTermination = 10093,
2703    AtomImsRegistrationStats = 10094,
2704    AtomCpuTimePerClusterFreq = 10095,
2705    AtomCpuCyclesPerUidCluster = 10096,
2706    AtomDeviceRotatedData = 10097,
2707    AtomCpuCyclesPerThreadGroupCluster = 10098,
2708    AtomMediaDrmActivityInfo = 10099,
2709    AtomOemManagedBytesTransfer = 10100,
2710    AtomGnssPowerStats = 10101,
2711    AtomTimeZoneDetectorState = 10102,
2712    AtomKeystore2StorageStats = 10103,
2713    AtomRkpPoolStats = 10104,
2714    AtomProcessDmabufMemory = 10105,
2715    AtomPendingAlarmInfo = 10106,
2716    AtomUserLevelHibernatedApps = 10107,
2717    AtomLauncherLayoutSnapshot = 10108,
2718    AtomGlobalHibernatedApps = 10109,
2719    AtomInputEventLatencySketch = 10110,
2720    AtomBatteryUsageStatsBeforeReset = 10111,
2721    AtomBatteryUsageStatsSinceReset = 10112,
2722    AtomBatteryUsageStatsSinceResetUsingPowerProfileModel = 10113,
2723    AtomInstalledIncrementalPackage = 10114,
2724    AtomTelephonyNetworkRequests = 10115,
2725    AtomAppSearchStorageInfo = 10116,
2726    AtomVmstat = 10117,
2727    AtomKeystore2KeyCreationWithGeneralInfo = 10118,
2728    AtomKeystore2KeyCreationWithAuthInfo = 10119,
2729    AtomKeystore2KeyCreationWithPurposeAndModesInfo = 10120,
2730    AtomKeystore2AtomWithOverflow = 10121,
2731    AtomKeystore2KeyOperationWithPurposeAndModesInfo = 10122,
2732    AtomKeystore2KeyOperationWithGeneralInfo = 10123,
2733    AtomRkpErrorStats = 10124,
2734    AtomKeystore2CrashStats = 10125,
2735    AtomVendorApexInfo = 10126,
2736    AtomAccessibilityShortcutStats = 10127,
2737    AtomAccessibilityFloatingMenuStats = 10128,
2738    AtomDataUsageBytesTransferV2 = 10129,
2739    AtomMediaCapabilities = 10130,
2740    AtomCarWatchdogSystemIoUsageSummary = 10131,
2741    AtomCarWatchdogUidIoUsageSummary = 10132,
2742    AtomImsRegistrationFeatureTagStats = 10133,
2743    AtomRcsClientProvisioningStats = 10134,
2744    AtomRcsAcsProvisioningStats = 10135,
2745    AtomSipDelegateStats = 10136,
2746    AtomSipTransportFeatureTagStats = 10137,
2747    AtomSipMessageResponse = 10138,
2748    AtomSipTransportSession = 10139,
2749    AtomImsDedicatedBearerListenerEvent = 10140,
2750    AtomImsDedicatedBearerEvent = 10141,
2751    AtomImsRegistrationServiceDescStats = 10142,
2752    AtomUceEventStats = 10143,
2753    AtomPresenceNotifyEvent = 10144,
2754    AtomGbaEvent = 10145,
2755    AtomPerSimStatus = 10146,
2756    AtomGpuWorkPerUid = 10147,
2757    AtomPersistentUriPermissionsAmountPerPackage = 10148,
2758    AtomSignedPartitionInfo = 10149,
2759    AtomPinnedFileSizesPerPackage = 10150,
2760    AtomPendingIntentsPerPackage = 10151,
2761    AtomUserInfo = 10152,
2762    AtomTelephonyNetworkRequestsV2 = 10153,
2763    AtomDeviceTelephonyProperties = 10154,
2764    AtomRemoteKeyProvisioningErrorCounts = 10155,
2765    AtomSafetyState = 10156,
2766    AtomIncomingMms = 10157,
2767    AtomOutgoingMms = 10158,
2768    AtomMultiUserInfo = 10160,
2769    AtomNetworkBpfMapInfo = 10161,
2770    AtomOutgoingShortCodeSms = 10162,
2771    AtomConnectivityStateSample = 10163,
2772    AtomNetworkSelectionRematchReasonsInfo = 10164,
2773    AtomGameModeInfo = 10165,
2774    AtomGameModeConfiguration = 10166,
2775    AtomGameModeListener = 10167,
2776    AtomNetworkSliceRequestCount = 10168,
2777    AtomWsTileSnapshot = 10169,
2778    AtomWsActiveWatchFaceComplicationSetSnapshot = 10170,
2779    AtomProcessState = 10171,
2780    AtomProcessAssociation = 10172,
2781    AtomAdpfSystemComponentInfo = 10173,
2782    AtomNotificationMemoryUse = 10174,
2783    AtomHdrCapabilities = 10175,
2784    AtomWsFavouriteWatchFaceListSnapshot = 10176,
2785    AtomAccessibilityCheckResultReported = 910,
2786    AtomAdaptiveAuthUnlockAfterLockReported = 820,
2787    AtomThermalStatusCalled = 772,
2788    AtomThermalHeadroomCalled = 773,
2789    AtomThermalHeadroomThresholdsCalled = 774,
2790    AtomAdpfHintSessionTidCleanup = 839,
2791    AtomThermalHeadroomThresholds = 10201,
2792    AtomAdpfSessionSnapshot = 10218,
2793    AtomJsscriptengineLatencyReported = 483,
2794    AtomAdServicesApiCalled = 435,
2795    AtomAdServicesMesurementReportsUploaded = 436,
2796    AtomMobileDataDownloadFileGroupStatusReported = 490,
2797    AtomMobileDataDownloadDownloadResultReported = 502,
2798    AtomAdServicesSettingsUsageReported = 493,
2799    AtomBackgroundFetchProcessReported = 496,
2800    AtomUpdateCustomAudienceProcessReported = 497,
2801    AtomRunAdBiddingProcessReported = 498,
2802    AtomRunAdScoringProcessReported = 499,
2803    AtomRunAdSelectionProcessReported = 500,
2804    AtomRunAdBiddingPerCaProcessReported = 501,
2805    AtomMobileDataDownloadFileGroupStorageStatsReported = 503,
2806    AtomAdServicesMeasurementRegistrations = 512,
2807    AtomAdServicesGetTopicsReported = 535,
2808    AtomAdServicesEpochComputationGetTopTopicsReported = 536,
2809    AtomAdServicesEpochComputationClassifierReported = 537,
2810    AtomAdServicesBackCompatGetTopicsReported = 598,
2811    AtomAdServicesBackCompatEpochComputationClassifierReported = 599,
2812    AtomAdServicesMeasurementDebugKeys = 640,
2813    AtomAdServicesErrorReported = 662,
2814    AtomAdServicesBackgroundJobsExecutionReported = 663,
2815    AtomAdServicesMeasurementDelayedSourceRegistration = 673,
2816    AtomAdServicesMeasurementAttribution = 674,
2817    AtomAdServicesMeasurementJobs = 675,
2818    AtomAdServicesMeasurementWipeout = 676,
2819    AtomAdServicesMeasurementAdIdMatchForDebugKeys = 695,
2820    AtomAdServicesEnrollmentDataStored = 697,
2821    AtomAdServicesEnrollmentFileDownloaded = 698,
2822    AtomAdServicesEnrollmentMatched = 699,
2823    AtomAdServicesConsentMigrated = 702,
2824    AtomAdServicesEnrollmentFailed = 714,
2825    AtomAdServicesMeasurementClickVerification = 756,
2826    AtomAdServicesEncryptionKeyFetched = 765,
2827    AtomAdServicesEncryptionKeyDbTransactionEnded = 766,
2828    AtomDestinationRegisteredBeacons = 767,
2829    AtomReportInteractionApiCalled = 768,
2830    AtomInteractionReportingTableCleared = 769,
2831    AtomAppManifestConfigHelperCalled = 788,
2832    AtomAdFilteringProcessJoinCaReported = 793,
2833    AtomAdFilteringProcessAdSelectionReported = 794,
2834    AtomAdCounterHistogramUpdaterReported = 795,
2835    AtomSignatureVerification = 807,
2836    AtomKAnonImmediateSignJoinStatusReported = 808,
2837    AtomKAnonBackgroundJobStatusReported = 809,
2838    AtomKAnonInitializeStatusReported = 810,
2839    AtomKAnonSignStatusReported = 811,
2840    AtomKAnonJoinStatusReported = 812,
2841    AtomKAnonKeyAttestationStatusReported = 813,
2842    AtomGetAdSelectionDataApiCalled = 814,
2843    AtomGetAdSelectionDataBuyerInputGenerated = 815,
2844    AtomBackgroundJobSchedulingReported = 834,
2845    AtomTopicsEncryptionEpochComputationReported = 840,
2846    AtomTopicsEncryptionGetTopicsReported = 841,
2847    AtomAdservicesShellCommandCalled = 842,
2848    AtomUpdateSignalsApiCalled = 843,
2849    AtomEncodingJobRun = 844,
2850    AtomEncodingJsFetch = 845,
2851    AtomEncodingJsExecution = 846,
2852    AtomPersistAdSelectionResultCalled = 847,
2853    AtomServerAuctionKeyFetchCalled = 848,
2854    AtomServerAuctionBackgroundKeyFetchEnabled = 849,
2855    AtomAdServicesMeasurementProcessOdpRegistration = 864,
2856    AtomAdServicesMeasurementNotifyRegistrationToOdp = 865,
2857    AtomSelectAdsFromOutcomesApiCalled = 876,
2858    AtomReportImpressionApiCalled = 877,
2859    AtomAdServicesEnrollmentTransactionStats = 885,
2860    AtomAdServicesCobaltLoggerEventReported = 902,
2861    AtomAdServicesCobaltPeriodicJobEventReported = 903,
2862    AtomUpdateSignalsProcessReported = 905,
2863    AtomTopicsScheduleEpochJobSettingReported = 930,
2864    AtomAiWallpapersButtonPressed = 706,
2865    AtomAiWallpapersTemplateSelected = 707,
2866    AtomAiWallpapersTermSelected = 708,
2867    AtomAiWallpapersWallpaperSet = 709,
2868    AtomAiWallpapersSessionSummary = 710,
2869    AtomApexInstallationRequested = 732,
2870    AtomApexInstallationStaged = 733,
2871    AtomApexInstallationEnded = 734,
2872    AtomAppSearchSetSchemaStatsReported = 385,
2873    AtomAppSearchSchemaMigrationStatsReported = 579,
2874    AtomAppSearchUsageSearchIntentStatsReported = 825,
2875    AtomAppSearchUsageSearchIntentRawQueryStatsReported = 826,
2876    AtomAppSearchAppsIndexerStatsReported = 909,
2877    AtomArtDatumReported = 332,
2878    AtomArtDeviceDatumReported = 550,
2879    AtomArtDatumDeltaReported = 565,
2880    AtomArtDex2oatReported = 929,
2881    AtomArtDeviceStatus = 10205,
2882    AtomBackgroundDexoptJobEnded = 467,
2883    AtomPrerebootDexoptJobEnded = 883,
2884    AtomOdrefreshReported = 366,
2885    AtomOdsignReported = 548,
2886    AtomAutofillUiEventReported = 603,
2887    AtomAutofillFillRequestReported = 604,
2888    AtomAutofillFillResponseReported = 605,
2889    AtomAutofillSaveEventReported = 606,
2890    AtomAutofillSessionCommitted = 607,
2891    AtomAutofillFieldClassificationEventReported = 659,
2892    AtomCarRecentsEventReported = 770,
2893    AtomCarCalmModeEventReported = 797,
2894    AtomCarWakeupFromSuspendReported = 852,
2895    AtomPluginInitialized = 655,
2896    AtomBluetoothHashedDeviceNameReported = 613,
2897    AtomBluetoothL2capCocClientConnection = 614,
2898    AtomBluetoothL2capCocServerConnection = 615,
2899    AtomBluetoothLeSessionConnected = 656,
2900    AtomRestrictedBluetoothDeviceNameReported = 666,
2901    AtomBluetoothProfileConnectionAttempted = 696,
2902    AtomBluetoothContentProfileErrorReported = 781,
2903    AtomBluetoothRfcommConnectionAttempted = 782,
2904    AtomRemoteDeviceInformationWithMetricId = 862,
2905    AtomLeAppScanStateChanged = 870,
2906    AtomLeRadioScanStopped = 871,
2907    AtomLeScanResultReceived = 872,
2908    AtomLeScanAbused = 873,
2909    AtomLeAdvStateChanged = 874,
2910    AtomLeAdvErrorReported = 875,
2911    AtomA2dpSessionReported = 904,
2912    AtomBluetoothCrossLayerEventReported = 916,
2913    AtomBroadcastAudioSessionReported = 927,
2914    AtomBroadcastAudioSyncReported = 928,
2915    AtomBluetoothRfcommConnectionReportedAtClose = 982,
2916    AtomBluetoothLeConnection = 988,
2917    AtomBroadcastSent = 922,
2918    AtomCameraFeatureCombinationQueryEvent = 900,
2919    AtomCertificateTransparencyLogListStateChanged = 934,
2920    AtomCertificateTransparencyLogListUpdateFailed = 972,
2921    AtomDailyKeepaliveInfoReported = 650,
2922    AtomNetworkRequestStateChanged = 779,
2923    AtomTetheringActiveSessionsReported = 925,
2924    AtomNetworkStatsRecorderFileOperated = 783,
2925    AtomCoreNetworkingTerribleErrorOccurred = 979,
2926    AtomApfSessionInfoReported = 777,
2927    AtomIpClientRaInfoReported = 778,
2928    AtomVpnConnectionStateChanged = 850,
2929    AtomVpnConnectionReported = 851,
2930    AtomCpuPolicy = 10199,
2931    AtomCredentialManagerApiCalled = 585,
2932    AtomCredentialManagerInitPhaseReported = 651,
2933    AtomCredentialManagerCandidatePhaseReported = 652,
2934    AtomCredentialManagerFinalPhaseReported = 653,
2935    AtomCredentialManagerTotalReported = 667,
2936    AtomCredentialManagerFinalnouidReported = 668,
2937    AtomCredentialManagerGetReported = 669,
2938    AtomCredentialManagerAuthClickReported = 670,
2939    AtomCredentialManagerApiv2Called = 671,
2940    AtomCronetEngineCreated = 703,
2941    AtomCronetTrafficReported = 704,
2942    AtomCronetEngineBuilderInitialized = 762,
2943    AtomCronetHttpFlagsInitialized = 763,
2944    AtomCronetInitialized = 764,
2945    AtomDesktopModeUiChanged = 818,
2946    AtomDesktopModeSessionTaskUpdate = 819,
2947    AtomDesktopModeTaskSizeUpdated = 935,
2948    AtomDeviceLockCheckInRequestReported = 726,
2949    AtomDeviceLockProvisioningCompleteReported = 727,
2950    AtomDeviceLockKioskAppRequestReported = 728,
2951    AtomDeviceLockCheckInRetryReported = 789,
2952    AtomDeviceLockProvisionFailureReported = 790,
2953    AtomDeviceLockLockUnlockDeviceFailureReported = 791,
2954    AtomDevicePolicyManagementMode = 10216,
2955    AtomDevicePolicyState = 10217,
2956    AtomDisplayModeDirectorVoteChanged = 792,
2957    AtomExternalDisplayStateChanged = 806,
2958    AtomDndStateChanged = 657,
2959    AtomDreamSettingChanged = 705,
2960    AtomDreamSettingSnapshot = 10192,
2961    AtomExpressEventReported = 528,
2962    AtomExpressHistogramSampleReported = 593,
2963    AtomExpressUidEventReported = 644,
2964    AtomExpressUidHistogramSampleReported = 658,
2965    AtomFederatedComputeApiCalled = 712,
2966    AtomFederatedComputeTrainingEventReported = 771,
2967    AtomExampleIteratorNextLatencyReported = 838,
2968    AtomFullScreenIntentLaunched = 631,
2969    AtomBalAllowed = 632,
2970    AtomInTaskActivityStarted = 685,
2971    AtomDeviceOrientationChanged = 906,
2972    AtomCachedAppsHighWatermark = 10189,
2973    AtomStylusPredictionMetricsReported = 718,
2974    AtomUserRiskEventReported = 725,
2975    AtomMediaProjectionStateChanged = 729,
2976    AtomMediaProjectionTargetChanged = 730,
2977    AtomExcessiveBinderProxyCountReported = 853,
2978    AtomProxyBytesTransferByFgBg = 10200,
2979    AtomMobileBytesTransferByProcState = 10204,
2980    AtomBiometricFrrNotification = 817,
2981    AtomSensitiveContentMediaProjectionSession = 830,
2982    AtomSensitiveNotificationAppProtectionSession = 831,
2983    AtomSensitiveNotificationAppProtectionApplied = 832,
2984    AtomSensitiveNotificationRedaction = 833,
2985    AtomSensitiveContentAppProtection = 835,
2986    AtomAppRestrictionStateChanged = 866,
2987    AtomBatteryUsageStatsPerUid = 10209,
2988    AtomPostgcMemorySnapshot = 924,
2989    AtomPowerSaveTempAllowlistChanged = 926,
2990    AtomAppOpAccessTracked = 931,
2991    AtomContentOrFileUriEventReported = 933,
2992    AtomApplicationGrammaticalInflectionChanged = 584,
2993    AtomSystemGrammaticalInflectionChanged = 816,
2994    AtomBatteryHealth = 10220,
2995    AtomHdmiEarcStatusReported = 701,
2996    AtomHdmiSoundbarModeStatusReported = 724,
2997    AtomHealthConnectApiCalled = 616,
2998    AtomHealthConnectUsageStats = 617,
2999    AtomHealthConnectStorageStats = 618,
3000    AtomHealthConnectApiInvoked = 643,
3001    AtomExerciseRouteApiCalled = 654,
3002    AtomHealthConnectExportInvoked = 907,
3003    AtomHealthConnectImportInvoked = 918,
3004    AtomHealthConnectExportImportStatsReported = 919,
3005    AtomHealthConnectUiImpression = 623,
3006    AtomHealthConnectUiInteraction = 624,
3007    AtomHealthConnectAppOpenedReported = 625,
3008    AtomHotwordEgressSizeAtomReported = 761,
3009    AtomIkeSessionTerminated = 678,
3010    AtomIkeLivenessCheckSessionValidated = 760,
3011    AtomNegotiatedSecurityAssociation = 821,
3012    AtomKeyboardConfigured = 682,
3013    AtomKeyboardSystemsEventReported = 683,
3014    AtomInputdeviceUsageReported = 686,
3015    AtomInputEventLatencyReported = 932,
3016    AtomTouchpadUsage = 10191,
3017    AtomKernelOomKillOccurred = 754,
3018    AtomEmergencyStateChanged = 633,
3019    AtomChreSignificantMotionStateChanged = 868,
3020    AtomPopulationDensityProviderLoadingReported = 1002,
3021    AtomDensityBasedCoarseLocationsUsageReported = 1003,
3022    AtomDensityBasedCoarseLocationsProviderQueryReported = 1004,
3023    AtomMediaCodecReclaimRequestCompleted = 600,
3024    AtomMediaCodecStarted = 641,
3025    AtomMediaCodecStopped = 642,
3026    AtomMediaCodecRendered = 684,
3027    AtomMediaEditingEndedReported = 798,
3028    AtomMteState = 10181,
3029    AtomMicroxrDeviceBootCompleteReported = 901,
3030    AtomNfcObserveModeStateChanged = 855,
3031    AtomNfcFieldChanged = 856,
3032    AtomNfcPollingLoopNotificationReported = 857,
3033    AtomNfcProprietaryCapabilitiesReported = 858,
3034    AtomOndevicepersonalizationApiCalled = 711,
3035    AtomComponentStateChangedReported = 863,
3036    AtomPdfLoadReported = 859,
3037    AtomPdfApiUsageReported = 860,
3038    AtomPdfSearchReported = 861,
3039    AtomPressureStallInformation = 10229,
3040    AtomPermissionRationaleDialogViewed = 645,
3041    AtomPermissionRationaleDialogActionReported = 646,
3042    AtomAppDataSharingUpdatesNotificationInteraction = 647,
3043    AtomAppDataSharingUpdatesFragmentViewed = 648,
3044    AtomAppDataSharingUpdatesFragmentActionReported = 649,
3045    AtomEnhancedConfirmationDialogResultReported = 827,
3046    AtomEnhancedConfirmationRestrictionCleared = 828,
3047    AtomPhotopickerSessionInfoReported = 886,
3048    AtomPhotopickerApiInfoReported = 887,
3049    AtomPhotopickerUiEventLogged = 888,
3050    AtomPhotopickerMediaItemStatusReported = 889,
3051    AtomPhotopickerPreviewInfoLogged = 890,
3052    AtomPhotopickerMenuInteractionLogged = 891,
3053    AtomPhotopickerBannerInteractionLogged = 892,
3054    AtomPhotopickerMediaLibraryInfoLogged = 893,
3055    AtomPhotopickerPageInfoLogged = 894,
3056    AtomPhotopickerMediaGridSyncInfoReported = 895,
3057    AtomPhotopickerAlbumSyncInfoReported = 896,
3058    AtomPhotopickerSearchInfoReported = 897,
3059    AtomSearchDataExtractionDetailsReported = 898,
3060    AtomEmbeddedPhotopickerInfoReported = 899,
3061    AtomAtom9999 = 9999,
3062    AtomAtom99999 = 99999,
3063    AtomScreenOffReported = 776,
3064    AtomScreenTimeoutOverrideReported = 836,
3065    AtomScreenInteractiveSessionReported = 837,
3066    AtomScreenDimReported = 867,
3067    AtomMediaProviderDatabaseRollbackReported = 784,
3068    AtomBackupSetupStatusReported = 785,
3069    AtomRangingSessionConfigured = 993,
3070    AtomRangingSessionStarted = 994,
3071    AtomRangingSessionClosed = 995,
3072    AtomRangingTechnologyStarted = 996,
3073    AtomRangingTechnologyStopped = 997,
3074    AtomRkpdPoolStats = 664,
3075    AtomRkpdClientOperation = 665,
3076    AtomSandboxApiCalled = 488,
3077    AtomSandboxActivityEventOccurred = 735,
3078    AtomSdkSandboxRestrictedAccessInSession = 796,
3079    AtomSandboxSdkStorage = 10159,
3080    AtomSelinuxAuditLog = 799,
3081    AtomSettingsSpaReported = 622,
3082    AtomTestExtensionAtomReported = 660,
3083    AtomTestRestrictedAtomReported = 672,
3084    AtomStatsSocketLossReported = 752,
3085    AtomLockscreenShortcutSelected = 611,
3086    AtomLockscreenShortcutTriggered = 612,
3087    AtomLauncherImpressionEventV2 = 716,
3088    AtomDisplaySwitchLatencyTracked = 753,
3089    AtomNotificationListenerService = 829,
3090    AtomNavHandleTouchPoints = 869,
3091    AtomCommunalHubWidgetEventReported = 908,
3092    AtomCommunalHubSnapshot = 10226,
3093    AtomEmergencyNumberDialed = 637,
3094    AtomCallStats = 10221,
3095    AtomCallAudioRouteStats = 10222,
3096    AtomTelecomApiStats = 10223,
3097    AtomTelecomErrorStats = 10224,
3098    AtomCellularRadioPowerStateChanged = 713,
3099    AtomEmergencyNumbersInfo = 10180,
3100    AtomDataNetworkValidation = 10207,
3101    AtomDataRatStateChanged = 854,
3102    AtomConnectedChannelChanged = 882,
3103    AtomIwlanUnderlyingNetworkValidationResultReported = 923,
3104    AtomQualifiedRatListChanged = 634,
3105    AtomQnsImsCallDropStats = 635,
3106    AtomQnsFallbackRestrictionChanged = 636,
3107    AtomQnsRatPreferenceMismatchInfo = 10177,
3108    AtomQnsHandoverTimeMillis = 10178,
3109    AtomQnsHandoverPingpong = 10179,
3110    AtomSatelliteController = 10182,
3111    AtomSatelliteSession = 10183,
3112    AtomSatelliteIncomingDatagram = 10184,
3113    AtomSatelliteOutgoingDatagram = 10185,
3114    AtomSatelliteProvision = 10186,
3115    AtomSatelliteSosMessageRecommender = 10187,
3116    AtomCarrierRoamingSatelliteSession = 10211,
3117    AtomCarrierRoamingSatelliteControllerStats = 10212,
3118    AtomControllerStatsPerPackage = 10213,
3119    AtomSatelliteEntitlement = 10214,
3120    AtomSatelliteConfigUpdater = 10215,
3121    AtomSatelliteAccessController = 10219,
3122    AtomCellularIdentifierDisclosed = 800,
3123    AtomThreadnetworkTelemetryDataReported = 738,
3124    AtomThreadnetworkTopoEntryRepeated = 739,
3125    AtomThreadnetworkDeviceInfoReported = 740,
3126    AtomBootIntegrityInfoReported = 775,
3127    AtomTvLowPowerStandbyPolicy = 679,
3128    AtomExternalTvInputEvent = 717,
3129    AtomTestUprobestatsAtomReported = 915,
3130    AtomUwbActivityInfo = 10188,
3131    AtomMediatorUpdated = 721,
3132    AtomSysproxyBluetoothBytesTransfer = 10196,
3133    AtomSysproxyConnectionUpdated = 786,
3134    AtomWearCompanionConnectionState = 921,
3135    AtomMediaActionReported = 608,
3136    AtomMediaControlsLaunched = 609,
3137    AtomMediaSessionStateChanged = 677,
3138    AtomWearMediaOutputSwitcherDeviceScanApiLatency = 757,
3139    AtomWearMediaOutputSwitcherSassDeviceUnavailable = 758,
3140    AtomWearMediaOutputSwitcherFastpairApiTimeout = 759,
3141    AtomWearModeStateChanged = 715,
3142    AtomRendererInitialized = 736,
3143    AtomSchemaVersionReceived = 737,
3144    AtomLayoutInspected = 741,
3145    AtomLayoutExpressionInspected = 742,
3146    AtomLayoutAnimationsInspected = 743,
3147    AtomMaterialComponentsInspected = 744,
3148    AtomTileRequested = 745,
3149    AtomStateResponseReceived = 746,
3150    AtomTileResponseReceived = 747,
3151    AtomInflationFinished = 748,
3152    AtomInflationFailed = 749,
3153    AtomIgnoredInflationFailuresReported = 750,
3154    AtomDrawableRendered = 751,
3155    AtomWearTimeSyncRequested = 911,
3156    AtomWearTimeUpdateStarted = 912,
3157    AtomWearTimeSyncAttemptCompleted = 913,
3158    AtomWearTimeChanged = 914,
3159    AtomWearAdaptiveSuspendStatsReported = 619,
3160    AtomWearPowerAnomalyServiceOperationalStatsReported = 620,
3161    AtomWearPowerAnomalyServiceEventStatsReported = 621,
3162    AtomWsWearTimeSession = 610,
3163    AtomWsIncomingCallActionReported = 626,
3164    AtomWsCallDisconnectionReported = 627,
3165    AtomWsCallDurationReported = 628,
3166    AtomWsCallUserExperienceLatencyReported = 629,
3167    AtomWsCallInteractionReported = 630,
3168    AtomWsOnBodyStateChanged = 787,
3169    AtomWsWatchFaceRestrictedComplicationsImpacted = 802,
3170    AtomWsWatchFaceDefaultRestrictedComplicationsRemoved = 803,
3171    AtomWsComplicationsImpactedNotificationEventReported = 804,
3172    AtomWsRemoteEventUsageReported = 920,
3173    AtomWsBugreportRequested = 936,
3174    AtomWsBugreportTriggered = 937,
3175    AtomWsBugreportFinished = 938,
3176    AtomWsBugreportResultReceived = 939,
3177    AtomWsStandaloneModeSnapshot = 10197,
3178    AtomWsFavoriteWatchFaceSnapshot = 10206,
3179    AtomWsPhotosWatchFaceFeatureSnapshot = 10225,
3180    AtomWsWatchFaceCustomizationSnapshot = 10227,
3181    AtomWearPowerMenuOpened = 731,
3182    AtomWearAssistantOpened = 755,
3183    AtomFirstOverlayStateChanged = 917,
3184    AtomWifiAwareNdpReported = 638,
3185    AtomWifiAwareAttachReported = 639,
3186    AtomWifiSelfRecoveryTriggered = 661,
3187    AtomSoftApStarted = 680,
3188    AtomSoftApStopped = 681,
3189    AtomWifiLockReleased = 687,
3190    AtomWifiLockDeactivated = 688,
3191    AtomWifiConfigSaved = 689,
3192    AtomWifiAwareResourceUsingChanged = 690,
3193    AtomWifiAwareHalApiCalled = 691,
3194    AtomWifiLocalOnlyRequestReceived = 692,
3195    AtomWifiLocalOnlyRequestScanTriggered = 693,
3196    AtomWifiThreadTaskExecuted = 694,
3197    AtomWifiStateChanged = 700,
3198    AtomPnoScanStarted = 719,
3199    AtomPnoScanStopped = 720,
3200    AtomWifiIsUnusableReported = 722,
3201    AtomWifiApCapabilitiesReported = 723,
3202    AtomSoftApStateChanged = 805,
3203    AtomScorerPredictionResultReported = 884,
3204    AtomWifiAwareCapabilities = 10190,
3205    AtomWifiModuleInfo = 10193,
3206    AtomWifiSettingInfo = 10194,
3207    AtomWifiComplexSettingInfo = 10195,
3208    AtomWifiConfiguredNetworkInfo = 10198,
3209}
3210impl AtomId {
3211    /// String value of the enum field names used in the ProtoBuf definition.
3212    ///
3213    /// The values are not transformed in any way and thus are considered stable
3214    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
3215    pub fn as_str_name(&self) -> &'static str {
3216        match self {
3217            AtomId::AtomUnspecified => "ATOM_UNSPECIFIED",
3218            AtomId::AtomBleScanStateChanged => "ATOM_BLE_SCAN_STATE_CHANGED",
3219            AtomId::AtomProcessStateChanged => "ATOM_PROCESS_STATE_CHANGED",
3220            AtomId::AtomBleScanResultReceived => "ATOM_BLE_SCAN_RESULT_RECEIVED",
3221            AtomId::AtomSensorStateChanged => "ATOM_SENSOR_STATE_CHANGED",
3222            AtomId::AtomGpsScanStateChanged => "ATOM_GPS_SCAN_STATE_CHANGED",
3223            AtomId::AtomSyncStateChanged => "ATOM_SYNC_STATE_CHANGED",
3224            AtomId::AtomScheduledJobStateChanged => "ATOM_SCHEDULED_JOB_STATE_CHANGED",
3225            AtomId::AtomScreenBrightnessChanged => "ATOM_SCREEN_BRIGHTNESS_CHANGED",
3226            AtomId::AtomWakelockStateChanged => "ATOM_WAKELOCK_STATE_CHANGED",
3227            AtomId::AtomLongPartialWakelockStateChanged => "ATOM_LONG_PARTIAL_WAKELOCK_STATE_CHANGED",
3228            AtomId::AtomMobileRadioPowerStateChanged => "ATOM_MOBILE_RADIO_POWER_STATE_CHANGED",
3229            AtomId::AtomWifiRadioPowerStateChanged => "ATOM_WIFI_RADIO_POWER_STATE_CHANGED",
3230            AtomId::AtomActivityManagerSleepStateChanged => "ATOM_ACTIVITY_MANAGER_SLEEP_STATE_CHANGED",
3231            AtomId::AtomMemoryFactorStateChanged => "ATOM_MEMORY_FACTOR_STATE_CHANGED",
3232            AtomId::AtomExcessiveCpuUsageReported => "ATOM_EXCESSIVE_CPU_USAGE_REPORTED",
3233            AtomId::AtomCachedKillReported => "ATOM_CACHED_KILL_REPORTED",
3234            AtomId::AtomProcessMemoryStatReported => "ATOM_PROCESS_MEMORY_STAT_REPORTED",
3235            AtomId::AtomLauncherEvent => "ATOM_LAUNCHER_EVENT",
3236            AtomId::AtomBatterySaverModeStateChanged => "ATOM_BATTERY_SAVER_MODE_STATE_CHANGED",
3237            AtomId::AtomDeviceIdleModeStateChanged => "ATOM_DEVICE_IDLE_MODE_STATE_CHANGED",
3238            AtomId::AtomDeviceIdlingModeStateChanged => "ATOM_DEVICE_IDLING_MODE_STATE_CHANGED",
3239            AtomId::AtomAudioStateChanged => "ATOM_AUDIO_STATE_CHANGED",
3240            AtomId::AtomMediaCodecStateChanged => "ATOM_MEDIA_CODEC_STATE_CHANGED",
3241            AtomId::AtomCameraStateChanged => "ATOM_CAMERA_STATE_CHANGED",
3242            AtomId::AtomFlashlightStateChanged => "ATOM_FLASHLIGHT_STATE_CHANGED",
3243            AtomId::AtomUidProcessStateChanged => "ATOM_UID_PROCESS_STATE_CHANGED",
3244            AtomId::AtomProcessLifeCycleStateChanged => "ATOM_PROCESS_LIFE_CYCLE_STATE_CHANGED",
3245            AtomId::AtomScreenStateChanged => "ATOM_SCREEN_STATE_CHANGED",
3246            AtomId::AtomBatteryLevelChanged => "ATOM_BATTERY_LEVEL_CHANGED",
3247            AtomId::AtomChargingStateChanged => "ATOM_CHARGING_STATE_CHANGED",
3248            AtomId::AtomPluggedStateChanged => "ATOM_PLUGGED_STATE_CHANGED",
3249            AtomId::AtomInteractiveStateChanged => "ATOM_INTERACTIVE_STATE_CHANGED",
3250            AtomId::AtomTouchEventReported => "ATOM_TOUCH_EVENT_REPORTED",
3251            AtomId::AtomWakeupAlarmOccurred => "ATOM_WAKEUP_ALARM_OCCURRED",
3252            AtomId::AtomKernelWakeupReported => "ATOM_KERNEL_WAKEUP_REPORTED",
3253            AtomId::AtomWifiLockStateChanged => "ATOM_WIFI_LOCK_STATE_CHANGED",
3254            AtomId::AtomWifiSignalStrengthChanged => "ATOM_WIFI_SIGNAL_STRENGTH_CHANGED",
3255            AtomId::AtomWifiScanStateChanged => "ATOM_WIFI_SCAN_STATE_CHANGED",
3256            AtomId::AtomPhoneSignalStrengthChanged => "ATOM_PHONE_SIGNAL_STRENGTH_CHANGED",
3257            AtomId::AtomSettingChanged => "ATOM_SETTING_CHANGED",
3258            AtomId::AtomActivityForegroundStateChanged => "ATOM_ACTIVITY_FOREGROUND_STATE_CHANGED",
3259            AtomId::AtomIsolatedUidChanged => "ATOM_ISOLATED_UID_CHANGED",
3260            AtomId::AtomPacketWakeupOccurred => "ATOM_PACKET_WAKEUP_OCCURRED",
3261            AtomId::AtomWallClockTimeShifted => "ATOM_WALL_CLOCK_TIME_SHIFTED",
3262            AtomId::AtomAnomalyDetected => "ATOM_ANOMALY_DETECTED",
3263            AtomId::AtomAppBreadcrumbReported => "ATOM_APP_BREADCRUMB_REPORTED",
3264            AtomId::AtomAppStartOccurred => "ATOM_APP_START_OCCURRED",
3265            AtomId::AtomAppStartCanceled => "ATOM_APP_START_CANCELED",
3266            AtomId::AtomAppStartFullyDrawn => "ATOM_APP_START_FULLY_DRAWN",
3267            AtomId::AtomLmkKillOccurred => "ATOM_LMK_KILL_OCCURRED",
3268            AtomId::AtomPictureInPictureStateChanged => "ATOM_PICTURE_IN_PICTURE_STATE_CHANGED",
3269            AtomId::AtomWifiMulticastLockStateChanged => "ATOM_WIFI_MULTICAST_LOCK_STATE_CHANGED",
3270            AtomId::AtomAppStartMemoryStateCaptured => "ATOM_APP_START_MEMORY_STATE_CAPTURED",
3271            AtomId::AtomShutdownSequenceReported => "ATOM_SHUTDOWN_SEQUENCE_REPORTED",
3272            AtomId::AtomBootSequenceReported => "ATOM_BOOT_SEQUENCE_REPORTED",
3273            AtomId::AtomOverlayStateChanged => "ATOM_OVERLAY_STATE_CHANGED",
3274            AtomId::AtomForegroundServiceStateChanged => "ATOM_FOREGROUND_SERVICE_STATE_CHANGED",
3275            AtomId::AtomCallStateChanged => "ATOM_CALL_STATE_CHANGED",
3276            AtomId::AtomKeyguardStateChanged => "ATOM_KEYGUARD_STATE_CHANGED",
3277            AtomId::AtomKeyguardBouncerStateChanged => "ATOM_KEYGUARD_BOUNCER_STATE_CHANGED",
3278            AtomId::AtomKeyguardBouncerPasswordEntered => "ATOM_KEYGUARD_BOUNCER_PASSWORD_ENTERED",
3279            AtomId::AtomAppDied => "ATOM_APP_DIED",
3280            AtomId::AtomResourceConfigurationChanged => "ATOM_RESOURCE_CONFIGURATION_CHANGED",
3281            AtomId::AtomBluetoothEnabledStateChanged => "ATOM_BLUETOOTH_ENABLED_STATE_CHANGED",
3282            AtomId::AtomBluetoothConnectionStateChanged => "ATOM_BLUETOOTH_CONNECTION_STATE_CHANGED",
3283            AtomId::AtomGpsSignalQualityChanged => "ATOM_GPS_SIGNAL_QUALITY_CHANGED",
3284            AtomId::AtomUsbConnectorStateChanged => "ATOM_USB_CONNECTOR_STATE_CHANGED",
3285            AtomId::AtomSpeakerImpedanceReported => "ATOM_SPEAKER_IMPEDANCE_REPORTED",
3286            AtomId::AtomHardwareFailed => "ATOM_HARDWARE_FAILED",
3287            AtomId::AtomPhysicalDropDetected => "ATOM_PHYSICAL_DROP_DETECTED",
3288            AtomId::AtomChargeCyclesReported => "ATOM_CHARGE_CYCLES_REPORTED",
3289            AtomId::AtomMobileConnectionStateChanged => "ATOM_MOBILE_CONNECTION_STATE_CHANGED",
3290            AtomId::AtomMobileRadioTechnologyChanged => "ATOM_MOBILE_RADIO_TECHNOLOGY_CHANGED",
3291            AtomId::AtomUsbDeviceAttached => "ATOM_USB_DEVICE_ATTACHED",
3292            AtomId::AtomAppCrashOccurred => "ATOM_APP_CRASH_OCCURRED",
3293            AtomId::AtomAnrOccurred => "ATOM_ANR_OCCURRED",
3294            AtomId::AtomWtfOccurred => "ATOM_WTF_OCCURRED",
3295            AtomId::AtomLowMemReported => "ATOM_LOW_MEM_REPORTED",
3296            AtomId::AtomGenericAtom => "ATOM_GENERIC_ATOM",
3297            AtomId::AtomVibratorStateChanged => "ATOM_VIBRATOR_STATE_CHANGED",
3298            AtomId::AtomDeferredJobStatsReported => "ATOM_DEFERRED_JOB_STATS_REPORTED",
3299            AtomId::AtomThermalThrottling => "ATOM_THERMAL_THROTTLING",
3300            AtomId::AtomBiometricAcquired => "ATOM_BIOMETRIC_ACQUIRED",
3301            AtomId::AtomBiometricAuthenticated => "ATOM_BIOMETRIC_AUTHENTICATED",
3302            AtomId::AtomBiometricErrorOccurred => "ATOM_BIOMETRIC_ERROR_OCCURRED",
3303            AtomId::AtomUiEventReported => "ATOM_UI_EVENT_REPORTED",
3304            AtomId::AtomBatteryHealthSnapshot => "ATOM_BATTERY_HEALTH_SNAPSHOT",
3305            AtomId::AtomSlowIo => "ATOM_SLOW_IO",
3306            AtomId::AtomBatteryCausedShutdown => "ATOM_BATTERY_CAUSED_SHUTDOWN",
3307            AtomId::AtomPhoneServiceStateChanged => "ATOM_PHONE_SERVICE_STATE_CHANGED",
3308            AtomId::AtomPhoneStateChanged => "ATOM_PHONE_STATE_CHANGED",
3309            AtomId::AtomUserRestrictionChanged => "ATOM_USER_RESTRICTION_CHANGED",
3310            AtomId::AtomSettingsUiChanged => "ATOM_SETTINGS_UI_CHANGED",
3311            AtomId::AtomConnectivityStateChanged => "ATOM_CONNECTIVITY_STATE_CHANGED",
3312            AtomId::AtomServiceStateChanged => "ATOM_SERVICE_STATE_CHANGED",
3313            AtomId::AtomServiceLaunchReported => "ATOM_SERVICE_LAUNCH_REPORTED",
3314            AtomId::AtomFlagFlipUpdateOccurred => "ATOM_FLAG_FLIP_UPDATE_OCCURRED",
3315            AtomId::AtomBinaryPushStateChanged => "ATOM_BINARY_PUSH_STATE_CHANGED",
3316            AtomId::AtomDevicePolicyEvent => "ATOM_DEVICE_POLICY_EVENT",
3317            AtomId::AtomDocsUiFileOpCanceled => "ATOM_DOCS_UI_FILE_OP_CANCELED",
3318            AtomId::AtomDocsUiFileOpCopyMoveModeReported => "ATOM_DOCS_UI_FILE_OP_COPY_MOVE_MODE_REPORTED",
3319            AtomId::AtomDocsUiFileOpFailure => "ATOM_DOCS_UI_FILE_OP_FAILURE",
3320            AtomId::AtomDocsUiProviderFileOp => "ATOM_DOCS_UI_PROVIDER_FILE_OP",
3321            AtomId::AtomDocsUiInvalidScopedAccessRequest => "ATOM_DOCS_UI_INVALID_SCOPED_ACCESS_REQUEST",
3322            AtomId::AtomDocsUiLaunchReported => "ATOM_DOCS_UI_LAUNCH_REPORTED",
3323            AtomId::AtomDocsUiRootVisited => "ATOM_DOCS_UI_ROOT_VISITED",
3324            AtomId::AtomDocsUiStartupMs => "ATOM_DOCS_UI_STARTUP_MS",
3325            AtomId::AtomDocsUiUserActionReported => "ATOM_DOCS_UI_USER_ACTION_REPORTED",
3326            AtomId::AtomWifiEnabledStateChanged => "ATOM_WIFI_ENABLED_STATE_CHANGED",
3327            AtomId::AtomWifiRunningStateChanged => "ATOM_WIFI_RUNNING_STATE_CHANGED",
3328            AtomId::AtomAppCompacted => "ATOM_APP_COMPACTED",
3329            AtomId::AtomNetworkDnsEventReported => "ATOM_NETWORK_DNS_EVENT_REPORTED",
3330            AtomId::AtomDocsUiPickerLaunchedFromReported => "ATOM_DOCS_UI_PICKER_LAUNCHED_FROM_REPORTED",
3331            AtomId::AtomDocsUiPickResultReported => "ATOM_DOCS_UI_PICK_RESULT_REPORTED",
3332            AtomId::AtomDocsUiSearchModeReported => "ATOM_DOCS_UI_SEARCH_MODE_REPORTED",
3333            AtomId::AtomDocsUiSearchTypeReported => "ATOM_DOCS_UI_SEARCH_TYPE_REPORTED",
3334            AtomId::AtomDataStallEvent => "ATOM_DATA_STALL_EVENT",
3335            AtomId::AtomRescuePartyResetReported => "ATOM_RESCUE_PARTY_RESET_REPORTED",
3336            AtomId::AtomSignedConfigReported => "ATOM_SIGNED_CONFIG_REPORTED",
3337            AtomId::AtomGnssNiEventReported => "ATOM_GNSS_NI_EVENT_REPORTED",
3338            AtomId::AtomBluetoothLinkLayerConnectionEvent => "ATOM_BLUETOOTH_LINK_LAYER_CONNECTION_EVENT",
3339            AtomId::AtomBluetoothAclConnectionStateChanged => "ATOM_BLUETOOTH_ACL_CONNECTION_STATE_CHANGED",
3340            AtomId::AtomBluetoothScoConnectionStateChanged => "ATOM_BLUETOOTH_SCO_CONNECTION_STATE_CHANGED",
3341            AtomId::AtomAppDowngraded => "ATOM_APP_DOWNGRADED",
3342            AtomId::AtomAppOptimizedAfterDowngraded => "ATOM_APP_OPTIMIZED_AFTER_DOWNGRADED",
3343            AtomId::AtomLowStorageStateChanged => "ATOM_LOW_STORAGE_STATE_CHANGED",
3344            AtomId::AtomGnssNfwNotificationReported => "ATOM_GNSS_NFW_NOTIFICATION_REPORTED",
3345            AtomId::AtomGnssConfigurationReported => "ATOM_GNSS_CONFIGURATION_REPORTED",
3346            AtomId::AtomUsbPortOverheatEventReported => "ATOM_USB_PORT_OVERHEAT_EVENT_REPORTED",
3347            AtomId::AtomNfcErrorOccurred => "ATOM_NFC_ERROR_OCCURRED",
3348            AtomId::AtomNfcStateChanged => "ATOM_NFC_STATE_CHANGED",
3349            AtomId::AtomNfcBeamOccurred => "ATOM_NFC_BEAM_OCCURRED",
3350            AtomId::AtomNfcCardemulationOccurred => "ATOM_NFC_CARDEMULATION_OCCURRED",
3351            AtomId::AtomNfcTagOccurred => "ATOM_NFC_TAG_OCCURRED",
3352            AtomId::AtomNfcHceTransactionOccurred => "ATOM_NFC_HCE_TRANSACTION_OCCURRED",
3353            AtomId::AtomSeStateChanged => "ATOM_SE_STATE_CHANGED",
3354            AtomId::AtomSeOmapiReported => "ATOM_SE_OMAPI_REPORTED",
3355            AtomId::AtomBroadcastDispatchLatencyReported => "ATOM_BROADCAST_DISPATCH_LATENCY_REPORTED",
3356            AtomId::AtomAttentionManagerServiceResultReported => "ATOM_ATTENTION_MANAGER_SERVICE_RESULT_REPORTED",
3357            AtomId::AtomAdbConnectionChanged => "ATOM_ADB_CONNECTION_CHANGED",
3358            AtomId::AtomSpeechDspStatReported => "ATOM_SPEECH_DSP_STAT_REPORTED",
3359            AtomId::AtomUsbContaminantReported => "ATOM_USB_CONTAMINANT_REPORTED",
3360            AtomId::AtomWatchdogRollbackOccurred => "ATOM_WATCHDOG_ROLLBACK_OCCURRED",
3361            AtomId::AtomBiometricSystemHealthIssueDetected => "ATOM_BIOMETRIC_SYSTEM_HEALTH_ISSUE_DETECTED",
3362            AtomId::AtomBubbleUiChanged => "ATOM_BUBBLE_UI_CHANGED",
3363            AtomId::AtomScheduledJobConstraintChanged => "ATOM_SCHEDULED_JOB_CONSTRAINT_CHANGED",
3364            AtomId::AtomBluetoothActiveDeviceChanged => "ATOM_BLUETOOTH_ACTIVE_DEVICE_CHANGED",
3365            AtomId::AtomBluetoothA2dpPlaybackStateChanged => "ATOM_BLUETOOTH_A2DP_PLAYBACK_STATE_CHANGED",
3366            AtomId::AtomBluetoothA2dpCodecConfigChanged => "ATOM_BLUETOOTH_A2DP_CODEC_CONFIG_CHANGED",
3367            AtomId::AtomBluetoothA2dpCodecCapabilityChanged => "ATOM_BLUETOOTH_A2DP_CODEC_CAPABILITY_CHANGED",
3368            AtomId::AtomBluetoothA2dpAudioUnderrunReported => "ATOM_BLUETOOTH_A2DP_AUDIO_UNDERRUN_REPORTED",
3369            AtomId::AtomBluetoothA2dpAudioOverrunReported => "ATOM_BLUETOOTH_A2DP_AUDIO_OVERRUN_REPORTED",
3370            AtomId::AtomBluetoothDeviceRssiReported => "ATOM_BLUETOOTH_DEVICE_RSSI_REPORTED",
3371            AtomId::AtomBluetoothDeviceFailedContactCounterReported => "ATOM_BLUETOOTH_DEVICE_FAILED_CONTACT_COUNTER_REPORTED",
3372            AtomId::AtomBluetoothDeviceTxPowerLevelReported => "ATOM_BLUETOOTH_DEVICE_TX_POWER_LEVEL_REPORTED",
3373            AtomId::AtomBluetoothHciTimeoutReported => "ATOM_BLUETOOTH_HCI_TIMEOUT_REPORTED",
3374            AtomId::AtomBluetoothQualityReportReported => "ATOM_BLUETOOTH_QUALITY_REPORT_REPORTED",
3375            AtomId::AtomBluetoothDeviceInfoReported => "ATOM_BLUETOOTH_DEVICE_INFO_REPORTED",
3376            AtomId::AtomBluetoothRemoteVersionInfoReported => "ATOM_BLUETOOTH_REMOTE_VERSION_INFO_REPORTED",
3377            AtomId::AtomBluetoothSdpAttributeReported => "ATOM_BLUETOOTH_SDP_ATTRIBUTE_REPORTED",
3378            AtomId::AtomBluetoothBondStateChanged => "ATOM_BLUETOOTH_BOND_STATE_CHANGED",
3379            AtomId::AtomBluetoothClassicPairingEventReported => "ATOM_BLUETOOTH_CLASSIC_PAIRING_EVENT_REPORTED",
3380            AtomId::AtomBluetoothSmpPairingEventReported => "ATOM_BLUETOOTH_SMP_PAIRING_EVENT_REPORTED",
3381            AtomId::AtomScreenTimeoutExtensionReported => "ATOM_SCREEN_TIMEOUT_EXTENSION_REPORTED",
3382            AtomId::AtomProcessStartTime => "ATOM_PROCESS_START_TIME",
3383            AtomId::AtomPermissionGrantRequestResultReported => "ATOM_PERMISSION_GRANT_REQUEST_RESULT_REPORTED",
3384            AtomId::AtomBluetoothSocketConnectionStateChanged => "ATOM_BLUETOOTH_SOCKET_CONNECTION_STATE_CHANGED",
3385            AtomId::AtomDeviceIdentifierAccessDenied => "ATOM_DEVICE_IDENTIFIER_ACCESS_DENIED",
3386            AtomId::AtomBubbleDeveloperErrorReported => "ATOM_BUBBLE_DEVELOPER_ERROR_REPORTED",
3387            AtomId::AtomAssistGestureStageReported => "ATOM_ASSIST_GESTURE_STAGE_REPORTED",
3388            AtomId::AtomAssistGestureFeedbackReported => "ATOM_ASSIST_GESTURE_FEEDBACK_REPORTED",
3389            AtomId::AtomAssistGestureProgressReported => "ATOM_ASSIST_GESTURE_PROGRESS_REPORTED",
3390            AtomId::AtomTouchGestureClassified => "ATOM_TOUCH_GESTURE_CLASSIFIED",
3391            AtomId::AtomHiddenApiUsed => "ATOM_HIDDEN_API_USED",
3392            AtomId::AtomStyleUiChanged => "ATOM_STYLE_UI_CHANGED",
3393            AtomId::AtomPrivacyIndicatorsInteracted => "ATOM_PRIVACY_INDICATORS_INTERACTED",
3394            AtomId::AtomAppInstallOnExternalStorageReported => "ATOM_APP_INSTALL_ON_EXTERNAL_STORAGE_REPORTED",
3395            AtomId::AtomNetworkStackReported => "ATOM_NETWORK_STACK_REPORTED",
3396            AtomId::AtomAppMovedStorageReported => "ATOM_APP_MOVED_STORAGE_REPORTED",
3397            AtomId::AtomBiometricEnrolled => "ATOM_BIOMETRIC_ENROLLED",
3398            AtomId::AtomSystemServerWatchdogOccurred => "ATOM_SYSTEM_SERVER_WATCHDOG_OCCURRED",
3399            AtomId::AtomTombStoneOccurred => "ATOM_TOMB_STONE_OCCURRED",
3400            AtomId::AtomBluetoothClassOfDeviceReported => "ATOM_BLUETOOTH_CLASS_OF_DEVICE_REPORTED",
3401            AtomId::AtomIntelligenceEventReported => "ATOM_INTELLIGENCE_EVENT_REPORTED",
3402            AtomId::AtomThermalThrottlingSeverityStateChanged => "ATOM_THERMAL_THROTTLING_SEVERITY_STATE_CHANGED",
3403            AtomId::AtomRoleRequestResultReported => "ATOM_ROLE_REQUEST_RESULT_REPORTED",
3404            AtomId::AtomMediametricsAudiopolicyReported => "ATOM_MEDIAMETRICS_AUDIOPOLICY_REPORTED",
3405            AtomId::AtomMediametricsAudiorecordReported => "ATOM_MEDIAMETRICS_AUDIORECORD_REPORTED",
3406            AtomId::AtomMediametricsAudiothreadReported => "ATOM_MEDIAMETRICS_AUDIOTHREAD_REPORTED",
3407            AtomId::AtomMediametricsAudiotrackReported => "ATOM_MEDIAMETRICS_AUDIOTRACK_REPORTED",
3408            AtomId::AtomMediametricsCodecReported => "ATOM_MEDIAMETRICS_CODEC_REPORTED",
3409            AtomId::AtomMediametricsDrmWidevineReported => "ATOM_MEDIAMETRICS_DRM_WIDEVINE_REPORTED",
3410            AtomId::AtomMediametricsExtractorReported => "ATOM_MEDIAMETRICS_EXTRACTOR_REPORTED",
3411            AtomId::AtomMediametricsMediadrmReported => "ATOM_MEDIAMETRICS_MEDIADRM_REPORTED",
3412            AtomId::AtomMediametricsNuplayerReported => "ATOM_MEDIAMETRICS_NUPLAYER_REPORTED",
3413            AtomId::AtomMediametricsRecorderReported => "ATOM_MEDIAMETRICS_RECORDER_REPORTED",
3414            AtomId::AtomMediametricsDrmmanagerReported => "ATOM_MEDIAMETRICS_DRMMANAGER_REPORTED",
3415            AtomId::AtomCarPowerStateChanged => "ATOM_CAR_POWER_STATE_CHANGED",
3416            AtomId::AtomGarageModeInfo => "ATOM_GARAGE_MODE_INFO",
3417            AtomId::AtomTestAtomReported => "ATOM_TEST_ATOM_REPORTED",
3418            AtomId::AtomContentCaptureCallerMismatchReported => "ATOM_CONTENT_CAPTURE_CALLER_MISMATCH_REPORTED",
3419            AtomId::AtomContentCaptureServiceEvents => "ATOM_CONTENT_CAPTURE_SERVICE_EVENTS",
3420            AtomId::AtomContentCaptureSessionEvents => "ATOM_CONTENT_CAPTURE_SESSION_EVENTS",
3421            AtomId::AtomContentCaptureFlushed => "ATOM_CONTENT_CAPTURE_FLUSHED",
3422            AtomId::AtomLocationManagerApiUsageReported => "ATOM_LOCATION_MANAGER_API_USAGE_REPORTED",
3423            AtomId::AtomReviewPermissionsFragmentResultReported => "ATOM_REVIEW_PERMISSIONS_FRAGMENT_RESULT_REPORTED",
3424            AtomId::AtomRuntimePermissionsUpgradeResult => "ATOM_RUNTIME_PERMISSIONS_UPGRADE_RESULT",
3425            AtomId::AtomGrantPermissionsActivityButtonActions => "ATOM_GRANT_PERMISSIONS_ACTIVITY_BUTTON_ACTIONS",
3426            AtomId::AtomLocationAccessCheckNotificationAction => "ATOM_LOCATION_ACCESS_CHECK_NOTIFICATION_ACTION",
3427            AtomId::AtomAppPermissionFragmentActionReported => "ATOM_APP_PERMISSION_FRAGMENT_ACTION_REPORTED",
3428            AtomId::AtomAppPermissionFragmentViewed => "ATOM_APP_PERMISSION_FRAGMENT_VIEWED",
3429            AtomId::AtomAppPermissionsFragmentViewed => "ATOM_APP_PERMISSIONS_FRAGMENT_VIEWED",
3430            AtomId::AtomPermissionAppsFragmentViewed => "ATOM_PERMISSION_APPS_FRAGMENT_VIEWED",
3431            AtomId::AtomTextSelectionEvent => "ATOM_TEXT_SELECTION_EVENT",
3432            AtomId::AtomTextLinkifyEvent => "ATOM_TEXT_LINKIFY_EVENT",
3433            AtomId::AtomConversationActionsEvent => "ATOM_CONVERSATION_ACTIONS_EVENT",
3434            AtomId::AtomLanguageDetectionEvent => "ATOM_LANGUAGE_DETECTION_EVENT",
3435            AtomId::AtomExclusionRectStateChanged => "ATOM_EXCLUSION_RECT_STATE_CHANGED",
3436            AtomId::AtomBackGestureReportedReported => "ATOM_BACK_GESTURE_REPORTED_REPORTED",
3437            AtomId::AtomUpdateEngineUpdateAttemptReported => "ATOM_UPDATE_ENGINE_UPDATE_ATTEMPT_REPORTED",
3438            AtomId::AtomUpdateEngineSuccessfulUpdateReported => "ATOM_UPDATE_ENGINE_SUCCESSFUL_UPDATE_REPORTED",
3439            AtomId::AtomCameraActionEvent => "ATOM_CAMERA_ACTION_EVENT",
3440            AtomId::AtomAppCompatibilityChangeReported => "ATOM_APP_COMPATIBILITY_CHANGE_REPORTED",
3441            AtomId::AtomPerfettoUploaded => "ATOM_PERFETTO_UPLOADED",
3442            AtomId::AtomVmsClientConnectionStateChanged => "ATOM_VMS_CLIENT_CONNECTION_STATE_CHANGED",
3443            AtomId::AtomMediaProviderScanOccurred => "ATOM_MEDIA_PROVIDER_SCAN_OCCURRED",
3444            AtomId::AtomMediaContentDeleted => "ATOM_MEDIA_CONTENT_DELETED",
3445            AtomId::AtomMediaProviderPermissionRequested => "ATOM_MEDIA_PROVIDER_PERMISSION_REQUESTED",
3446            AtomId::AtomMediaProviderSchemaChanged => "ATOM_MEDIA_PROVIDER_SCHEMA_CHANGED",
3447            AtomId::AtomMediaProviderIdleMaintenanceFinished => "ATOM_MEDIA_PROVIDER_IDLE_MAINTENANCE_FINISHED",
3448            AtomId::AtomRebootEscrowRecoveryReported => "ATOM_REBOOT_ESCROW_RECOVERY_REPORTED",
3449            AtomId::AtomBootTimeEventDurationReported => "ATOM_BOOT_TIME_EVENT_DURATION_REPORTED",
3450            AtomId::AtomBootTimeEventElapsedTimeReported => "ATOM_BOOT_TIME_EVENT_ELAPSED_TIME_REPORTED",
3451            AtomId::AtomBootTimeEventUtcTimeReported => "ATOM_BOOT_TIME_EVENT_UTC_TIME_REPORTED",
3452            AtomId::AtomBootTimeEventErrorCodeReported => "ATOM_BOOT_TIME_EVENT_ERROR_CODE_REPORTED",
3453            AtomId::AtomUserspaceRebootReported => "ATOM_USERSPACE_REBOOT_REPORTED",
3454            AtomId::AtomNotificationReported => "ATOM_NOTIFICATION_REPORTED",
3455            AtomId::AtomNotificationPanelReported => "ATOM_NOTIFICATION_PANEL_REPORTED",
3456            AtomId::AtomNotificationChannelModified => "ATOM_NOTIFICATION_CHANNEL_MODIFIED",
3457            AtomId::AtomIntegrityCheckResultReported => "ATOM_INTEGRITY_CHECK_RESULT_REPORTED",
3458            AtomId::AtomIntegrityRulesPushed => "ATOM_INTEGRITY_RULES_PUSHED",
3459            AtomId::AtomCbMessageReported => "ATOM_CB_MESSAGE_REPORTED",
3460            AtomId::AtomCbMessageError => "ATOM_CB_MESSAGE_ERROR",
3461            AtomId::AtomWifiHealthStatReported => "ATOM_WIFI_HEALTH_STAT_REPORTED",
3462            AtomId::AtomWifiFailureStatReported => "ATOM_WIFI_FAILURE_STAT_REPORTED",
3463            AtomId::AtomWifiConnectionResultReported => "ATOM_WIFI_CONNECTION_RESULT_REPORTED",
3464            AtomId::AtomAppFreezeChanged => "ATOM_APP_FREEZE_CHANGED",
3465            AtomId::AtomSnapshotMergeReported => "ATOM_SNAPSHOT_MERGE_REPORTED",
3466            AtomId::AtomForegroundServiceAppOpSessionEnded => "ATOM_FOREGROUND_SERVICE_APP_OP_SESSION_ENDED",
3467            AtomId::AtomDisplayJankReported => "ATOM_DISPLAY_JANK_REPORTED",
3468            AtomId::AtomAppStandbyBucketChanged => "ATOM_APP_STANDBY_BUCKET_CHANGED",
3469            AtomId::AtomSharesheetStarted => "ATOM_SHARESHEET_STARTED",
3470            AtomId::AtomRankingSelected => "ATOM_RANKING_SELECTED",
3471            AtomId::AtomTvsettingsUiInteracted => "ATOM_TVSETTINGS_UI_INTERACTED",
3472            AtomId::AtomLauncherSnapshot => "ATOM_LAUNCHER_SNAPSHOT",
3473            AtomId::AtomPackageInstallerV2Reported => "ATOM_PACKAGE_INSTALLER_V2_REPORTED",
3474            AtomId::AtomUserLifecycleJourneyReported => "ATOM_USER_LIFECYCLE_JOURNEY_REPORTED",
3475            AtomId::AtomUserLifecycleEventOccurred => "ATOM_USER_LIFECYCLE_EVENT_OCCURRED",
3476            AtomId::AtomAccessibilityShortcutReported => "ATOM_ACCESSIBILITY_SHORTCUT_REPORTED",
3477            AtomId::AtomAccessibilityServiceReported => "ATOM_ACCESSIBILITY_SERVICE_REPORTED",
3478            AtomId::AtomDocsUiDragAndDropReported => "ATOM_DOCS_UI_DRAG_AND_DROP_REPORTED",
3479            AtomId::AtomAppUsageEventOccurred => "ATOM_APP_USAGE_EVENT_OCCURRED",
3480            AtomId::AtomAutoRevokeNotificationClicked => "ATOM_AUTO_REVOKE_NOTIFICATION_CLICKED",
3481            AtomId::AtomAutoRevokeFragmentAppViewed => "ATOM_AUTO_REVOKE_FRAGMENT_APP_VIEWED",
3482            AtomId::AtomAutoRevokedAppInteraction => "ATOM_AUTO_REVOKED_APP_INTERACTION",
3483            AtomId::AtomAppPermissionGroupsFragmentAutoRevokeAction => "ATOM_APP_PERMISSION_GROUPS_FRAGMENT_AUTO_REVOKE_ACTION",
3484            AtomId::AtomEvsUsageStatsReported => "ATOM_EVS_USAGE_STATS_REPORTED",
3485            AtomId::AtomAudioPowerUsageDataReported => "ATOM_AUDIO_POWER_USAGE_DATA_REPORTED",
3486            AtomId::AtomTvTunerStateChanged => "ATOM_TV_TUNER_STATE_CHANGED",
3487            AtomId::AtomMediaoutputOpSwitchReported => "ATOM_MEDIAOUTPUT_OP_SWITCH_REPORTED",
3488            AtomId::AtomCbMessageFiltered => "ATOM_CB_MESSAGE_FILTERED",
3489            AtomId::AtomTvTunerDvrStatus => "ATOM_TV_TUNER_DVR_STATUS",
3490            AtomId::AtomTvCasSessionOpenStatus => "ATOM_TV_CAS_SESSION_OPEN_STATUS",
3491            AtomId::AtomAssistantInvocationReported => "ATOM_ASSISTANT_INVOCATION_REPORTED",
3492            AtomId::AtomDisplayWakeReported => "ATOM_DISPLAY_WAKE_REPORTED",
3493            AtomId::AtomCarUserHalModifyUserRequestReported => "ATOM_CAR_USER_HAL_MODIFY_USER_REQUEST_REPORTED",
3494            AtomId::AtomCarUserHalModifyUserResponseReported => "ATOM_CAR_USER_HAL_MODIFY_USER_RESPONSE_REPORTED",
3495            AtomId::AtomCarUserHalPostSwitchResponseReported => "ATOM_CAR_USER_HAL_POST_SWITCH_RESPONSE_REPORTED",
3496            AtomId::AtomCarUserHalInitialUserInfoRequestReported => "ATOM_CAR_USER_HAL_INITIAL_USER_INFO_REQUEST_REPORTED",
3497            AtomId::AtomCarUserHalInitialUserInfoResponseReported => "ATOM_CAR_USER_HAL_INITIAL_USER_INFO_RESPONSE_REPORTED",
3498            AtomId::AtomCarUserHalUserAssociationRequestReported => "ATOM_CAR_USER_HAL_USER_ASSOCIATION_REQUEST_REPORTED",
3499            AtomId::AtomCarUserHalSetUserAssociationResponseReported => "ATOM_CAR_USER_HAL_SET_USER_ASSOCIATION_RESPONSE_REPORTED",
3500            AtomId::AtomNetworkIpProvisioningReported => "ATOM_NETWORK_IP_PROVISIONING_REPORTED",
3501            AtomId::AtomNetworkDhcpRenewReported => "ATOM_NETWORK_DHCP_RENEW_REPORTED",
3502            AtomId::AtomNetworkValidationReported => "ATOM_NETWORK_VALIDATION_REPORTED",
3503            AtomId::AtomNetworkStackQuirkReported => "ATOM_NETWORK_STACK_QUIRK_REPORTED",
3504            AtomId::AtomMediametricsAudiorecorddeviceusageReported => "ATOM_MEDIAMETRICS_AUDIORECORDDEVICEUSAGE_REPORTED",
3505            AtomId::AtomMediametricsAudiothreaddeviceusageReported => "ATOM_MEDIAMETRICS_AUDIOTHREADDEVICEUSAGE_REPORTED",
3506            AtomId::AtomMediametricsAudiotrackdeviceusageReported => "ATOM_MEDIAMETRICS_AUDIOTRACKDEVICEUSAGE_REPORTED",
3507            AtomId::AtomMediametricsAudiodeviceconnectionReported => "ATOM_MEDIAMETRICS_AUDIODEVICECONNECTION_REPORTED",
3508            AtomId::AtomBlobCommitted => "ATOM_BLOB_COMMITTED",
3509            AtomId::AtomBlobLeased => "ATOM_BLOB_LEASED",
3510            AtomId::AtomBlobOpened => "ATOM_BLOB_OPENED",
3511            AtomId::AtomContactsProviderStatusReported => "ATOM_CONTACTS_PROVIDER_STATUS_REPORTED",
3512            AtomId::AtomKeystoreKeyEventReported => "ATOM_KEYSTORE_KEY_EVENT_REPORTED",
3513            AtomId::AtomNetworkTetheringReported => "ATOM_NETWORK_TETHERING_REPORTED",
3514            AtomId::AtomImeTouchReported => "ATOM_IME_TOUCH_REPORTED",
3515            AtomId::AtomUiInteractionFrameInfoReported => "ATOM_UI_INTERACTION_FRAME_INFO_REPORTED",
3516            AtomId::AtomUiActionLatencyReported => "ATOM_UI_ACTION_LATENCY_REPORTED",
3517            AtomId::AtomWifiDisconnectReported => "ATOM_WIFI_DISCONNECT_REPORTED",
3518            AtomId::AtomWifiConnectionStateChanged => "ATOM_WIFI_CONNECTION_STATE_CHANGED",
3519            AtomId::AtomHdmiCecActiveSourceChanged => "ATOM_HDMI_CEC_ACTIVE_SOURCE_CHANGED",
3520            AtomId::AtomHdmiCecMessageReported => "ATOM_HDMI_CEC_MESSAGE_REPORTED",
3521            AtomId::AtomAirplaneMode => "ATOM_AIRPLANE_MODE",
3522            AtomId::AtomModemRestart => "ATOM_MODEM_RESTART",
3523            AtomId::AtomCarrierIdMismatchReported => "ATOM_CARRIER_ID_MISMATCH_REPORTED",
3524            AtomId::AtomCarrierIdTableUpdated => "ATOM_CARRIER_ID_TABLE_UPDATED",
3525            AtomId::AtomDataStallRecoveryReported => "ATOM_DATA_STALL_RECOVERY_REPORTED",
3526            AtomId::AtomMediametricsMediaparserReported => "ATOM_MEDIAMETRICS_MEDIAPARSER_REPORTED",
3527            AtomId::AtomTlsHandshakeReported => "ATOM_TLS_HANDSHAKE_REPORTED",
3528            AtomId::AtomTextClassifierApiUsageReported => "ATOM_TEXT_CLASSIFIER_API_USAGE_REPORTED",
3529            AtomId::AtomCarWatchdogKillStatsReported => "ATOM_CAR_WATCHDOG_KILL_STATS_REPORTED",
3530            AtomId::AtomMediametricsPlaybackReported => "ATOM_MEDIAMETRICS_PLAYBACK_REPORTED",
3531            AtomId::AtomMediaNetworkInfoChanged => "ATOM_MEDIA_NETWORK_INFO_CHANGED",
3532            AtomId::AtomMediaPlaybackStateChanged => "ATOM_MEDIA_PLAYBACK_STATE_CHANGED",
3533            AtomId::AtomMediaPlaybackErrorReported => "ATOM_MEDIA_PLAYBACK_ERROR_REPORTED",
3534            AtomId::AtomMediaPlaybackTrackChanged => "ATOM_MEDIA_PLAYBACK_TRACK_CHANGED",
3535            AtomId::AtomWifiScanReported => "ATOM_WIFI_SCAN_REPORTED",
3536            AtomId::AtomWifiPnoScanReported => "ATOM_WIFI_PNO_SCAN_REPORTED",
3537            AtomId::AtomTifTuneChanged => "ATOM_TIF_TUNE_CHANGED",
3538            AtomId::AtomAutoRotateReported => "ATOM_AUTO_ROTATE_REPORTED",
3539            AtomId::AtomPerfettoTrigger => "ATOM_PERFETTO_TRIGGER",
3540            AtomId::AtomTranscodingData => "ATOM_TRANSCODING_DATA",
3541            AtomId::AtomImsServiceEntitlementUpdated => "ATOM_IMS_SERVICE_ENTITLEMENT_UPDATED",
3542            AtomId::AtomDeviceRotated => "ATOM_DEVICE_ROTATED",
3543            AtomId::AtomSimSpecificSettingsRestored => "ATOM_SIM_SPECIFIC_SETTINGS_RESTORED",
3544            AtomId::AtomTextClassifierDownloadReported => "ATOM_TEXT_CLASSIFIER_DOWNLOAD_REPORTED",
3545            AtomId::AtomPinStorageEvent => "ATOM_PIN_STORAGE_EVENT",
3546            AtomId::AtomFaceDownReported => "ATOM_FACE_DOWN_REPORTED",
3547            AtomId::AtomBluetoothHalCrashReasonReported => "ATOM_BLUETOOTH_HAL_CRASH_REASON_REPORTED",
3548            AtomId::AtomRebootEscrowPreparationReported => "ATOM_REBOOT_ESCROW_PREPARATION_REPORTED",
3549            AtomId::AtomRebootEscrowLskfCaptureReported => "ATOM_REBOOT_ESCROW_LSKF_CAPTURE_REPORTED",
3550            AtomId::AtomRebootEscrowRebootReported => "ATOM_REBOOT_ESCROW_REBOOT_REPORTED",
3551            AtomId::AtomBinderLatencyReported => "ATOM_BINDER_LATENCY_REPORTED",
3552            AtomId::AtomMediametricsAaudiostreamReported => "ATOM_MEDIAMETRICS_AAUDIOSTREAM_REPORTED",
3553            AtomId::AtomMediaTranscodingSessionEnded => "ATOM_MEDIA_TRANSCODING_SESSION_ENDED",
3554            AtomId::AtomMagnificationUsageReported => "ATOM_MAGNIFICATION_USAGE_REPORTED",
3555            AtomId::AtomMagnificationModeWithImeOnReported => "ATOM_MAGNIFICATION_MODE_WITH_IME_ON_REPORTED",
3556            AtomId::AtomAppSearchCallStatsReported => "ATOM_APP_SEARCH_CALL_STATS_REPORTED",
3557            AtomId::AtomAppSearchPutDocumentStatsReported => "ATOM_APP_SEARCH_PUT_DOCUMENT_STATS_REPORTED",
3558            AtomId::AtomDeviceControlChanged => "ATOM_DEVICE_CONTROL_CHANGED",
3559            AtomId::AtomDeviceStateChanged => "ATOM_DEVICE_STATE_CHANGED",
3560            AtomId::AtomInputdeviceRegistered => "ATOM_INPUTDEVICE_REGISTERED",
3561            AtomId::AtomSmartspaceCardReported => "ATOM_SMARTSPACE_CARD_REPORTED",
3562            AtomId::AtomAuthPromptAuthenticateInvoked => "ATOM_AUTH_PROMPT_AUTHENTICATE_INVOKED",
3563            AtomId::AtomAuthManagerCanAuthenticateInvoked => "ATOM_AUTH_MANAGER_CAN_AUTHENTICATE_INVOKED",
3564            AtomId::AtomAuthEnrollActionInvoked => "ATOM_AUTH_ENROLL_ACTION_INVOKED",
3565            AtomId::AtomAuthDeprecatedApiUsed => "ATOM_AUTH_DEPRECATED_API_USED",
3566            AtomId::AtomUnattendedRebootOccurred => "ATOM_UNATTENDED_REBOOT_OCCURRED",
3567            AtomId::AtomLongRebootBlockingReported => "ATOM_LONG_REBOOT_BLOCKING_REPORTED",
3568            AtomId::AtomLocationTimeZoneProviderStateChanged => "ATOM_LOCATION_TIME_ZONE_PROVIDER_STATE_CHANGED",
3569            AtomId::AtomFdtrackEventOccurred => "ATOM_FDTRACK_EVENT_OCCURRED",
3570            AtomId::AtomTimeoutAutoExtendedReported => "ATOM_TIMEOUT_AUTO_EXTENDED_REPORTED",
3571            AtomId::AtomAlarmBatchDelivered => "ATOM_ALARM_BATCH_DELIVERED",
3572            AtomId::AtomAlarmScheduled => "ATOM_ALARM_SCHEDULED",
3573            AtomId::AtomCarWatchdogIoOveruseStatsReported => "ATOM_CAR_WATCHDOG_IO_OVERUSE_STATS_REPORTED",
3574            AtomId::AtomUserLevelHibernationStateChanged => "ATOM_USER_LEVEL_HIBERNATION_STATE_CHANGED",
3575            AtomId::AtomAppSearchInitializeStatsReported => "ATOM_APP_SEARCH_INITIALIZE_STATS_REPORTED",
3576            AtomId::AtomAppSearchQueryStatsReported => "ATOM_APP_SEARCH_QUERY_STATS_REPORTED",
3577            AtomId::AtomAppProcessDied => "ATOM_APP_PROCESS_DIED",
3578            AtomId::AtomNetworkIpReachabilityMonitorReported => "ATOM_NETWORK_IP_REACHABILITY_MONITOR_REPORTED",
3579            AtomId::AtomSlowInputEventReported => "ATOM_SLOW_INPUT_EVENT_REPORTED",
3580            AtomId::AtomAnrOccurredProcessingStarted => "ATOM_ANR_OCCURRED_PROCESSING_STARTED",
3581            AtomId::AtomAppSearchRemoveStatsReported => "ATOM_APP_SEARCH_REMOVE_STATS_REPORTED",
3582            AtomId::AtomMediaCodecReported => "ATOM_MEDIA_CODEC_REPORTED",
3583            AtomId::AtomPermissionUsageFragmentInteraction => "ATOM_PERMISSION_USAGE_FRAGMENT_INTERACTION",
3584            AtomId::AtomPermissionDetailsInteraction => "ATOM_PERMISSION_DETAILS_INTERACTION",
3585            AtomId::AtomPrivacySensorToggleInteraction => "ATOM_PRIVACY_SENSOR_TOGGLE_INTERACTION",
3586            AtomId::AtomPrivacyToggleDialogInteraction => "ATOM_PRIVACY_TOGGLE_DIALOG_INTERACTION",
3587            AtomId::AtomAppSearchOptimizeStatsReported => "ATOM_APP_SEARCH_OPTIMIZE_STATS_REPORTED",
3588            AtomId::AtomNonA11yToolServiceWarningReport => "ATOM_NON_A11Y_TOOL_SERVICE_WARNING_REPORT",
3589            AtomId::AtomAppCompatStateChanged => "ATOM_APP_COMPAT_STATE_CHANGED",
3590            AtomId::AtomSizeCompatRestartButtonEventReported => "ATOM_SIZE_COMPAT_RESTART_BUTTON_EVENT_REPORTED",
3591            AtomId::AtomSplitscreenUiChanged => "ATOM_SPLITSCREEN_UI_CHANGED",
3592            AtomId::AtomNetworkDnsHandshakeReported => "ATOM_NETWORK_DNS_HANDSHAKE_REPORTED",
3593            AtomId::AtomBluetoothCodePathCounter => "ATOM_BLUETOOTH_CODE_PATH_COUNTER",
3594            AtomId::AtomBluetoothLeBatchScanReportDelay => "ATOM_BLUETOOTH_LE_BATCH_SCAN_REPORT_DELAY",
3595            AtomId::AtomAccessibilityFloatingMenuUiChanged => "ATOM_ACCESSIBILITY_FLOATING_MENU_UI_CHANGED",
3596            AtomId::AtomNeuralnetworksCompilationCompleted => "ATOM_NEURALNETWORKS_COMPILATION_COMPLETED",
3597            AtomId::AtomNeuralnetworksExecutionCompleted => "ATOM_NEURALNETWORKS_EXECUTION_COMPLETED",
3598            AtomId::AtomNeuralnetworksCompilationFailed => "ATOM_NEURALNETWORKS_COMPILATION_FAILED",
3599            AtomId::AtomNeuralnetworksExecutionFailed => "ATOM_NEURALNETWORKS_EXECUTION_FAILED",
3600            AtomId::AtomContextHubBooted => "ATOM_CONTEXT_HUB_BOOTED",
3601            AtomId::AtomContextHubRestarted => "ATOM_CONTEXT_HUB_RESTARTED",
3602            AtomId::AtomContextHubLoadedNanoappSnapshotReported => "ATOM_CONTEXT_HUB_LOADED_NANOAPP_SNAPSHOT_REPORTED",
3603            AtomId::AtomChreCodeDownloadTransacted => "ATOM_CHRE_CODE_DOWNLOAD_TRANSACTED",
3604            AtomId::AtomUwbSessionInited => "ATOM_UWB_SESSION_INITED",
3605            AtomId::AtomUwbSessionClosed => "ATOM_UWB_SESSION_CLOSED",
3606            AtomId::AtomUwbFirstRangingReceived => "ATOM_UWB_FIRST_RANGING_RECEIVED",
3607            AtomId::AtomUwbRangingMeasurementReceived => "ATOM_UWB_RANGING_MEASUREMENT_RECEIVED",
3608            AtomId::AtomTextClassifierDownloadWorkScheduled => "ATOM_TEXT_CLASSIFIER_DOWNLOAD_WORK_SCHEDULED",
3609            AtomId::AtomTextClassifierDownloadWorkCompleted => "ATOM_TEXT_CLASSIFIER_DOWNLOAD_WORK_COMPLETED",
3610            AtomId::AtomClipboardCleared => "ATOM_CLIPBOARD_CLEARED",
3611            AtomId::AtomVmCreationRequested => "ATOM_VM_CREATION_REQUESTED",
3612            AtomId::AtomNearbyDeviceScanStateChanged => "ATOM_NEARBY_DEVICE_SCAN_STATE_CHANGED",
3613            AtomId::AtomApplicationLocalesChanged => "ATOM_APPLICATION_LOCALES_CHANGED",
3614            AtomId::AtomMediametricsAudiotrackstatusReported => "ATOM_MEDIAMETRICS_AUDIOTRACKSTATUS_REPORTED",
3615            AtomId::AtomFoldStateDurationReported => "ATOM_FOLD_STATE_DURATION_REPORTED",
3616            AtomId::AtomLocationTimeZoneProviderControllerStateChanged => "ATOM_LOCATION_TIME_ZONE_PROVIDER_CONTROLLER_STATE_CHANGED",
3617            AtomId::AtomDisplayHbmStateChanged => "ATOM_DISPLAY_HBM_STATE_CHANGED",
3618            AtomId::AtomDisplayHbmBrightnessChanged => "ATOM_DISPLAY_HBM_BRIGHTNESS_CHANGED",
3619            AtomId::AtomPersistentUriPermissionsFlushed => "ATOM_PERSISTENT_URI_PERMISSIONS_FLUSHED",
3620            AtomId::AtomEarlyBootCompOsArtifactsCheckReported => "ATOM_EARLY_BOOT_COMP_OS_ARTIFACTS_CHECK_REPORTED",
3621            AtomId::AtomVbmetaDigestReported => "ATOM_VBMETA_DIGEST_REPORTED",
3622            AtomId::AtomApexInfoGathered => "ATOM_APEX_INFO_GATHERED",
3623            AtomId::AtomPvmInfoGathered => "ATOM_PVM_INFO_GATHERED",
3624            AtomId::AtomWearSettingsUiInteracted => "ATOM_WEAR_SETTINGS_UI_INTERACTED",
3625            AtomId::AtomTracingServiceReportEvent => "ATOM_TRACING_SERVICE_REPORT_EVENT",
3626            AtomId::AtomMediametricsAudiorecordstatusReported => "ATOM_MEDIAMETRICS_AUDIORECORDSTATUS_REPORTED",
3627            AtomId::AtomLauncherLatency => "ATOM_LAUNCHER_LATENCY",
3628            AtomId::AtomDropboxEntryDropped => "ATOM_DROPBOX_ENTRY_DROPPED",
3629            AtomId::AtomWifiP2pConnectionReported => "ATOM_WIFI_P2P_CONNECTION_REPORTED",
3630            AtomId::AtomGameStateChanged => "ATOM_GAME_STATE_CHANGED",
3631            AtomId::AtomHotwordDetectorCreateRequested => "ATOM_HOTWORD_DETECTOR_CREATE_REQUESTED",
3632            AtomId::AtomHotwordDetectionServiceInitResultReported => "ATOM_HOTWORD_DETECTION_SERVICE_INIT_RESULT_REPORTED",
3633            AtomId::AtomHotwordDetectionServiceRestarted => "ATOM_HOTWORD_DETECTION_SERVICE_RESTARTED",
3634            AtomId::AtomHotwordDetectorKeyphraseTriggered => "ATOM_HOTWORD_DETECTOR_KEYPHRASE_TRIGGERED",
3635            AtomId::AtomHotwordDetectorEvents => "ATOM_HOTWORD_DETECTOR_EVENTS",
3636            AtomId::AtomBootCompletedBroadcastCompletionLatencyReported => "ATOM_BOOT_COMPLETED_BROADCAST_COMPLETION_LATENCY_REPORTED",
3637            AtomId::AtomContactsIndexerUpdateStatsReported => "ATOM_CONTACTS_INDEXER_UPDATE_STATS_REPORTED",
3638            AtomId::AtomAppBackgroundRestrictionsInfo => "ATOM_APP_BACKGROUND_RESTRICTIONS_INFO",
3639            AtomId::AtomMmsSmsProviderGetThreadIdFailed => "ATOM_MMS_SMS_PROVIDER_GET_THREAD_ID_FAILED",
3640            AtomId::AtomMmsSmsDatabaseHelperOnUpgradeFailed => "ATOM_MMS_SMS_DATABASE_HELPER_ON_UPGRADE_FAILED",
3641            AtomId::AtomPermissionReminderNotificationInteracted => "ATOM_PERMISSION_REMINDER_NOTIFICATION_INTERACTED",
3642            AtomId::AtomRecentPermissionDecisionsInteracted => "ATOM_RECENT_PERMISSION_DECISIONS_INTERACTED",
3643            AtomId::AtomGnssPsdsDownloadReported => "ATOM_GNSS_PSDS_DOWNLOAD_REPORTED",
3644            AtomId::AtomLeAudioConnectionSessionReported => "ATOM_LE_AUDIO_CONNECTION_SESSION_REPORTED",
3645            AtomId::AtomLeAudioBroadcastSessionReported => "ATOM_LE_AUDIO_BROADCAST_SESSION_REPORTED",
3646            AtomId::AtomDreamUiEventReported => "ATOM_DREAM_UI_EVENT_REPORTED",
3647            AtomId::AtomTaskManagerEventReported => "ATOM_TASK_MANAGER_EVENT_REPORTED",
3648            AtomId::AtomCdmAssociationAction => "ATOM_CDM_ASSOCIATION_ACTION",
3649            AtomId::AtomMagnificationTripleTapAndHoldActivatedSessionReported => "ATOM_MAGNIFICATION_TRIPLE_TAP_AND_HOLD_ACTIVATED_SESSION_REPORTED",
3650            AtomId::AtomMagnificationFollowTypingFocusActivatedSessionReported => "ATOM_MAGNIFICATION_FOLLOW_TYPING_FOCUS_ACTIVATED_SESSION_REPORTED",
3651            AtomId::AtomAccessibilityTextReadingOptionsChanged => "ATOM_ACCESSIBILITY_TEXT_READING_OPTIONS_CHANGED",
3652            AtomId::AtomWifiSetupFailureCrashReported => "ATOM_WIFI_SETUP_FAILURE_CRASH_REPORTED",
3653            AtomId::AtomUwbDeviceErrorReported => "ATOM_UWB_DEVICE_ERROR_REPORTED",
3654            AtomId::AtomIsolatedCompilationScheduled => "ATOM_ISOLATED_COMPILATION_SCHEDULED",
3655            AtomId::AtomIsolatedCompilationEnded => "ATOM_ISOLATED_COMPILATION_ENDED",
3656            AtomId::AtomOnsOpportunisticEsimProvisioningComplete => "ATOM_ONS_OPPORTUNISTIC_ESIM_PROVISIONING_COMPLETE",
3657            AtomId::AtomSystemServerPreWatchdogOccurred => "ATOM_SYSTEM_SERVER_PRE_WATCHDOG_OCCURRED",
3658            AtomId::AtomTelephonyAnomalyDetected => "ATOM_TELEPHONY_ANOMALY_DETECTED",
3659            AtomId::AtomLetterboxPositionChanged => "ATOM_LETTERBOX_POSITION_CHANGED",
3660            AtomId::AtomRemoteKeyProvisioningAttempt => "ATOM_REMOTE_KEY_PROVISIONING_ATTEMPT",
3661            AtomId::AtomRemoteKeyProvisioningNetworkInfo => "ATOM_REMOTE_KEY_PROVISIONING_NETWORK_INFO",
3662            AtomId::AtomRemoteKeyProvisioningTiming => "ATOM_REMOTE_KEY_PROVISIONING_TIMING",
3663            AtomId::AtomMediaoutputOpInteractionReport => "ATOM_MEDIAOUTPUT_OP_INTERACTION_REPORT",
3664            AtomId::AtomSyncExemptionOccurred => "ATOM_SYNC_EXEMPTION_OCCURRED",
3665            AtomId::AtomAutofillPresentationEventReported => "ATOM_AUTOFILL_PRESENTATION_EVENT_REPORTED",
3666            AtomId::AtomDockStateChanged => "ATOM_DOCK_STATE_CHANGED",
3667            AtomId::AtomSafetySourceStateCollected => "ATOM_SAFETY_SOURCE_STATE_COLLECTED",
3668            AtomId::AtomSafetyCenterSystemEventReported => "ATOM_SAFETY_CENTER_SYSTEM_EVENT_REPORTED",
3669            AtomId::AtomSafetyCenterInteractionReported => "ATOM_SAFETY_CENTER_INTERACTION_REPORTED",
3670            AtomId::AtomSettingsProviderSettingChanged => "ATOM_SETTINGS_PROVIDER_SETTING_CHANGED",
3671            AtomId::AtomBroadcastDeliveryEventReported => "ATOM_BROADCAST_DELIVERY_EVENT_REPORTED",
3672            AtomId::AtomServiceRequestEventReported => "ATOM_SERVICE_REQUEST_EVENT_REPORTED",
3673            AtomId::AtomProviderAcquisitionEventReported => "ATOM_PROVIDER_ACQUISITION_EVENT_REPORTED",
3674            AtomId::AtomBluetoothDeviceNameReported => "ATOM_BLUETOOTH_DEVICE_NAME_REPORTED",
3675            AtomId::AtomCbConfigUpdated => "ATOM_CB_CONFIG_UPDATED",
3676            AtomId::AtomCbModuleErrorReported => "ATOM_CB_MODULE_ERROR_REPORTED",
3677            AtomId::AtomCbServiceFeatureChanged => "ATOM_CB_SERVICE_FEATURE_CHANGED",
3678            AtomId::AtomCbReceiverFeatureChanged => "ATOM_CB_RECEIVER_FEATURE_CHANGED",
3679            AtomId::AtomPrivacySignalNotificationInteraction => "ATOM_PRIVACY_SIGNAL_NOTIFICATION_INTERACTION",
3680            AtomId::AtomPrivacySignalIssueCardInteraction => "ATOM_PRIVACY_SIGNAL_ISSUE_CARD_INTERACTION",
3681            AtomId::AtomPrivacySignalsJobFailure => "ATOM_PRIVACY_SIGNALS_JOB_FAILURE",
3682            AtomId::AtomVibrationReported => "ATOM_VIBRATION_REPORTED",
3683            AtomId::AtomUwbRangingStart => "ATOM_UWB_RANGING_START",
3684            AtomId::AtomAppCompactedV2 => "ATOM_APP_COMPACTED_V2",
3685            AtomId::AtomDisplayBrightnessChanged => "ATOM_DISPLAY_BRIGHTNESS_CHANGED",
3686            AtomId::AtomActivityActionBlocked => "ATOM_ACTIVITY_ACTION_BLOCKED",
3687            AtomId::AtomNetworkDnsServerSupportReported => "ATOM_NETWORK_DNS_SERVER_SUPPORT_REPORTED",
3688            AtomId::AtomVmBooted => "ATOM_VM_BOOTED",
3689            AtomId::AtomVmExited => "ATOM_VM_EXITED",
3690            AtomId::AtomAmbientBrightnessStatsReported => "ATOM_AMBIENT_BRIGHTNESS_STATS_REPORTED",
3691            AtomId::AtomMediametricsSpatializercapabilitiesReported => "ATOM_MEDIAMETRICS_SPATIALIZERCAPABILITIES_REPORTED",
3692            AtomId::AtomMediametricsSpatializerdeviceenabledReported => "ATOM_MEDIAMETRICS_SPATIALIZERDEVICEENABLED_REPORTED",
3693            AtomId::AtomMediametricsHeadtrackerdeviceenabledReported => "ATOM_MEDIAMETRICS_HEADTRACKERDEVICEENABLED_REPORTED",
3694            AtomId::AtomMediametricsHeadtrackerdevicesupportedReported => "ATOM_MEDIAMETRICS_HEADTRACKERDEVICESUPPORTED_REPORTED",
3695            AtomId::AtomHearingAidInfoReported => "ATOM_HEARING_AID_INFO_REPORTED",
3696            AtomId::AtomDeviceWideJobConstraintChanged => "ATOM_DEVICE_WIDE_JOB_CONSTRAINT_CHANGED",
3697            AtomId::AtomAmbientModeChanged => "ATOM_AMBIENT_MODE_CHANGED",
3698            AtomId::AtomAnrLatencyReported => "ATOM_ANR_LATENCY_REPORTED",
3699            AtomId::AtomResourceApiInfo => "ATOM_RESOURCE_API_INFO",
3700            AtomId::AtomSystemDefaultNetworkChanged => "ATOM_SYSTEM_DEFAULT_NETWORK_CHANGED",
3701            AtomId::AtomIwlanSetupDataCallResultReported => "ATOM_IWLAN_SETUP_DATA_CALL_RESULT_REPORTED",
3702            AtomId::AtomIwlanPdnDisconnectedReasonReported => "ATOM_IWLAN_PDN_DISCONNECTED_REASON_REPORTED",
3703            AtomId::AtomAirplaneModeSessionReported => "ATOM_AIRPLANE_MODE_SESSION_REPORTED",
3704            AtomId::AtomVmCpuStatusReported => "ATOM_VM_CPU_STATUS_REPORTED",
3705            AtomId::AtomVmMemStatusReported => "ATOM_VM_MEM_STATUS_REPORTED",
3706            AtomId::AtomPackageInstallationSessionReported => "ATOM_PACKAGE_INSTALLATION_SESSION_REPORTED",
3707            AtomId::AtomDefaultNetworkRematchInfo => "ATOM_DEFAULT_NETWORK_REMATCH_INFO",
3708            AtomId::AtomNetworkSelectionPerformance => "ATOM_NETWORK_SELECTION_PERFORMANCE",
3709            AtomId::AtomNetworkNsdReported => "ATOM_NETWORK_NSD_REPORTED",
3710            AtomId::AtomBluetoothDisconnectionReasonReported => "ATOM_BLUETOOTH_DISCONNECTION_REASON_REPORTED",
3711            AtomId::AtomBluetoothLocalVersionsReported => "ATOM_BLUETOOTH_LOCAL_VERSIONS_REPORTED",
3712            AtomId::AtomBluetoothRemoteSupportedFeaturesReported => "ATOM_BLUETOOTH_REMOTE_SUPPORTED_FEATURES_REPORTED",
3713            AtomId::AtomBluetoothLocalSupportedFeaturesReported => "ATOM_BLUETOOTH_LOCAL_SUPPORTED_FEATURES_REPORTED",
3714            AtomId::AtomBluetoothGattAppInfo => "ATOM_BLUETOOTH_GATT_APP_INFO",
3715            AtomId::AtomBrightnessConfigurationUpdated => "ATOM_BRIGHTNESS_CONFIGURATION_UPDATED",
3716            AtomId::AtomWearMediaOutputSwitcherLaunched => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_LAUNCHED",
3717            AtomId::AtomWearMediaOutputSwitcherFinished => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_FINISHED",
3718            AtomId::AtomWearMediaOutputSwitcherConnectionReported => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_CONNECTION_REPORTED",
3719            AtomId::AtomWearMediaOutputSwitcherDeviceScanTriggered => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_DEVICE_SCAN_TRIGGERED",
3720            AtomId::AtomWearMediaOutputSwitcherFirstDeviceScanLatency => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_FIRST_DEVICE_SCAN_LATENCY",
3721            AtomId::AtomWearMediaOutputSwitcherConnectDeviceLatency => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_CONNECT_DEVICE_LATENCY",
3722            AtomId::AtomPackageManagerSnapshotReported => "ATOM_PACKAGE_MANAGER_SNAPSHOT_REPORTED",
3723            AtomId::AtomPackageManagerAppsFilterCacheBuildReported => "ATOM_PACKAGE_MANAGER_APPS_FILTER_CACHE_BUILD_REPORTED",
3724            AtomId::AtomPackageManagerAppsFilterCacheUpdateReported => "ATOM_PACKAGE_MANAGER_APPS_FILTER_CACHE_UPDATE_REPORTED",
3725            AtomId::AtomLauncherImpressionEvent => "ATOM_LAUNCHER_IMPRESSION_EVENT",
3726            AtomId::AtomWearMediaOutputSwitcherAllDevicesScanLatency => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_ALL_DEVICES_SCAN_LATENCY",
3727            AtomId::AtomWsWatchFaceEdited => "ATOM_WS_WATCH_FACE_EDITED",
3728            AtomId::AtomWsWatchFaceFavoriteActionReported => "ATOM_WS_WATCH_FACE_FAVORITE_ACTION_REPORTED",
3729            AtomId::AtomWsWatchFaceSetActionReported => "ATOM_WS_WATCH_FACE_SET_ACTION_REPORTED",
3730            AtomId::AtomPackageUninstallationReported => "ATOM_PACKAGE_UNINSTALLATION_REPORTED",
3731            AtomId::AtomGameModeChanged => "ATOM_GAME_MODE_CHANGED",
3732            AtomId::AtomGameModeConfigurationChanged => "ATOM_GAME_MODE_CONFIGURATION_CHANGED",
3733            AtomId::AtomBedtimeModeStateChanged => "ATOM_BEDTIME_MODE_STATE_CHANGED",
3734            AtomId::AtomNetworkSliceSessionEnded => "ATOM_NETWORK_SLICE_SESSION_ENDED",
3735            AtomId::AtomNetworkSliceDailyDataUsageReported => "ATOM_NETWORK_SLICE_DAILY_DATA_USAGE_REPORTED",
3736            AtomId::AtomNfcTagTypeOccurred => "ATOM_NFC_TAG_TYPE_OCCURRED",
3737            AtomId::AtomNfcAidConflictOccurred => "ATOM_NFC_AID_CONFLICT_OCCURRED",
3738            AtomId::AtomNfcReaderConflictOccurred => "ATOM_NFC_READER_CONFLICT_OCCURRED",
3739            AtomId::AtomWsTileListChanged => "ATOM_WS_TILE_LIST_CHANGED",
3740            AtomId::AtomGetTypeAccessedWithoutPermission => "ATOM_GET_TYPE_ACCESSED_WITHOUT_PERMISSION",
3741            AtomId::AtomMobileBundledAppInfoGathered => "ATOM_MOBILE_BUNDLED_APP_INFO_GATHERED",
3742            AtomId::AtomWsWatchFaceComplicationSetChanged => "ATOM_WS_WATCH_FACE_COMPLICATION_SET_CHANGED",
3743            AtomId::AtomMediaDrmCreated => "ATOM_MEDIA_DRM_CREATED",
3744            AtomId::AtomMediaDrmErrored => "ATOM_MEDIA_DRM_ERRORED",
3745            AtomId::AtomMediaDrmSessionOpened => "ATOM_MEDIA_DRM_SESSION_OPENED",
3746            AtomId::AtomMediaDrmSessionClosed => "ATOM_MEDIA_DRM_SESSION_CLOSED",
3747            AtomId::AtomUserSelectedResolution => "ATOM_USER_SELECTED_RESOLUTION",
3748            AtomId::AtomUnsafeIntentEventReported => "ATOM_UNSAFE_INTENT_EVENT_REPORTED",
3749            AtomId::AtomPerformanceHintSessionReported => "ATOM_PERFORMANCE_HINT_SESSION_REPORTED",
3750            AtomId::AtomMediametricsMidiDeviceCloseReported => "ATOM_MEDIAMETRICS_MIDI_DEVICE_CLOSE_REPORTED",
3751            AtomId::AtomBiometricTouchReported => "ATOM_BIOMETRIC_TOUCH_REPORTED",
3752            AtomId::AtomHotwordAudioEgressEventReported => "ATOM_HOTWORD_AUDIO_EGRESS_EVENT_REPORTED",
3753            AtomId::AtomLocationEnabledStateChanged => "ATOM_LOCATION_ENABLED_STATE_CHANGED",
3754            AtomId::AtomImeRequestFinished => "ATOM_IME_REQUEST_FINISHED",
3755            AtomId::AtomUsbComplianceWarningsReported => "ATOM_USB_COMPLIANCE_WARNINGS_REPORTED",
3756            AtomId::AtomAppSupportedLocalesChanged => "ATOM_APP_SUPPORTED_LOCALES_CHANGED",
3757            AtomId::AtomMediaProviderVolumeRecoveryReported => "ATOM_MEDIA_PROVIDER_VOLUME_RECOVERY_REPORTED",
3758            AtomId::AtomBiometricPropertiesCollected => "ATOM_BIOMETRIC_PROPERTIES_COLLECTED",
3759            AtomId::AtomKernelWakeupAttributed => "ATOM_KERNEL_WAKEUP_ATTRIBUTED",
3760            AtomId::AtomScreenStateChangedV2 => "ATOM_SCREEN_STATE_CHANGED_V2",
3761            AtomId::AtomWsBackupActionReported => "ATOM_WS_BACKUP_ACTION_REPORTED",
3762            AtomId::AtomWsRestoreActionReported => "ATOM_WS_RESTORE_ACTION_REPORTED",
3763            AtomId::AtomDeviceLogAccessEventReported => "ATOM_DEVICE_LOG_ACCESS_EVENT_REPORTED",
3764            AtomId::AtomMediaSessionUpdated => "ATOM_MEDIA_SESSION_UPDATED",
3765            AtomId::AtomWearOobeStateChanged => "ATOM_WEAR_OOBE_STATE_CHANGED",
3766            AtomId::AtomWsNotificationUpdated => "ATOM_WS_NOTIFICATION_UPDATED",
3767            AtomId::AtomNetworkValidationFailureStatsDailyReported => "ATOM_NETWORK_VALIDATION_FAILURE_STATS_DAILY_REPORTED",
3768            AtomId::AtomWsComplicationTapped => "ATOM_WS_COMPLICATION_TAPPED",
3769            AtomId::AtomWsNotificationBlocking => "ATOM_WS_NOTIFICATION_BLOCKING",
3770            AtomId::AtomWsNotificationBridgemodeUpdated => "ATOM_WS_NOTIFICATION_BRIDGEMODE_UPDATED",
3771            AtomId::AtomWsNotificationDismissalActioned => "ATOM_WS_NOTIFICATION_DISMISSAL_ACTIONED",
3772            AtomId::AtomWsNotificationActioned => "ATOM_WS_NOTIFICATION_ACTIONED",
3773            AtomId::AtomWsNotificationLatency => "ATOM_WS_NOTIFICATION_LATENCY",
3774            AtomId::AtomWifiBytesTransfer => "ATOM_WIFI_BYTES_TRANSFER",
3775            AtomId::AtomWifiBytesTransferByFgBg => "ATOM_WIFI_BYTES_TRANSFER_BY_FG_BG",
3776            AtomId::AtomMobileBytesTransfer => "ATOM_MOBILE_BYTES_TRANSFER",
3777            AtomId::AtomMobileBytesTransferByFgBg => "ATOM_MOBILE_BYTES_TRANSFER_BY_FG_BG",
3778            AtomId::AtomBluetoothBytesTransfer => "ATOM_BLUETOOTH_BYTES_TRANSFER",
3779            AtomId::AtomKernelWakelock => "ATOM_KERNEL_WAKELOCK",
3780            AtomId::AtomSubsystemSleepState => "ATOM_SUBSYSTEM_SLEEP_STATE",
3781            AtomId::AtomCpuTimePerUid => "ATOM_CPU_TIME_PER_UID",
3782            AtomId::AtomCpuTimePerUidFreq => "ATOM_CPU_TIME_PER_UID_FREQ",
3783            AtomId::AtomWifiActivityInfo => "ATOM_WIFI_ACTIVITY_INFO",
3784            AtomId::AtomModemActivityInfo => "ATOM_MODEM_ACTIVITY_INFO",
3785            AtomId::AtomBluetoothActivityInfo => "ATOM_BLUETOOTH_ACTIVITY_INFO",
3786            AtomId::AtomProcessMemoryState => "ATOM_PROCESS_MEMORY_STATE",
3787            AtomId::AtomSystemElapsedRealtime => "ATOM_SYSTEM_ELAPSED_REALTIME",
3788            AtomId::AtomSystemUptime => "ATOM_SYSTEM_UPTIME",
3789            AtomId::AtomCpuActiveTime => "ATOM_CPU_ACTIVE_TIME",
3790            AtomId::AtomCpuClusterTime => "ATOM_CPU_CLUSTER_TIME",
3791            AtomId::AtomDiskSpace => "ATOM_DISK_SPACE",
3792            AtomId::AtomRemainingBatteryCapacity => "ATOM_REMAINING_BATTERY_CAPACITY",
3793            AtomId::AtomFullBatteryCapacity => "ATOM_FULL_BATTERY_CAPACITY",
3794            AtomId::AtomTemperature => "ATOM_TEMPERATURE",
3795            AtomId::AtomBinderCalls => "ATOM_BINDER_CALLS",
3796            AtomId::AtomBinderCallsExceptions => "ATOM_BINDER_CALLS_EXCEPTIONS",
3797            AtomId::AtomLooperStats => "ATOM_LOOPER_STATS",
3798            AtomId::AtomDiskStats => "ATOM_DISK_STATS",
3799            AtomId::AtomDirectoryUsage => "ATOM_DIRECTORY_USAGE",
3800            AtomId::AtomAppSize => "ATOM_APP_SIZE",
3801            AtomId::AtomCategorySize => "ATOM_CATEGORY_SIZE",
3802            AtomId::AtomProcStats => "ATOM_PROC_STATS",
3803            AtomId::AtomBatteryVoltage => "ATOM_BATTERY_VOLTAGE",
3804            AtomId::AtomNumFingerprintsEnrolled => "ATOM_NUM_FINGERPRINTS_ENROLLED",
3805            AtomId::AtomDiskIo => "ATOM_DISK_IO",
3806            AtomId::AtomPowerProfile => "ATOM_POWER_PROFILE",
3807            AtomId::AtomProcStatsPkgProc => "ATOM_PROC_STATS_PKG_PROC",
3808            AtomId::AtomProcessCpuTime => "ATOM_PROCESS_CPU_TIME",
3809            AtomId::AtomCpuTimePerThreadFreq => "ATOM_CPU_TIME_PER_THREAD_FREQ",
3810            AtomId::AtomOnDevicePowerMeasurement => "ATOM_ON_DEVICE_POWER_MEASUREMENT",
3811            AtomId::AtomDeviceCalculatedPowerUse => "ATOM_DEVICE_CALCULATED_POWER_USE",
3812            AtomId::AtomProcessMemoryHighWaterMark => "ATOM_PROCESS_MEMORY_HIGH_WATER_MARK",
3813            AtomId::AtomBatteryLevel => "ATOM_BATTERY_LEVEL",
3814            AtomId::AtomBuildInformation => "ATOM_BUILD_INFORMATION",
3815            AtomId::AtomBatteryCycleCount => "ATOM_BATTERY_CYCLE_COUNT",
3816            AtomId::AtomDebugElapsedClock => "ATOM_DEBUG_ELAPSED_CLOCK",
3817            AtomId::AtomDebugFailingElapsedClock => "ATOM_DEBUG_FAILING_ELAPSED_CLOCK",
3818            AtomId::AtomNumFacesEnrolled => "ATOM_NUM_FACES_ENROLLED",
3819            AtomId::AtomRoleHolder => "ATOM_ROLE_HOLDER",
3820            AtomId::AtomDangerousPermissionState => "ATOM_DANGEROUS_PERMISSION_STATE",
3821            AtomId::AtomTrainInfo => "ATOM_TRAIN_INFO",
3822            AtomId::AtomTimeZoneDataInfo => "ATOM_TIME_ZONE_DATA_INFO",
3823            AtomId::AtomExternalStorageInfo => "ATOM_EXTERNAL_STORAGE_INFO",
3824            AtomId::AtomGpuStatsGlobalInfo => "ATOM_GPU_STATS_GLOBAL_INFO",
3825            AtomId::AtomGpuStatsAppInfo => "ATOM_GPU_STATS_APP_INFO",
3826            AtomId::AtomSystemIonHeapSize => "ATOM_SYSTEM_ION_HEAP_SIZE",
3827            AtomId::AtomAppsOnExternalStorageInfo => "ATOM_APPS_ON_EXTERNAL_STORAGE_INFO",
3828            AtomId::AtomFaceSettings => "ATOM_FACE_SETTINGS",
3829            AtomId::AtomCoolingDevice => "ATOM_COOLING_DEVICE",
3830            AtomId::AtomAppOps => "ATOM_APP_OPS",
3831            AtomId::AtomProcessSystemIonHeapSize => "ATOM_PROCESS_SYSTEM_ION_HEAP_SIZE",
3832            AtomId::AtomSurfaceflingerStatsGlobalInfo => "ATOM_SURFACEFLINGER_STATS_GLOBAL_INFO",
3833            AtomId::AtomSurfaceflingerStatsLayerInfo => "ATOM_SURFACEFLINGER_STATS_LAYER_INFO",
3834            AtomId::AtomProcessMemorySnapshot => "ATOM_PROCESS_MEMORY_SNAPSHOT",
3835            AtomId::AtomVmsClientStats => "ATOM_VMS_CLIENT_STATS",
3836            AtomId::AtomNotificationRemoteViews => "ATOM_NOTIFICATION_REMOTE_VIEWS",
3837            AtomId::AtomDangerousPermissionStateSampled => "ATOM_DANGEROUS_PERMISSION_STATE_SAMPLED",
3838            AtomId::AtomGraphicsStats => "ATOM_GRAPHICS_STATS",
3839            AtomId::AtomRuntimeAppOpAccess => "ATOM_RUNTIME_APP_OP_ACCESS",
3840            AtomId::AtomIonHeapSize => "ATOM_ION_HEAP_SIZE",
3841            AtomId::AtomPackageNotificationPreferences => "ATOM_PACKAGE_NOTIFICATION_PREFERENCES",
3842            AtomId::AtomPackageNotificationChannelPreferences => "ATOM_PACKAGE_NOTIFICATION_CHANNEL_PREFERENCES",
3843            AtomId::AtomPackageNotificationChannelGroupPreferences => "ATOM_PACKAGE_NOTIFICATION_CHANNEL_GROUP_PREFERENCES",
3844            AtomId::AtomGnssStats => "ATOM_GNSS_STATS",
3845            AtomId::AtomAttributedAppOps => "ATOM_ATTRIBUTED_APP_OPS",
3846            AtomId::AtomVoiceCallSession => "ATOM_VOICE_CALL_SESSION",
3847            AtomId::AtomVoiceCallRatUsage => "ATOM_VOICE_CALL_RAT_USAGE",
3848            AtomId::AtomSimSlotState => "ATOM_SIM_SLOT_STATE",
3849            AtomId::AtomSupportedRadioAccessFamily => "ATOM_SUPPORTED_RADIO_ACCESS_FAMILY",
3850            AtomId::AtomSettingSnapshot => "ATOM_SETTING_SNAPSHOT",
3851            AtomId::AtomBlobInfo => "ATOM_BLOB_INFO",
3852            AtomId::AtomDataUsageBytesTransfer => "ATOM_DATA_USAGE_BYTES_TRANSFER",
3853            AtomId::AtomBytesTransferByTagAndMetered => "ATOM_BYTES_TRANSFER_BY_TAG_AND_METERED",
3854            AtomId::AtomDndModeRule => "ATOM_DND_MODE_RULE",
3855            AtomId::AtomGeneralExternalStorageAccessStats => "ATOM_GENERAL_EXTERNAL_STORAGE_ACCESS_STATS",
3856            AtomId::AtomIncomingSms => "ATOM_INCOMING_SMS",
3857            AtomId::AtomOutgoingSms => "ATOM_OUTGOING_SMS",
3858            AtomId::AtomCarrierIdTableVersion => "ATOM_CARRIER_ID_TABLE_VERSION",
3859            AtomId::AtomDataCallSession => "ATOM_DATA_CALL_SESSION",
3860            AtomId::AtomCellularServiceState => "ATOM_CELLULAR_SERVICE_STATE",
3861            AtomId::AtomCellularDataServiceSwitch => "ATOM_CELLULAR_DATA_SERVICE_SWITCH",
3862            AtomId::AtomSystemMemory => "ATOM_SYSTEM_MEMORY",
3863            AtomId::AtomImsRegistrationTermination => "ATOM_IMS_REGISTRATION_TERMINATION",
3864            AtomId::AtomImsRegistrationStats => "ATOM_IMS_REGISTRATION_STATS",
3865            AtomId::AtomCpuTimePerClusterFreq => "ATOM_CPU_TIME_PER_CLUSTER_FREQ",
3866            AtomId::AtomCpuCyclesPerUidCluster => "ATOM_CPU_CYCLES_PER_UID_CLUSTER",
3867            AtomId::AtomDeviceRotatedData => "ATOM_DEVICE_ROTATED_DATA",
3868            AtomId::AtomCpuCyclesPerThreadGroupCluster => "ATOM_CPU_CYCLES_PER_THREAD_GROUP_CLUSTER",
3869            AtomId::AtomMediaDrmActivityInfo => "ATOM_MEDIA_DRM_ACTIVITY_INFO",
3870            AtomId::AtomOemManagedBytesTransfer => "ATOM_OEM_MANAGED_BYTES_TRANSFER",
3871            AtomId::AtomGnssPowerStats => "ATOM_GNSS_POWER_STATS",
3872            AtomId::AtomTimeZoneDetectorState => "ATOM_TIME_ZONE_DETECTOR_STATE",
3873            AtomId::AtomKeystore2StorageStats => "ATOM_KEYSTORE2_STORAGE_STATS",
3874            AtomId::AtomRkpPoolStats => "ATOM_RKP_POOL_STATS",
3875            AtomId::AtomProcessDmabufMemory => "ATOM_PROCESS_DMABUF_MEMORY",
3876            AtomId::AtomPendingAlarmInfo => "ATOM_PENDING_ALARM_INFO",
3877            AtomId::AtomUserLevelHibernatedApps => "ATOM_USER_LEVEL_HIBERNATED_APPS",
3878            AtomId::AtomLauncherLayoutSnapshot => "ATOM_LAUNCHER_LAYOUT_SNAPSHOT",
3879            AtomId::AtomGlobalHibernatedApps => "ATOM_GLOBAL_HIBERNATED_APPS",
3880            AtomId::AtomInputEventLatencySketch => "ATOM_INPUT_EVENT_LATENCY_SKETCH",
3881            AtomId::AtomBatteryUsageStatsBeforeReset => "ATOM_BATTERY_USAGE_STATS_BEFORE_RESET",
3882            AtomId::AtomBatteryUsageStatsSinceReset => "ATOM_BATTERY_USAGE_STATS_SINCE_RESET",
3883            AtomId::AtomBatteryUsageStatsSinceResetUsingPowerProfileModel => "ATOM_BATTERY_USAGE_STATS_SINCE_RESET_USING_POWER_PROFILE_MODEL",
3884            AtomId::AtomInstalledIncrementalPackage => "ATOM_INSTALLED_INCREMENTAL_PACKAGE",
3885            AtomId::AtomTelephonyNetworkRequests => "ATOM_TELEPHONY_NETWORK_REQUESTS",
3886            AtomId::AtomAppSearchStorageInfo => "ATOM_APP_SEARCH_STORAGE_INFO",
3887            AtomId::AtomVmstat => "ATOM_VMSTAT",
3888            AtomId::AtomKeystore2KeyCreationWithGeneralInfo => "ATOM_KEYSTORE2_KEY_CREATION_WITH_GENERAL_INFO",
3889            AtomId::AtomKeystore2KeyCreationWithAuthInfo => "ATOM_KEYSTORE2_KEY_CREATION_WITH_AUTH_INFO",
3890            AtomId::AtomKeystore2KeyCreationWithPurposeAndModesInfo => "ATOM_KEYSTORE2_KEY_CREATION_WITH_PURPOSE_AND_MODES_INFO",
3891            AtomId::AtomKeystore2AtomWithOverflow => "ATOM_KEYSTORE2_ATOM_WITH_OVERFLOW",
3892            AtomId::AtomKeystore2KeyOperationWithPurposeAndModesInfo => "ATOM_KEYSTORE2_KEY_OPERATION_WITH_PURPOSE_AND_MODES_INFO",
3893            AtomId::AtomKeystore2KeyOperationWithGeneralInfo => "ATOM_KEYSTORE2_KEY_OPERATION_WITH_GENERAL_INFO",
3894            AtomId::AtomRkpErrorStats => "ATOM_RKP_ERROR_STATS",
3895            AtomId::AtomKeystore2CrashStats => "ATOM_KEYSTORE2_CRASH_STATS",
3896            AtomId::AtomVendorApexInfo => "ATOM_VENDOR_APEX_INFO",
3897            AtomId::AtomAccessibilityShortcutStats => "ATOM_ACCESSIBILITY_SHORTCUT_STATS",
3898            AtomId::AtomAccessibilityFloatingMenuStats => "ATOM_ACCESSIBILITY_FLOATING_MENU_STATS",
3899            AtomId::AtomDataUsageBytesTransferV2 => "ATOM_DATA_USAGE_BYTES_TRANSFER_V2",
3900            AtomId::AtomMediaCapabilities => "ATOM_MEDIA_CAPABILITIES",
3901            AtomId::AtomCarWatchdogSystemIoUsageSummary => "ATOM_CAR_WATCHDOG_SYSTEM_IO_USAGE_SUMMARY",
3902            AtomId::AtomCarWatchdogUidIoUsageSummary => "ATOM_CAR_WATCHDOG_UID_IO_USAGE_SUMMARY",
3903            AtomId::AtomImsRegistrationFeatureTagStats => "ATOM_IMS_REGISTRATION_FEATURE_TAG_STATS",
3904            AtomId::AtomRcsClientProvisioningStats => "ATOM_RCS_CLIENT_PROVISIONING_STATS",
3905            AtomId::AtomRcsAcsProvisioningStats => "ATOM_RCS_ACS_PROVISIONING_STATS",
3906            AtomId::AtomSipDelegateStats => "ATOM_SIP_DELEGATE_STATS",
3907            AtomId::AtomSipTransportFeatureTagStats => "ATOM_SIP_TRANSPORT_FEATURE_TAG_STATS",
3908            AtomId::AtomSipMessageResponse => "ATOM_SIP_MESSAGE_RESPONSE",
3909            AtomId::AtomSipTransportSession => "ATOM_SIP_TRANSPORT_SESSION",
3910            AtomId::AtomImsDedicatedBearerListenerEvent => "ATOM_IMS_DEDICATED_BEARER_LISTENER_EVENT",
3911            AtomId::AtomImsDedicatedBearerEvent => "ATOM_IMS_DEDICATED_BEARER_EVENT",
3912            AtomId::AtomImsRegistrationServiceDescStats => "ATOM_IMS_REGISTRATION_SERVICE_DESC_STATS",
3913            AtomId::AtomUceEventStats => "ATOM_UCE_EVENT_STATS",
3914            AtomId::AtomPresenceNotifyEvent => "ATOM_PRESENCE_NOTIFY_EVENT",
3915            AtomId::AtomGbaEvent => "ATOM_GBA_EVENT",
3916            AtomId::AtomPerSimStatus => "ATOM_PER_SIM_STATUS",
3917            AtomId::AtomGpuWorkPerUid => "ATOM_GPU_WORK_PER_UID",
3918            AtomId::AtomPersistentUriPermissionsAmountPerPackage => "ATOM_PERSISTENT_URI_PERMISSIONS_AMOUNT_PER_PACKAGE",
3919            AtomId::AtomSignedPartitionInfo => "ATOM_SIGNED_PARTITION_INFO",
3920            AtomId::AtomPinnedFileSizesPerPackage => "ATOM_PINNED_FILE_SIZES_PER_PACKAGE",
3921            AtomId::AtomPendingIntentsPerPackage => "ATOM_PENDING_INTENTS_PER_PACKAGE",
3922            AtomId::AtomUserInfo => "ATOM_USER_INFO",
3923            AtomId::AtomTelephonyNetworkRequestsV2 => "ATOM_TELEPHONY_NETWORK_REQUESTS_V2",
3924            AtomId::AtomDeviceTelephonyProperties => "ATOM_DEVICE_TELEPHONY_PROPERTIES",
3925            AtomId::AtomRemoteKeyProvisioningErrorCounts => "ATOM_REMOTE_KEY_PROVISIONING_ERROR_COUNTS",
3926            AtomId::AtomSafetyState => "ATOM_SAFETY_STATE",
3927            AtomId::AtomIncomingMms => "ATOM_INCOMING_MMS",
3928            AtomId::AtomOutgoingMms => "ATOM_OUTGOING_MMS",
3929            AtomId::AtomMultiUserInfo => "ATOM_MULTI_USER_INFO",
3930            AtomId::AtomNetworkBpfMapInfo => "ATOM_NETWORK_BPF_MAP_INFO",
3931            AtomId::AtomOutgoingShortCodeSms => "ATOM_OUTGOING_SHORT_CODE_SMS",
3932            AtomId::AtomConnectivityStateSample => "ATOM_CONNECTIVITY_STATE_SAMPLE",
3933            AtomId::AtomNetworkSelectionRematchReasonsInfo => "ATOM_NETWORK_SELECTION_REMATCH_REASONS_INFO",
3934            AtomId::AtomGameModeInfo => "ATOM_GAME_MODE_INFO",
3935            AtomId::AtomGameModeConfiguration => "ATOM_GAME_MODE_CONFIGURATION",
3936            AtomId::AtomGameModeListener => "ATOM_GAME_MODE_LISTENER",
3937            AtomId::AtomNetworkSliceRequestCount => "ATOM_NETWORK_SLICE_REQUEST_COUNT",
3938            AtomId::AtomWsTileSnapshot => "ATOM_WS_TILE_SNAPSHOT",
3939            AtomId::AtomWsActiveWatchFaceComplicationSetSnapshot => "ATOM_WS_ACTIVE_WATCH_FACE_COMPLICATION_SET_SNAPSHOT",
3940            AtomId::AtomProcessState => "ATOM_PROCESS_STATE",
3941            AtomId::AtomProcessAssociation => "ATOM_PROCESS_ASSOCIATION",
3942            AtomId::AtomAdpfSystemComponentInfo => "ATOM_ADPF_SYSTEM_COMPONENT_INFO",
3943            AtomId::AtomNotificationMemoryUse => "ATOM_NOTIFICATION_MEMORY_USE",
3944            AtomId::AtomHdrCapabilities => "ATOM_HDR_CAPABILITIES",
3945            AtomId::AtomWsFavouriteWatchFaceListSnapshot => "ATOM_WS_FAVOURITE_WATCH_FACE_LIST_SNAPSHOT",
3946            AtomId::AtomAccessibilityCheckResultReported => "ATOM_ACCESSIBILITY_CHECK_RESULT_REPORTED",
3947            AtomId::AtomAdaptiveAuthUnlockAfterLockReported => "ATOM_ADAPTIVE_AUTH_UNLOCK_AFTER_LOCK_REPORTED",
3948            AtomId::AtomThermalStatusCalled => "ATOM_THERMAL_STATUS_CALLED",
3949            AtomId::AtomThermalHeadroomCalled => "ATOM_THERMAL_HEADROOM_CALLED",
3950            AtomId::AtomThermalHeadroomThresholdsCalled => "ATOM_THERMAL_HEADROOM_THRESHOLDS_CALLED",
3951            AtomId::AtomAdpfHintSessionTidCleanup => "ATOM_ADPF_HINT_SESSION_TID_CLEANUP",
3952            AtomId::AtomThermalHeadroomThresholds => "ATOM_THERMAL_HEADROOM_THRESHOLDS",
3953            AtomId::AtomAdpfSessionSnapshot => "ATOM_ADPF_SESSION_SNAPSHOT",
3954            AtomId::AtomJsscriptengineLatencyReported => "ATOM_JSSCRIPTENGINE_LATENCY_REPORTED",
3955            AtomId::AtomAdServicesApiCalled => "ATOM_AD_SERVICES_API_CALLED",
3956            AtomId::AtomAdServicesMesurementReportsUploaded => "ATOM_AD_SERVICES_MESUREMENT_REPORTS_UPLOADED",
3957            AtomId::AtomMobileDataDownloadFileGroupStatusReported => "ATOM_MOBILE_DATA_DOWNLOAD_FILE_GROUP_STATUS_REPORTED",
3958            AtomId::AtomMobileDataDownloadDownloadResultReported => "ATOM_MOBILE_DATA_DOWNLOAD_DOWNLOAD_RESULT_REPORTED",
3959            AtomId::AtomAdServicesSettingsUsageReported => "ATOM_AD_SERVICES_SETTINGS_USAGE_REPORTED",
3960            AtomId::AtomBackgroundFetchProcessReported => "ATOM_BACKGROUND_FETCH_PROCESS_REPORTED",
3961            AtomId::AtomUpdateCustomAudienceProcessReported => "ATOM_UPDATE_CUSTOM_AUDIENCE_PROCESS_REPORTED",
3962            AtomId::AtomRunAdBiddingProcessReported => "ATOM_RUN_AD_BIDDING_PROCESS_REPORTED",
3963            AtomId::AtomRunAdScoringProcessReported => "ATOM_RUN_AD_SCORING_PROCESS_REPORTED",
3964            AtomId::AtomRunAdSelectionProcessReported => "ATOM_RUN_AD_SELECTION_PROCESS_REPORTED",
3965            AtomId::AtomRunAdBiddingPerCaProcessReported => "ATOM_RUN_AD_BIDDING_PER_CA_PROCESS_REPORTED",
3966            AtomId::AtomMobileDataDownloadFileGroupStorageStatsReported => "ATOM_MOBILE_DATA_DOWNLOAD_FILE_GROUP_STORAGE_STATS_REPORTED",
3967            AtomId::AtomAdServicesMeasurementRegistrations => "ATOM_AD_SERVICES_MEASUREMENT_REGISTRATIONS",
3968            AtomId::AtomAdServicesGetTopicsReported => "ATOM_AD_SERVICES_GET_TOPICS_REPORTED",
3969            AtomId::AtomAdServicesEpochComputationGetTopTopicsReported => "ATOM_AD_SERVICES_EPOCH_COMPUTATION_GET_TOP_TOPICS_REPORTED",
3970            AtomId::AtomAdServicesEpochComputationClassifierReported => "ATOM_AD_SERVICES_EPOCH_COMPUTATION_CLASSIFIER_REPORTED",
3971            AtomId::AtomAdServicesBackCompatGetTopicsReported => "ATOM_AD_SERVICES_BACK_COMPAT_GET_TOPICS_REPORTED",
3972            AtomId::AtomAdServicesBackCompatEpochComputationClassifierReported => "ATOM_AD_SERVICES_BACK_COMPAT_EPOCH_COMPUTATION_CLASSIFIER_REPORTED",
3973            AtomId::AtomAdServicesMeasurementDebugKeys => "ATOM_AD_SERVICES_MEASUREMENT_DEBUG_KEYS",
3974            AtomId::AtomAdServicesErrorReported => "ATOM_AD_SERVICES_ERROR_REPORTED",
3975            AtomId::AtomAdServicesBackgroundJobsExecutionReported => "ATOM_AD_SERVICES_BACKGROUND_JOBS_EXECUTION_REPORTED",
3976            AtomId::AtomAdServicesMeasurementDelayedSourceRegistration => "ATOM_AD_SERVICES_MEASUREMENT_DELAYED_SOURCE_REGISTRATION",
3977            AtomId::AtomAdServicesMeasurementAttribution => "ATOM_AD_SERVICES_MEASUREMENT_ATTRIBUTION",
3978            AtomId::AtomAdServicesMeasurementJobs => "ATOM_AD_SERVICES_MEASUREMENT_JOBS",
3979            AtomId::AtomAdServicesMeasurementWipeout => "ATOM_AD_SERVICES_MEASUREMENT_WIPEOUT",
3980            AtomId::AtomAdServicesMeasurementAdIdMatchForDebugKeys => "ATOM_AD_SERVICES_MEASUREMENT_AD_ID_MATCH_FOR_DEBUG_KEYS",
3981            AtomId::AtomAdServicesEnrollmentDataStored => "ATOM_AD_SERVICES_ENROLLMENT_DATA_STORED",
3982            AtomId::AtomAdServicesEnrollmentFileDownloaded => "ATOM_AD_SERVICES_ENROLLMENT_FILE_DOWNLOADED",
3983            AtomId::AtomAdServicesEnrollmentMatched => "ATOM_AD_SERVICES_ENROLLMENT_MATCHED",
3984            AtomId::AtomAdServicesConsentMigrated => "ATOM_AD_SERVICES_CONSENT_MIGRATED",
3985            AtomId::AtomAdServicesEnrollmentFailed => "ATOM_AD_SERVICES_ENROLLMENT_FAILED",
3986            AtomId::AtomAdServicesMeasurementClickVerification => "ATOM_AD_SERVICES_MEASUREMENT_CLICK_VERIFICATION",
3987            AtomId::AtomAdServicesEncryptionKeyFetched => "ATOM_AD_SERVICES_ENCRYPTION_KEY_FETCHED",
3988            AtomId::AtomAdServicesEncryptionKeyDbTransactionEnded => "ATOM_AD_SERVICES_ENCRYPTION_KEY_DB_TRANSACTION_ENDED",
3989            AtomId::AtomDestinationRegisteredBeacons => "ATOM_DESTINATION_REGISTERED_BEACONS",
3990            AtomId::AtomReportInteractionApiCalled => "ATOM_REPORT_INTERACTION_API_CALLED",
3991            AtomId::AtomInteractionReportingTableCleared => "ATOM_INTERACTION_REPORTING_TABLE_CLEARED",
3992            AtomId::AtomAppManifestConfigHelperCalled => "ATOM_APP_MANIFEST_CONFIG_HELPER_CALLED",
3993            AtomId::AtomAdFilteringProcessJoinCaReported => "ATOM_AD_FILTERING_PROCESS_JOIN_CA_REPORTED",
3994            AtomId::AtomAdFilteringProcessAdSelectionReported => "ATOM_AD_FILTERING_PROCESS_AD_SELECTION_REPORTED",
3995            AtomId::AtomAdCounterHistogramUpdaterReported => "ATOM_AD_COUNTER_HISTOGRAM_UPDATER_REPORTED",
3996            AtomId::AtomSignatureVerification => "ATOM_SIGNATURE_VERIFICATION",
3997            AtomId::AtomKAnonImmediateSignJoinStatusReported => "ATOM_K_ANON_IMMEDIATE_SIGN_JOIN_STATUS_REPORTED",
3998            AtomId::AtomKAnonBackgroundJobStatusReported => "ATOM_K_ANON_BACKGROUND_JOB_STATUS_REPORTED",
3999            AtomId::AtomKAnonInitializeStatusReported => "ATOM_K_ANON_INITIALIZE_STATUS_REPORTED",
4000            AtomId::AtomKAnonSignStatusReported => "ATOM_K_ANON_SIGN_STATUS_REPORTED",
4001            AtomId::AtomKAnonJoinStatusReported => "ATOM_K_ANON_JOIN_STATUS_REPORTED",
4002            AtomId::AtomKAnonKeyAttestationStatusReported => "ATOM_K_ANON_KEY_ATTESTATION_STATUS_REPORTED",
4003            AtomId::AtomGetAdSelectionDataApiCalled => "ATOM_GET_AD_SELECTION_DATA_API_CALLED",
4004            AtomId::AtomGetAdSelectionDataBuyerInputGenerated => "ATOM_GET_AD_SELECTION_DATA_BUYER_INPUT_GENERATED",
4005            AtomId::AtomBackgroundJobSchedulingReported => "ATOM_BACKGROUND_JOB_SCHEDULING_REPORTED",
4006            AtomId::AtomTopicsEncryptionEpochComputationReported => "ATOM_TOPICS_ENCRYPTION_EPOCH_COMPUTATION_REPORTED",
4007            AtomId::AtomTopicsEncryptionGetTopicsReported => "ATOM_TOPICS_ENCRYPTION_GET_TOPICS_REPORTED",
4008            AtomId::AtomAdservicesShellCommandCalled => "ATOM_ADSERVICES_SHELL_COMMAND_CALLED",
4009            AtomId::AtomUpdateSignalsApiCalled => "ATOM_UPDATE_SIGNALS_API_CALLED",
4010            AtomId::AtomEncodingJobRun => "ATOM_ENCODING_JOB_RUN",
4011            AtomId::AtomEncodingJsFetch => "ATOM_ENCODING_JS_FETCH",
4012            AtomId::AtomEncodingJsExecution => "ATOM_ENCODING_JS_EXECUTION",
4013            AtomId::AtomPersistAdSelectionResultCalled => "ATOM_PERSIST_AD_SELECTION_RESULT_CALLED",
4014            AtomId::AtomServerAuctionKeyFetchCalled => "ATOM_SERVER_AUCTION_KEY_FETCH_CALLED",
4015            AtomId::AtomServerAuctionBackgroundKeyFetchEnabled => "ATOM_SERVER_AUCTION_BACKGROUND_KEY_FETCH_ENABLED",
4016            AtomId::AtomAdServicesMeasurementProcessOdpRegistration => "ATOM_AD_SERVICES_MEASUREMENT_PROCESS_ODP_REGISTRATION",
4017            AtomId::AtomAdServicesMeasurementNotifyRegistrationToOdp => "ATOM_AD_SERVICES_MEASUREMENT_NOTIFY_REGISTRATION_TO_ODP",
4018            AtomId::AtomSelectAdsFromOutcomesApiCalled => "ATOM_SELECT_ADS_FROM_OUTCOMES_API_CALLED",
4019            AtomId::AtomReportImpressionApiCalled => "ATOM_REPORT_IMPRESSION_API_CALLED",
4020            AtomId::AtomAdServicesEnrollmentTransactionStats => "ATOM_AD_SERVICES_ENROLLMENT_TRANSACTION_STATS",
4021            AtomId::AtomAdServicesCobaltLoggerEventReported => "ATOM_AD_SERVICES_COBALT_LOGGER_EVENT_REPORTED",
4022            AtomId::AtomAdServicesCobaltPeriodicJobEventReported => "ATOM_AD_SERVICES_COBALT_PERIODIC_JOB_EVENT_REPORTED",
4023            AtomId::AtomUpdateSignalsProcessReported => "ATOM_UPDATE_SIGNALS_PROCESS_REPORTED",
4024            AtomId::AtomTopicsScheduleEpochJobSettingReported => "ATOM_TOPICS_SCHEDULE_EPOCH_JOB_SETTING_REPORTED",
4025            AtomId::AtomAiWallpapersButtonPressed => "ATOM_AI_WALLPAPERS_BUTTON_PRESSED",
4026            AtomId::AtomAiWallpapersTemplateSelected => "ATOM_AI_WALLPAPERS_TEMPLATE_SELECTED",
4027            AtomId::AtomAiWallpapersTermSelected => "ATOM_AI_WALLPAPERS_TERM_SELECTED",
4028            AtomId::AtomAiWallpapersWallpaperSet => "ATOM_AI_WALLPAPERS_WALLPAPER_SET",
4029            AtomId::AtomAiWallpapersSessionSummary => "ATOM_AI_WALLPAPERS_SESSION_SUMMARY",
4030            AtomId::AtomApexInstallationRequested => "ATOM_APEX_INSTALLATION_REQUESTED",
4031            AtomId::AtomApexInstallationStaged => "ATOM_APEX_INSTALLATION_STAGED",
4032            AtomId::AtomApexInstallationEnded => "ATOM_APEX_INSTALLATION_ENDED",
4033            AtomId::AtomAppSearchSetSchemaStatsReported => "ATOM_APP_SEARCH_SET_SCHEMA_STATS_REPORTED",
4034            AtomId::AtomAppSearchSchemaMigrationStatsReported => "ATOM_APP_SEARCH_SCHEMA_MIGRATION_STATS_REPORTED",
4035            AtomId::AtomAppSearchUsageSearchIntentStatsReported => "ATOM_APP_SEARCH_USAGE_SEARCH_INTENT_STATS_REPORTED",
4036            AtomId::AtomAppSearchUsageSearchIntentRawQueryStatsReported => "ATOM_APP_SEARCH_USAGE_SEARCH_INTENT_RAW_QUERY_STATS_REPORTED",
4037            AtomId::AtomAppSearchAppsIndexerStatsReported => "ATOM_APP_SEARCH_APPS_INDEXER_STATS_REPORTED",
4038            AtomId::AtomArtDatumReported => "ATOM_ART_DATUM_REPORTED",
4039            AtomId::AtomArtDeviceDatumReported => "ATOM_ART_DEVICE_DATUM_REPORTED",
4040            AtomId::AtomArtDatumDeltaReported => "ATOM_ART_DATUM_DELTA_REPORTED",
4041            AtomId::AtomArtDex2oatReported => "ATOM_ART_DEX2OAT_REPORTED",
4042            AtomId::AtomArtDeviceStatus => "ATOM_ART_DEVICE_STATUS",
4043            AtomId::AtomBackgroundDexoptJobEnded => "ATOM_BACKGROUND_DEXOPT_JOB_ENDED",
4044            AtomId::AtomPrerebootDexoptJobEnded => "ATOM_PREREBOOT_DEXOPT_JOB_ENDED",
4045            AtomId::AtomOdrefreshReported => "ATOM_ODREFRESH_REPORTED",
4046            AtomId::AtomOdsignReported => "ATOM_ODSIGN_REPORTED",
4047            AtomId::AtomAutofillUiEventReported => "ATOM_AUTOFILL_UI_EVENT_REPORTED",
4048            AtomId::AtomAutofillFillRequestReported => "ATOM_AUTOFILL_FILL_REQUEST_REPORTED",
4049            AtomId::AtomAutofillFillResponseReported => "ATOM_AUTOFILL_FILL_RESPONSE_REPORTED",
4050            AtomId::AtomAutofillSaveEventReported => "ATOM_AUTOFILL_SAVE_EVENT_REPORTED",
4051            AtomId::AtomAutofillSessionCommitted => "ATOM_AUTOFILL_SESSION_COMMITTED",
4052            AtomId::AtomAutofillFieldClassificationEventReported => "ATOM_AUTOFILL_FIELD_CLASSIFICATION_EVENT_REPORTED",
4053            AtomId::AtomCarRecentsEventReported => "ATOM_CAR_RECENTS_EVENT_REPORTED",
4054            AtomId::AtomCarCalmModeEventReported => "ATOM_CAR_CALM_MODE_EVENT_REPORTED",
4055            AtomId::AtomCarWakeupFromSuspendReported => "ATOM_CAR_WAKEUP_FROM_SUSPEND_REPORTED",
4056            AtomId::AtomPluginInitialized => "ATOM_PLUGIN_INITIALIZED",
4057            AtomId::AtomBluetoothHashedDeviceNameReported => "ATOM_BLUETOOTH_HASHED_DEVICE_NAME_REPORTED",
4058            AtomId::AtomBluetoothL2capCocClientConnection => "ATOM_BLUETOOTH_L2CAP_COC_CLIENT_CONNECTION",
4059            AtomId::AtomBluetoothL2capCocServerConnection => "ATOM_BLUETOOTH_L2CAP_COC_SERVER_CONNECTION",
4060            AtomId::AtomBluetoothLeSessionConnected => "ATOM_BLUETOOTH_LE_SESSION_CONNECTED",
4061            AtomId::AtomRestrictedBluetoothDeviceNameReported => "ATOM_RESTRICTED_BLUETOOTH_DEVICE_NAME_REPORTED",
4062            AtomId::AtomBluetoothProfileConnectionAttempted => "ATOM_BLUETOOTH_PROFILE_CONNECTION_ATTEMPTED",
4063            AtomId::AtomBluetoothContentProfileErrorReported => "ATOM_BLUETOOTH_CONTENT_PROFILE_ERROR_REPORTED",
4064            AtomId::AtomBluetoothRfcommConnectionAttempted => "ATOM_BLUETOOTH_RFCOMM_CONNECTION_ATTEMPTED",
4065            AtomId::AtomRemoteDeviceInformationWithMetricId => "ATOM_REMOTE_DEVICE_INFORMATION_WITH_METRIC_ID",
4066            AtomId::AtomLeAppScanStateChanged => "ATOM_LE_APP_SCAN_STATE_CHANGED",
4067            AtomId::AtomLeRadioScanStopped => "ATOM_LE_RADIO_SCAN_STOPPED",
4068            AtomId::AtomLeScanResultReceived => "ATOM_LE_SCAN_RESULT_RECEIVED",
4069            AtomId::AtomLeScanAbused => "ATOM_LE_SCAN_ABUSED",
4070            AtomId::AtomLeAdvStateChanged => "ATOM_LE_ADV_STATE_CHANGED",
4071            AtomId::AtomLeAdvErrorReported => "ATOM_LE_ADV_ERROR_REPORTED",
4072            AtomId::AtomA2dpSessionReported => "ATOM_A2DP_SESSION_REPORTED",
4073            AtomId::AtomBluetoothCrossLayerEventReported => "ATOM_BLUETOOTH_CROSS_LAYER_EVENT_REPORTED",
4074            AtomId::AtomBroadcastAudioSessionReported => "ATOM_BROADCAST_AUDIO_SESSION_REPORTED",
4075            AtomId::AtomBroadcastAudioSyncReported => "ATOM_BROADCAST_AUDIO_SYNC_REPORTED",
4076            AtomId::AtomBluetoothRfcommConnectionReportedAtClose => "ATOM_BLUETOOTH_RFCOMM_CONNECTION_REPORTED_AT_CLOSE",
4077            AtomId::AtomBluetoothLeConnection => "ATOM_BLUETOOTH_LE_CONNECTION",
4078            AtomId::AtomBroadcastSent => "ATOM_BROADCAST_SENT",
4079            AtomId::AtomCameraFeatureCombinationQueryEvent => "ATOM_CAMERA_FEATURE_COMBINATION_QUERY_EVENT",
4080            AtomId::AtomCertificateTransparencyLogListStateChanged => "ATOM_CERTIFICATE_TRANSPARENCY_LOG_LIST_STATE_CHANGED",
4081            AtomId::AtomCertificateTransparencyLogListUpdateFailed => "ATOM_CERTIFICATE_TRANSPARENCY_LOG_LIST_UPDATE_FAILED",
4082            AtomId::AtomDailyKeepaliveInfoReported => "ATOM_DAILY_KEEPALIVE_INFO_REPORTED",
4083            AtomId::AtomNetworkRequestStateChanged => "ATOM_NETWORK_REQUEST_STATE_CHANGED",
4084            AtomId::AtomTetheringActiveSessionsReported => "ATOM_TETHERING_ACTIVE_SESSIONS_REPORTED",
4085            AtomId::AtomNetworkStatsRecorderFileOperated => "ATOM_NETWORK_STATS_RECORDER_FILE_OPERATED",
4086            AtomId::AtomCoreNetworkingTerribleErrorOccurred => "ATOM_CORE_NETWORKING_TERRIBLE_ERROR_OCCURRED",
4087            AtomId::AtomApfSessionInfoReported => "ATOM_APF_SESSION_INFO_REPORTED",
4088            AtomId::AtomIpClientRaInfoReported => "ATOM_IP_CLIENT_RA_INFO_REPORTED",
4089            AtomId::AtomVpnConnectionStateChanged => "ATOM_VPN_CONNECTION_STATE_CHANGED",
4090            AtomId::AtomVpnConnectionReported => "ATOM_VPN_CONNECTION_REPORTED",
4091            AtomId::AtomCpuPolicy => "ATOM_CPU_POLICY",
4092            AtomId::AtomCredentialManagerApiCalled => "ATOM_CREDENTIAL_MANAGER_API_CALLED",
4093            AtomId::AtomCredentialManagerInitPhaseReported => "ATOM_CREDENTIAL_MANAGER_INIT_PHASE_REPORTED",
4094            AtomId::AtomCredentialManagerCandidatePhaseReported => "ATOM_CREDENTIAL_MANAGER_CANDIDATE_PHASE_REPORTED",
4095            AtomId::AtomCredentialManagerFinalPhaseReported => "ATOM_CREDENTIAL_MANAGER_FINAL_PHASE_REPORTED",
4096            AtomId::AtomCredentialManagerTotalReported => "ATOM_CREDENTIAL_MANAGER_TOTAL_REPORTED",
4097            AtomId::AtomCredentialManagerFinalnouidReported => "ATOM_CREDENTIAL_MANAGER_FINALNOUID_REPORTED",
4098            AtomId::AtomCredentialManagerGetReported => "ATOM_CREDENTIAL_MANAGER_GET_REPORTED",
4099            AtomId::AtomCredentialManagerAuthClickReported => "ATOM_CREDENTIAL_MANAGER_AUTH_CLICK_REPORTED",
4100            AtomId::AtomCredentialManagerApiv2Called => "ATOM_CREDENTIAL_MANAGER_APIV2_CALLED",
4101            AtomId::AtomCronetEngineCreated => "ATOM_CRONET_ENGINE_CREATED",
4102            AtomId::AtomCronetTrafficReported => "ATOM_CRONET_TRAFFIC_REPORTED",
4103            AtomId::AtomCronetEngineBuilderInitialized => "ATOM_CRONET_ENGINE_BUILDER_INITIALIZED",
4104            AtomId::AtomCronetHttpFlagsInitialized => "ATOM_CRONET_HTTP_FLAGS_INITIALIZED",
4105            AtomId::AtomCronetInitialized => "ATOM_CRONET_INITIALIZED",
4106            AtomId::AtomDesktopModeUiChanged => "ATOM_DESKTOP_MODE_UI_CHANGED",
4107            AtomId::AtomDesktopModeSessionTaskUpdate => "ATOM_DESKTOP_MODE_SESSION_TASK_UPDATE",
4108            AtomId::AtomDesktopModeTaskSizeUpdated => "ATOM_DESKTOP_MODE_TASK_SIZE_UPDATED",
4109            AtomId::AtomDeviceLockCheckInRequestReported => "ATOM_DEVICE_LOCK_CHECK_IN_REQUEST_REPORTED",
4110            AtomId::AtomDeviceLockProvisioningCompleteReported => "ATOM_DEVICE_LOCK_PROVISIONING_COMPLETE_REPORTED",
4111            AtomId::AtomDeviceLockKioskAppRequestReported => "ATOM_DEVICE_LOCK_KIOSK_APP_REQUEST_REPORTED",
4112            AtomId::AtomDeviceLockCheckInRetryReported => "ATOM_DEVICE_LOCK_CHECK_IN_RETRY_REPORTED",
4113            AtomId::AtomDeviceLockProvisionFailureReported => "ATOM_DEVICE_LOCK_PROVISION_FAILURE_REPORTED",
4114            AtomId::AtomDeviceLockLockUnlockDeviceFailureReported => "ATOM_DEVICE_LOCK_LOCK_UNLOCK_DEVICE_FAILURE_REPORTED",
4115            AtomId::AtomDevicePolicyManagementMode => "ATOM_DEVICE_POLICY_MANAGEMENT_MODE",
4116            AtomId::AtomDevicePolicyState => "ATOM_DEVICE_POLICY_STATE",
4117            AtomId::AtomDisplayModeDirectorVoteChanged => "ATOM_DISPLAY_MODE_DIRECTOR_VOTE_CHANGED",
4118            AtomId::AtomExternalDisplayStateChanged => "ATOM_EXTERNAL_DISPLAY_STATE_CHANGED",
4119            AtomId::AtomDndStateChanged => "ATOM_DND_STATE_CHANGED",
4120            AtomId::AtomDreamSettingChanged => "ATOM_DREAM_SETTING_CHANGED",
4121            AtomId::AtomDreamSettingSnapshot => "ATOM_DREAM_SETTING_SNAPSHOT",
4122            AtomId::AtomExpressEventReported => "ATOM_EXPRESS_EVENT_REPORTED",
4123            AtomId::AtomExpressHistogramSampleReported => "ATOM_EXPRESS_HISTOGRAM_SAMPLE_REPORTED",
4124            AtomId::AtomExpressUidEventReported => "ATOM_EXPRESS_UID_EVENT_REPORTED",
4125            AtomId::AtomExpressUidHistogramSampleReported => "ATOM_EXPRESS_UID_HISTOGRAM_SAMPLE_REPORTED",
4126            AtomId::AtomFederatedComputeApiCalled => "ATOM_FEDERATED_COMPUTE_API_CALLED",
4127            AtomId::AtomFederatedComputeTrainingEventReported => "ATOM_FEDERATED_COMPUTE_TRAINING_EVENT_REPORTED",
4128            AtomId::AtomExampleIteratorNextLatencyReported => "ATOM_EXAMPLE_ITERATOR_NEXT_LATENCY_REPORTED",
4129            AtomId::AtomFullScreenIntentLaunched => "ATOM_FULL_SCREEN_INTENT_LAUNCHED",
4130            AtomId::AtomBalAllowed => "ATOM_BAL_ALLOWED",
4131            AtomId::AtomInTaskActivityStarted => "ATOM_IN_TASK_ACTIVITY_STARTED",
4132            AtomId::AtomDeviceOrientationChanged => "ATOM_DEVICE_ORIENTATION_CHANGED",
4133            AtomId::AtomCachedAppsHighWatermark => "ATOM_CACHED_APPS_HIGH_WATERMARK",
4134            AtomId::AtomStylusPredictionMetricsReported => "ATOM_STYLUS_PREDICTION_METRICS_REPORTED",
4135            AtomId::AtomUserRiskEventReported => "ATOM_USER_RISK_EVENT_REPORTED",
4136            AtomId::AtomMediaProjectionStateChanged => "ATOM_MEDIA_PROJECTION_STATE_CHANGED",
4137            AtomId::AtomMediaProjectionTargetChanged => "ATOM_MEDIA_PROJECTION_TARGET_CHANGED",
4138            AtomId::AtomExcessiveBinderProxyCountReported => "ATOM_EXCESSIVE_BINDER_PROXY_COUNT_REPORTED",
4139            AtomId::AtomProxyBytesTransferByFgBg => "ATOM_PROXY_BYTES_TRANSFER_BY_FG_BG",
4140            AtomId::AtomMobileBytesTransferByProcState => "ATOM_MOBILE_BYTES_TRANSFER_BY_PROC_STATE",
4141            AtomId::AtomBiometricFrrNotification => "ATOM_BIOMETRIC_FRR_NOTIFICATION",
4142            AtomId::AtomSensitiveContentMediaProjectionSession => "ATOM_SENSITIVE_CONTENT_MEDIA_PROJECTION_SESSION",
4143            AtomId::AtomSensitiveNotificationAppProtectionSession => "ATOM_SENSITIVE_NOTIFICATION_APP_PROTECTION_SESSION",
4144            AtomId::AtomSensitiveNotificationAppProtectionApplied => "ATOM_SENSITIVE_NOTIFICATION_APP_PROTECTION_APPLIED",
4145            AtomId::AtomSensitiveNotificationRedaction => "ATOM_SENSITIVE_NOTIFICATION_REDACTION",
4146            AtomId::AtomSensitiveContentAppProtection => "ATOM_SENSITIVE_CONTENT_APP_PROTECTION",
4147            AtomId::AtomAppRestrictionStateChanged => "ATOM_APP_RESTRICTION_STATE_CHANGED",
4148            AtomId::AtomBatteryUsageStatsPerUid => "ATOM_BATTERY_USAGE_STATS_PER_UID",
4149            AtomId::AtomPostgcMemorySnapshot => "ATOM_POSTGC_MEMORY_SNAPSHOT",
4150            AtomId::AtomPowerSaveTempAllowlistChanged => "ATOM_POWER_SAVE_TEMP_ALLOWLIST_CHANGED",
4151            AtomId::AtomAppOpAccessTracked => "ATOM_APP_OP_ACCESS_TRACKED",
4152            AtomId::AtomContentOrFileUriEventReported => "ATOM_CONTENT_OR_FILE_URI_EVENT_REPORTED",
4153            AtomId::AtomApplicationGrammaticalInflectionChanged => "ATOM_APPLICATION_GRAMMATICAL_INFLECTION_CHANGED",
4154            AtomId::AtomSystemGrammaticalInflectionChanged => "ATOM_SYSTEM_GRAMMATICAL_INFLECTION_CHANGED",
4155            AtomId::AtomBatteryHealth => "ATOM_BATTERY_HEALTH",
4156            AtomId::AtomHdmiEarcStatusReported => "ATOM_HDMI_EARC_STATUS_REPORTED",
4157            AtomId::AtomHdmiSoundbarModeStatusReported => "ATOM_HDMI_SOUNDBAR_MODE_STATUS_REPORTED",
4158            AtomId::AtomHealthConnectApiCalled => "ATOM_HEALTH_CONNECT_API_CALLED",
4159            AtomId::AtomHealthConnectUsageStats => "ATOM_HEALTH_CONNECT_USAGE_STATS",
4160            AtomId::AtomHealthConnectStorageStats => "ATOM_HEALTH_CONNECT_STORAGE_STATS",
4161            AtomId::AtomHealthConnectApiInvoked => "ATOM_HEALTH_CONNECT_API_INVOKED",
4162            AtomId::AtomExerciseRouteApiCalled => "ATOM_EXERCISE_ROUTE_API_CALLED",
4163            AtomId::AtomHealthConnectExportInvoked => "ATOM_HEALTH_CONNECT_EXPORT_INVOKED",
4164            AtomId::AtomHealthConnectImportInvoked => "ATOM_HEALTH_CONNECT_IMPORT_INVOKED",
4165            AtomId::AtomHealthConnectExportImportStatsReported => "ATOM_HEALTH_CONNECT_EXPORT_IMPORT_STATS_REPORTED",
4166            AtomId::AtomHealthConnectUiImpression => "ATOM_HEALTH_CONNECT_UI_IMPRESSION",
4167            AtomId::AtomHealthConnectUiInteraction => "ATOM_HEALTH_CONNECT_UI_INTERACTION",
4168            AtomId::AtomHealthConnectAppOpenedReported => "ATOM_HEALTH_CONNECT_APP_OPENED_REPORTED",
4169            AtomId::AtomHotwordEgressSizeAtomReported => "ATOM_HOTWORD_EGRESS_SIZE_ATOM_REPORTED",
4170            AtomId::AtomIkeSessionTerminated => "ATOM_IKE_SESSION_TERMINATED",
4171            AtomId::AtomIkeLivenessCheckSessionValidated => "ATOM_IKE_LIVENESS_CHECK_SESSION_VALIDATED",
4172            AtomId::AtomNegotiatedSecurityAssociation => "ATOM_NEGOTIATED_SECURITY_ASSOCIATION",
4173            AtomId::AtomKeyboardConfigured => "ATOM_KEYBOARD_CONFIGURED",
4174            AtomId::AtomKeyboardSystemsEventReported => "ATOM_KEYBOARD_SYSTEMS_EVENT_REPORTED",
4175            AtomId::AtomInputdeviceUsageReported => "ATOM_INPUTDEVICE_USAGE_REPORTED",
4176            AtomId::AtomInputEventLatencyReported => "ATOM_INPUT_EVENT_LATENCY_REPORTED",
4177            AtomId::AtomTouchpadUsage => "ATOM_TOUCHPAD_USAGE",
4178            AtomId::AtomKernelOomKillOccurred => "ATOM_KERNEL_OOM_KILL_OCCURRED",
4179            AtomId::AtomEmergencyStateChanged => "ATOM_EMERGENCY_STATE_CHANGED",
4180            AtomId::AtomChreSignificantMotionStateChanged => "ATOM_CHRE_SIGNIFICANT_MOTION_STATE_CHANGED",
4181            AtomId::AtomPopulationDensityProviderLoadingReported => "ATOM_POPULATION_DENSITY_PROVIDER_LOADING_REPORTED",
4182            AtomId::AtomDensityBasedCoarseLocationsUsageReported => "ATOM_DENSITY_BASED_COARSE_LOCATIONS_USAGE_REPORTED",
4183            AtomId::AtomDensityBasedCoarseLocationsProviderQueryReported => "ATOM_DENSITY_BASED_COARSE_LOCATIONS_PROVIDER_QUERY_REPORTED",
4184            AtomId::AtomMediaCodecReclaimRequestCompleted => "ATOM_MEDIA_CODEC_RECLAIM_REQUEST_COMPLETED",
4185            AtomId::AtomMediaCodecStarted => "ATOM_MEDIA_CODEC_STARTED",
4186            AtomId::AtomMediaCodecStopped => "ATOM_MEDIA_CODEC_STOPPED",
4187            AtomId::AtomMediaCodecRendered => "ATOM_MEDIA_CODEC_RENDERED",
4188            AtomId::AtomMediaEditingEndedReported => "ATOM_MEDIA_EDITING_ENDED_REPORTED",
4189            AtomId::AtomMteState => "ATOM_MTE_STATE",
4190            AtomId::AtomMicroxrDeviceBootCompleteReported => "ATOM_MICROXR_DEVICE_BOOT_COMPLETE_REPORTED",
4191            AtomId::AtomNfcObserveModeStateChanged => "ATOM_NFC_OBSERVE_MODE_STATE_CHANGED",
4192            AtomId::AtomNfcFieldChanged => "ATOM_NFC_FIELD_CHANGED",
4193            AtomId::AtomNfcPollingLoopNotificationReported => "ATOM_NFC_POLLING_LOOP_NOTIFICATION_REPORTED",
4194            AtomId::AtomNfcProprietaryCapabilitiesReported => "ATOM_NFC_PROPRIETARY_CAPABILITIES_REPORTED",
4195            AtomId::AtomOndevicepersonalizationApiCalled => "ATOM_ONDEVICEPERSONALIZATION_API_CALLED",
4196            AtomId::AtomComponentStateChangedReported => "ATOM_COMPONENT_STATE_CHANGED_REPORTED",
4197            AtomId::AtomPdfLoadReported => "ATOM_PDF_LOAD_REPORTED",
4198            AtomId::AtomPdfApiUsageReported => "ATOM_PDF_API_USAGE_REPORTED",
4199            AtomId::AtomPdfSearchReported => "ATOM_PDF_SEARCH_REPORTED",
4200            AtomId::AtomPressureStallInformation => "ATOM_PRESSURE_STALL_INFORMATION",
4201            AtomId::AtomPermissionRationaleDialogViewed => "ATOM_PERMISSION_RATIONALE_DIALOG_VIEWED",
4202            AtomId::AtomPermissionRationaleDialogActionReported => "ATOM_PERMISSION_RATIONALE_DIALOG_ACTION_REPORTED",
4203            AtomId::AtomAppDataSharingUpdatesNotificationInteraction => "ATOM_APP_DATA_SHARING_UPDATES_NOTIFICATION_INTERACTION",
4204            AtomId::AtomAppDataSharingUpdatesFragmentViewed => "ATOM_APP_DATA_SHARING_UPDATES_FRAGMENT_VIEWED",
4205            AtomId::AtomAppDataSharingUpdatesFragmentActionReported => "ATOM_APP_DATA_SHARING_UPDATES_FRAGMENT_ACTION_REPORTED",
4206            AtomId::AtomEnhancedConfirmationDialogResultReported => "ATOM_ENHANCED_CONFIRMATION_DIALOG_RESULT_REPORTED",
4207            AtomId::AtomEnhancedConfirmationRestrictionCleared => "ATOM_ENHANCED_CONFIRMATION_RESTRICTION_CLEARED",
4208            AtomId::AtomPhotopickerSessionInfoReported => "ATOM_PHOTOPICKER_SESSION_INFO_REPORTED",
4209            AtomId::AtomPhotopickerApiInfoReported => "ATOM_PHOTOPICKER_API_INFO_REPORTED",
4210            AtomId::AtomPhotopickerUiEventLogged => "ATOM_PHOTOPICKER_UI_EVENT_LOGGED",
4211            AtomId::AtomPhotopickerMediaItemStatusReported => "ATOM_PHOTOPICKER_MEDIA_ITEM_STATUS_REPORTED",
4212            AtomId::AtomPhotopickerPreviewInfoLogged => "ATOM_PHOTOPICKER_PREVIEW_INFO_LOGGED",
4213            AtomId::AtomPhotopickerMenuInteractionLogged => "ATOM_PHOTOPICKER_MENU_INTERACTION_LOGGED",
4214            AtomId::AtomPhotopickerBannerInteractionLogged => "ATOM_PHOTOPICKER_BANNER_INTERACTION_LOGGED",
4215            AtomId::AtomPhotopickerMediaLibraryInfoLogged => "ATOM_PHOTOPICKER_MEDIA_LIBRARY_INFO_LOGGED",
4216            AtomId::AtomPhotopickerPageInfoLogged => "ATOM_PHOTOPICKER_PAGE_INFO_LOGGED",
4217            AtomId::AtomPhotopickerMediaGridSyncInfoReported => "ATOM_PHOTOPICKER_MEDIA_GRID_SYNC_INFO_REPORTED",
4218            AtomId::AtomPhotopickerAlbumSyncInfoReported => "ATOM_PHOTOPICKER_ALBUM_SYNC_INFO_REPORTED",
4219            AtomId::AtomPhotopickerSearchInfoReported => "ATOM_PHOTOPICKER_SEARCH_INFO_REPORTED",
4220            AtomId::AtomSearchDataExtractionDetailsReported => "ATOM_SEARCH_DATA_EXTRACTION_DETAILS_REPORTED",
4221            AtomId::AtomEmbeddedPhotopickerInfoReported => "ATOM_EMBEDDED_PHOTOPICKER_INFO_REPORTED",
4222            AtomId::AtomAtom9999 => "ATOM_ATOM_9999",
4223            AtomId::AtomAtom99999 => "ATOM_ATOM_99999",
4224            AtomId::AtomScreenOffReported => "ATOM_SCREEN_OFF_REPORTED",
4225            AtomId::AtomScreenTimeoutOverrideReported => "ATOM_SCREEN_TIMEOUT_OVERRIDE_REPORTED",
4226            AtomId::AtomScreenInteractiveSessionReported => "ATOM_SCREEN_INTERACTIVE_SESSION_REPORTED",
4227            AtomId::AtomScreenDimReported => "ATOM_SCREEN_DIM_REPORTED",
4228            AtomId::AtomMediaProviderDatabaseRollbackReported => "ATOM_MEDIA_PROVIDER_DATABASE_ROLLBACK_REPORTED",
4229            AtomId::AtomBackupSetupStatusReported => "ATOM_BACKUP_SETUP_STATUS_REPORTED",
4230            AtomId::AtomRangingSessionConfigured => "ATOM_RANGING_SESSION_CONFIGURED",
4231            AtomId::AtomRangingSessionStarted => "ATOM_RANGING_SESSION_STARTED",
4232            AtomId::AtomRangingSessionClosed => "ATOM_RANGING_SESSION_CLOSED",
4233            AtomId::AtomRangingTechnologyStarted => "ATOM_RANGING_TECHNOLOGY_STARTED",
4234            AtomId::AtomRangingTechnologyStopped => "ATOM_RANGING_TECHNOLOGY_STOPPED",
4235            AtomId::AtomRkpdPoolStats => "ATOM_RKPD_POOL_STATS",
4236            AtomId::AtomRkpdClientOperation => "ATOM_RKPD_CLIENT_OPERATION",
4237            AtomId::AtomSandboxApiCalled => "ATOM_SANDBOX_API_CALLED",
4238            AtomId::AtomSandboxActivityEventOccurred => "ATOM_SANDBOX_ACTIVITY_EVENT_OCCURRED",
4239            AtomId::AtomSdkSandboxRestrictedAccessInSession => "ATOM_SDK_SANDBOX_RESTRICTED_ACCESS_IN_SESSION",
4240            AtomId::AtomSandboxSdkStorage => "ATOM_SANDBOX_SDK_STORAGE",
4241            AtomId::AtomSelinuxAuditLog => "ATOM_SELINUX_AUDIT_LOG",
4242            AtomId::AtomSettingsSpaReported => "ATOM_SETTINGS_SPA_REPORTED",
4243            AtomId::AtomTestExtensionAtomReported => "ATOM_TEST_EXTENSION_ATOM_REPORTED",
4244            AtomId::AtomTestRestrictedAtomReported => "ATOM_TEST_RESTRICTED_ATOM_REPORTED",
4245            AtomId::AtomStatsSocketLossReported => "ATOM_STATS_SOCKET_LOSS_REPORTED",
4246            AtomId::AtomLockscreenShortcutSelected => "ATOM_LOCKSCREEN_SHORTCUT_SELECTED",
4247            AtomId::AtomLockscreenShortcutTriggered => "ATOM_LOCKSCREEN_SHORTCUT_TRIGGERED",
4248            AtomId::AtomLauncherImpressionEventV2 => "ATOM_LAUNCHER_IMPRESSION_EVENT_V2",
4249            AtomId::AtomDisplaySwitchLatencyTracked => "ATOM_DISPLAY_SWITCH_LATENCY_TRACKED",
4250            AtomId::AtomNotificationListenerService => "ATOM_NOTIFICATION_LISTENER_SERVICE",
4251            AtomId::AtomNavHandleTouchPoints => "ATOM_NAV_HANDLE_TOUCH_POINTS",
4252            AtomId::AtomCommunalHubWidgetEventReported => "ATOM_COMMUNAL_HUB_WIDGET_EVENT_REPORTED",
4253            AtomId::AtomCommunalHubSnapshot => "ATOM_COMMUNAL_HUB_SNAPSHOT",
4254            AtomId::AtomEmergencyNumberDialed => "ATOM_EMERGENCY_NUMBER_DIALED",
4255            AtomId::AtomCallStats => "ATOM_CALL_STATS",
4256            AtomId::AtomCallAudioRouteStats => "ATOM_CALL_AUDIO_ROUTE_STATS",
4257            AtomId::AtomTelecomApiStats => "ATOM_TELECOM_API_STATS",
4258            AtomId::AtomTelecomErrorStats => "ATOM_TELECOM_ERROR_STATS",
4259            AtomId::AtomCellularRadioPowerStateChanged => "ATOM_CELLULAR_RADIO_POWER_STATE_CHANGED",
4260            AtomId::AtomEmergencyNumbersInfo => "ATOM_EMERGENCY_NUMBERS_INFO",
4261            AtomId::AtomDataNetworkValidation => "ATOM_DATA_NETWORK_VALIDATION",
4262            AtomId::AtomDataRatStateChanged => "ATOM_DATA_RAT_STATE_CHANGED",
4263            AtomId::AtomConnectedChannelChanged => "ATOM_CONNECTED_CHANNEL_CHANGED",
4264            AtomId::AtomIwlanUnderlyingNetworkValidationResultReported => "ATOM_IWLAN_UNDERLYING_NETWORK_VALIDATION_RESULT_REPORTED",
4265            AtomId::AtomQualifiedRatListChanged => "ATOM_QUALIFIED_RAT_LIST_CHANGED",
4266            AtomId::AtomQnsImsCallDropStats => "ATOM_QNS_IMS_CALL_DROP_STATS",
4267            AtomId::AtomQnsFallbackRestrictionChanged => "ATOM_QNS_FALLBACK_RESTRICTION_CHANGED",
4268            AtomId::AtomQnsRatPreferenceMismatchInfo => "ATOM_QNS_RAT_PREFERENCE_MISMATCH_INFO",
4269            AtomId::AtomQnsHandoverTimeMillis => "ATOM_QNS_HANDOVER_TIME_MILLIS",
4270            AtomId::AtomQnsHandoverPingpong => "ATOM_QNS_HANDOVER_PINGPONG",
4271            AtomId::AtomSatelliteController => "ATOM_SATELLITE_CONTROLLER",
4272            AtomId::AtomSatelliteSession => "ATOM_SATELLITE_SESSION",
4273            AtomId::AtomSatelliteIncomingDatagram => "ATOM_SATELLITE_INCOMING_DATAGRAM",
4274            AtomId::AtomSatelliteOutgoingDatagram => "ATOM_SATELLITE_OUTGOING_DATAGRAM",
4275            AtomId::AtomSatelliteProvision => "ATOM_SATELLITE_PROVISION",
4276            AtomId::AtomSatelliteSosMessageRecommender => "ATOM_SATELLITE_SOS_MESSAGE_RECOMMENDER",
4277            AtomId::AtomCarrierRoamingSatelliteSession => "ATOM_CARRIER_ROAMING_SATELLITE_SESSION",
4278            AtomId::AtomCarrierRoamingSatelliteControllerStats => "ATOM_CARRIER_ROAMING_SATELLITE_CONTROLLER_STATS",
4279            AtomId::AtomControllerStatsPerPackage => "ATOM_CONTROLLER_STATS_PER_PACKAGE",
4280            AtomId::AtomSatelliteEntitlement => "ATOM_SATELLITE_ENTITLEMENT",
4281            AtomId::AtomSatelliteConfigUpdater => "ATOM_SATELLITE_CONFIG_UPDATER",
4282            AtomId::AtomSatelliteAccessController => "ATOM_SATELLITE_ACCESS_CONTROLLER",
4283            AtomId::AtomCellularIdentifierDisclosed => "ATOM_CELLULAR_IDENTIFIER_DISCLOSED",
4284            AtomId::AtomThreadnetworkTelemetryDataReported => "ATOM_THREADNETWORK_TELEMETRY_DATA_REPORTED",
4285            AtomId::AtomThreadnetworkTopoEntryRepeated => "ATOM_THREADNETWORK_TOPO_ENTRY_REPEATED",
4286            AtomId::AtomThreadnetworkDeviceInfoReported => "ATOM_THREADNETWORK_DEVICE_INFO_REPORTED",
4287            AtomId::AtomBootIntegrityInfoReported => "ATOM_BOOT_INTEGRITY_INFO_REPORTED",
4288            AtomId::AtomTvLowPowerStandbyPolicy => "ATOM_TV_LOW_POWER_STANDBY_POLICY",
4289            AtomId::AtomExternalTvInputEvent => "ATOM_EXTERNAL_TV_INPUT_EVENT",
4290            AtomId::AtomTestUprobestatsAtomReported => "ATOM_TEST_UPROBESTATS_ATOM_REPORTED",
4291            AtomId::AtomUwbActivityInfo => "ATOM_UWB_ACTIVITY_INFO",
4292            AtomId::AtomMediatorUpdated => "ATOM_MEDIATOR_UPDATED",
4293            AtomId::AtomSysproxyBluetoothBytesTransfer => "ATOM_SYSPROXY_BLUETOOTH_BYTES_TRANSFER",
4294            AtomId::AtomSysproxyConnectionUpdated => "ATOM_SYSPROXY_CONNECTION_UPDATED",
4295            AtomId::AtomWearCompanionConnectionState => "ATOM_WEAR_COMPANION_CONNECTION_STATE",
4296            AtomId::AtomMediaActionReported => "ATOM_MEDIA_ACTION_REPORTED",
4297            AtomId::AtomMediaControlsLaunched => "ATOM_MEDIA_CONTROLS_LAUNCHED",
4298            AtomId::AtomMediaSessionStateChanged => "ATOM_MEDIA_SESSION_STATE_CHANGED",
4299            AtomId::AtomWearMediaOutputSwitcherDeviceScanApiLatency => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_DEVICE_SCAN_API_LATENCY",
4300            AtomId::AtomWearMediaOutputSwitcherSassDeviceUnavailable => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_SASS_DEVICE_UNAVAILABLE",
4301            AtomId::AtomWearMediaOutputSwitcherFastpairApiTimeout => "ATOM_WEAR_MEDIA_OUTPUT_SWITCHER_FASTPAIR_API_TIMEOUT",
4302            AtomId::AtomWearModeStateChanged => "ATOM_WEAR_MODE_STATE_CHANGED",
4303            AtomId::AtomRendererInitialized => "ATOM_RENDERER_INITIALIZED",
4304            AtomId::AtomSchemaVersionReceived => "ATOM_SCHEMA_VERSION_RECEIVED",
4305            AtomId::AtomLayoutInspected => "ATOM_LAYOUT_INSPECTED",
4306            AtomId::AtomLayoutExpressionInspected => "ATOM_LAYOUT_EXPRESSION_INSPECTED",
4307            AtomId::AtomLayoutAnimationsInspected => "ATOM_LAYOUT_ANIMATIONS_INSPECTED",
4308            AtomId::AtomMaterialComponentsInspected => "ATOM_MATERIAL_COMPONENTS_INSPECTED",
4309            AtomId::AtomTileRequested => "ATOM_TILE_REQUESTED",
4310            AtomId::AtomStateResponseReceived => "ATOM_STATE_RESPONSE_RECEIVED",
4311            AtomId::AtomTileResponseReceived => "ATOM_TILE_RESPONSE_RECEIVED",
4312            AtomId::AtomInflationFinished => "ATOM_INFLATION_FINISHED",
4313            AtomId::AtomInflationFailed => "ATOM_INFLATION_FAILED",
4314            AtomId::AtomIgnoredInflationFailuresReported => "ATOM_IGNORED_INFLATION_FAILURES_REPORTED",
4315            AtomId::AtomDrawableRendered => "ATOM_DRAWABLE_RENDERED",
4316            AtomId::AtomWearTimeSyncRequested => "ATOM_WEAR_TIME_SYNC_REQUESTED",
4317            AtomId::AtomWearTimeUpdateStarted => "ATOM_WEAR_TIME_UPDATE_STARTED",
4318            AtomId::AtomWearTimeSyncAttemptCompleted => "ATOM_WEAR_TIME_SYNC_ATTEMPT_COMPLETED",
4319            AtomId::AtomWearTimeChanged => "ATOM_WEAR_TIME_CHANGED",
4320            AtomId::AtomWearAdaptiveSuspendStatsReported => "ATOM_WEAR_ADAPTIVE_SUSPEND_STATS_REPORTED",
4321            AtomId::AtomWearPowerAnomalyServiceOperationalStatsReported => "ATOM_WEAR_POWER_ANOMALY_SERVICE_OPERATIONAL_STATS_REPORTED",
4322            AtomId::AtomWearPowerAnomalyServiceEventStatsReported => "ATOM_WEAR_POWER_ANOMALY_SERVICE_EVENT_STATS_REPORTED",
4323            AtomId::AtomWsWearTimeSession => "ATOM_WS_WEAR_TIME_SESSION",
4324            AtomId::AtomWsIncomingCallActionReported => "ATOM_WS_INCOMING_CALL_ACTION_REPORTED",
4325            AtomId::AtomWsCallDisconnectionReported => "ATOM_WS_CALL_DISCONNECTION_REPORTED",
4326            AtomId::AtomWsCallDurationReported => "ATOM_WS_CALL_DURATION_REPORTED",
4327            AtomId::AtomWsCallUserExperienceLatencyReported => "ATOM_WS_CALL_USER_EXPERIENCE_LATENCY_REPORTED",
4328            AtomId::AtomWsCallInteractionReported => "ATOM_WS_CALL_INTERACTION_REPORTED",
4329            AtomId::AtomWsOnBodyStateChanged => "ATOM_WS_ON_BODY_STATE_CHANGED",
4330            AtomId::AtomWsWatchFaceRestrictedComplicationsImpacted => "ATOM_WS_WATCH_FACE_RESTRICTED_COMPLICATIONS_IMPACTED",
4331            AtomId::AtomWsWatchFaceDefaultRestrictedComplicationsRemoved => "ATOM_WS_WATCH_FACE_DEFAULT_RESTRICTED_COMPLICATIONS_REMOVED",
4332            AtomId::AtomWsComplicationsImpactedNotificationEventReported => "ATOM_WS_COMPLICATIONS_IMPACTED_NOTIFICATION_EVENT_REPORTED",
4333            AtomId::AtomWsRemoteEventUsageReported => "ATOM_WS_REMOTE_EVENT_USAGE_REPORTED",
4334            AtomId::AtomWsBugreportRequested => "ATOM_WS_BUGREPORT_REQUESTED",
4335            AtomId::AtomWsBugreportTriggered => "ATOM_WS_BUGREPORT_TRIGGERED",
4336            AtomId::AtomWsBugreportFinished => "ATOM_WS_BUGREPORT_FINISHED",
4337            AtomId::AtomWsBugreportResultReceived => "ATOM_WS_BUGREPORT_RESULT_RECEIVED",
4338            AtomId::AtomWsStandaloneModeSnapshot => "ATOM_WS_STANDALONE_MODE_SNAPSHOT",
4339            AtomId::AtomWsFavoriteWatchFaceSnapshot => "ATOM_WS_FAVORITE_WATCH_FACE_SNAPSHOT",
4340            AtomId::AtomWsPhotosWatchFaceFeatureSnapshot => "ATOM_WS_PHOTOS_WATCH_FACE_FEATURE_SNAPSHOT",
4341            AtomId::AtomWsWatchFaceCustomizationSnapshot => "ATOM_WS_WATCH_FACE_CUSTOMIZATION_SNAPSHOT",
4342            AtomId::AtomWearPowerMenuOpened => "ATOM_WEAR_POWER_MENU_OPENED",
4343            AtomId::AtomWearAssistantOpened => "ATOM_WEAR_ASSISTANT_OPENED",
4344            AtomId::AtomFirstOverlayStateChanged => "ATOM_FIRST_OVERLAY_STATE_CHANGED",
4345            AtomId::AtomWifiAwareNdpReported => "ATOM_WIFI_AWARE_NDP_REPORTED",
4346            AtomId::AtomWifiAwareAttachReported => "ATOM_WIFI_AWARE_ATTACH_REPORTED",
4347            AtomId::AtomWifiSelfRecoveryTriggered => "ATOM_WIFI_SELF_RECOVERY_TRIGGERED",
4348            AtomId::AtomSoftApStarted => "ATOM_SOFT_AP_STARTED",
4349            AtomId::AtomSoftApStopped => "ATOM_SOFT_AP_STOPPED",
4350            AtomId::AtomWifiLockReleased => "ATOM_WIFI_LOCK_RELEASED",
4351            AtomId::AtomWifiLockDeactivated => "ATOM_WIFI_LOCK_DEACTIVATED",
4352            AtomId::AtomWifiConfigSaved => "ATOM_WIFI_CONFIG_SAVED",
4353            AtomId::AtomWifiAwareResourceUsingChanged => "ATOM_WIFI_AWARE_RESOURCE_USING_CHANGED",
4354            AtomId::AtomWifiAwareHalApiCalled => "ATOM_WIFI_AWARE_HAL_API_CALLED",
4355            AtomId::AtomWifiLocalOnlyRequestReceived => "ATOM_WIFI_LOCAL_ONLY_REQUEST_RECEIVED",
4356            AtomId::AtomWifiLocalOnlyRequestScanTriggered => "ATOM_WIFI_LOCAL_ONLY_REQUEST_SCAN_TRIGGERED",
4357            AtomId::AtomWifiThreadTaskExecuted => "ATOM_WIFI_THREAD_TASK_EXECUTED",
4358            AtomId::AtomWifiStateChanged => "ATOM_WIFI_STATE_CHANGED",
4359            AtomId::AtomPnoScanStarted => "ATOM_PNO_SCAN_STARTED",
4360            AtomId::AtomPnoScanStopped => "ATOM_PNO_SCAN_STOPPED",
4361            AtomId::AtomWifiIsUnusableReported => "ATOM_WIFI_IS_UNUSABLE_REPORTED",
4362            AtomId::AtomWifiApCapabilitiesReported => "ATOM_WIFI_AP_CAPABILITIES_REPORTED",
4363            AtomId::AtomSoftApStateChanged => "ATOM_SOFT_AP_STATE_CHANGED",
4364            AtomId::AtomScorerPredictionResultReported => "ATOM_SCORER_PREDICTION_RESULT_REPORTED",
4365            AtomId::AtomWifiAwareCapabilities => "ATOM_WIFI_AWARE_CAPABILITIES",
4366            AtomId::AtomWifiModuleInfo => "ATOM_WIFI_MODULE_INFO",
4367            AtomId::AtomWifiSettingInfo => "ATOM_WIFI_SETTING_INFO",
4368            AtomId::AtomWifiComplexSettingInfo => "ATOM_WIFI_COMPLEX_SETTING_INFO",
4369            AtomId::AtomWifiConfiguredNetworkInfo => "ATOM_WIFI_CONFIGURED_NETWORK_INFO",
4370        }
4371    }
4372}
4373/// This file is named 'statsd_tracing_config.proto' rather than
4374/// 'statsd_config.proto' (which would be more consistent with the other
4375/// config protos) so it doesn't show up and confuse folks looking for
4376/// the existing statsd_config.proto for configuring statsd itself.
4377/// Same for the config proto itself.
4378#[derive(Clone, PartialEq, ::prost::Message)]
4379pub struct StatsdTracingConfig {
4380    /// This is for the common case of the atom id being known in the enum AtomId.
4381    #[prost(enumeration="AtomId", repeated, packed="false", tag="1")]
4382    pub push_atom_id: ::prost::alloc::vec::Vec<i32>,
4383    /// Escape hatch for Atom IDs that are not yet in the AtomId enum
4384    /// (e.g. non-upstream atoms that don't exist in AOSP).
4385    #[prost(int32, repeated, packed="false", tag="2")]
4386    pub raw_push_atom_id: ::prost::alloc::vec::Vec<i32>,
4387    #[prost(message, repeated, tag="3")]
4388    pub pull_config: ::prost::alloc::vec::Vec<StatsdPullAtomConfig>,
4389}
4390#[derive(Clone, PartialEq, ::prost::Message)]
4391pub struct StatsdPullAtomConfig {
4392    #[prost(enumeration="AtomId", repeated, packed="false", tag="1")]
4393    pub pull_atom_id: ::prost::alloc::vec::Vec<i32>,
4394    #[prost(int32, repeated, packed="false", tag="2")]
4395    pub raw_pull_atom_id: ::prost::alloc::vec::Vec<i32>,
4396    #[prost(int32, optional, tag="3")]
4397    pub pull_frequency_ms: ::core::option::Option<i32>,
4398    #[prost(string, repeated, tag="4")]
4399    pub packages: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4400}
4401#[derive(Clone, PartialEq, ::prost::Message)]
4402pub struct ProcessStatsConfig {
4403    #[prost(enumeration="process_stats_config::Quirks", repeated, packed="false", tag="1")]
4404    pub quirks: ::prost::alloc::vec::Vec<i32>,
4405    /// If enabled all processes will be scanned and dumped when the trace starts.
4406    #[prost(bool, optional, tag="2")]
4407    pub scan_all_processes_on_start: ::core::option::Option<bool>,
4408    /// If enabled thread names are also recoded (this is redundant if sched_switch
4409    /// is enabled).
4410    #[prost(bool, optional, tag="3")]
4411    pub record_thread_names: ::core::option::Option<bool>,
4412    /// If > 0 samples counters (see process_stats.proto) from
4413    /// /proc/pid/status and oom_score_adj every X ms.
4414    /// It will also sample /proc/pid/smaps_rollup if scan_smaps_rollup = true.
4415    /// This is required to be > 100ms to avoid excessive CPU usage.
4416    #[prost(uint32, optional, tag="4")]
4417    pub proc_stats_poll_ms: ::core::option::Option<u32>,
4418    // id 5 never used
4419
4420    /// This is required to be either = 0 or a multiple of |proc_stats_poll_ms|
4421    /// (default: |proc_stats_poll_ms|). If = 0, will be set to
4422    /// |proc_stats_poll_ms|. Non-multiples will be rounded down to the nearest
4423    /// multiple.
4424    #[prost(uint32, optional, tag="6")]
4425    pub proc_stats_cache_ttl_ms: ::core::option::Option<u32>,
4426    /// Niche feature: If true this will resolve file descriptors for each process
4427    /// so these can be mapped to their actual device or file.
4428    /// Requires raw_syscalls/sys_{enter,exit} ftrace events to be enabled or
4429    /// new fds opened after initially scanning a process will not be
4430    /// recognized.
4431    #[prost(bool, optional, tag="9")]
4432    pub resolve_process_fds: ::core::option::Option<bool>,
4433    /// If true, output will include memory stats from /proc/pid/smaps_rollup.
4434    ///
4435    /// Does NOT work with the Android system daemon by default, as it requires
4436    /// running the recording process (traced_probes or tracebox) as root. It is
4437    /// possible to avoid the root requirement, but the exact steps depend on the
4438    /// Linux distibution. The proc file requires passing a PTRACE_MODE_READ
4439    /// check, and might be further covered by the procfs "hidepid" mount option.
4440    #[prost(bool, optional, tag="10")]
4441    pub scan_smaps_rollup: ::core::option::Option<bool>,
4442    /// If true: process descriptions will include process age (starttime in
4443    /// /proc/pid/stat).
4444    /// Introduced in: perfetto v44.
4445    #[prost(bool, optional, tag="11")]
4446    pub record_process_age: ::core::option::Option<bool>,
4447    /// If true and |proc_stats_poll_ms| is true, process stats will include time
4448    /// spent running in user/kernel mode (utime/stime in /proc/pid/stat).
4449    /// Introduced in: perfetto v44.
4450    #[prost(bool, optional, tag="12")]
4451    pub record_process_runtime: ::core::option::Option<bool>,
4452}
4453/// Nested message and enum types in `ProcessStatsConfig`.
4454pub mod process_stats_config {
4455    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
4456    #[repr(i32)]
4457    pub enum Quirks {
4458        Unspecified = 0,
4459        /// This has been deprecated and ignored as per 2018-05-01. Full scan at
4460        /// startup is now disabled by default and can be re-enabled using the
4461        /// |scan_all_processes_on_start| arg.
4462        DisableInitialDump = 1,
4463        DisableOnDemand = 2,
4464    }
4465    impl Quirks {
4466        /// String value of the enum field names used in the ProtoBuf definition.
4467        ///
4468        /// The values are not transformed in any way and thus are considered stable
4469        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
4470        pub fn as_str_name(&self) -> &'static str {
4471            match self {
4472                Quirks::Unspecified => "QUIRKS_UNSPECIFIED",
4473                Quirks::DisableInitialDump => "DISABLE_INITIAL_DUMP",
4474                Quirks::DisableOnDemand => "DISABLE_ON_DEMAND",
4475            }
4476        }
4477    }
4478}
4479/// Configuration for go/heapprofd.
4480/// Next id: 28
4481#[derive(Clone, PartialEq, ::prost::Message)]
4482pub struct HeapprofdConfig {
4483    /// Sampling rate for all heaps not specified via heap_sampling_intervals.
4484    ///
4485    /// These are:
4486    /// * All heaps if heap_sampling_intervals is empty.
4487    /// * Those profiled due to all_heaps and not named in heaps if
4488    ///    heap_sampling_intervals is not empty.
4489    /// * The implicit libc.malloc heap if heaps is empty.
4490    ///
4491    /// Set to 1 for perfect accuracy.
4492    /// Otherwise, sample every sample_interval_bytes on average.
4493    ///
4494    /// See
4495    /// <https://perfetto.dev/docs/data-sources/native-heap-profiler#sampling-interval>
4496    /// for more details.
4497    ///
4498    /// BUGS
4499    /// Before Android 12, setting this to 0 would crash the target process.
4500    ///
4501    /// N.B. This must be explicitly set to a non-zero value for all heaps (with
4502    /// this field or with heap_sampling_intervals), otherwise the producer will
4503    /// not start.
4504    #[prost(uint64, optional, tag="1")]
4505    pub sampling_interval_bytes: ::core::option::Option<u64>,
4506    /// If less than the given numbers of bytes are left free in the shared
4507    /// memory buffer, increase sampling interval by a factor of two.
4508    /// Adaptive sampling is disabled when set to 0.
4509    #[prost(uint64, optional, tag="24")]
4510    pub adaptive_sampling_shmem_threshold: ::core::option::Option<u64>,
4511    /// Stop doubling the sampling_interval once the sampling interval has reached
4512    /// this value.
4513    #[prost(uint64, optional, tag="25")]
4514    pub adaptive_sampling_max_sampling_interval_bytes: ::core::option::Option<u64>,
4515    /// E.g. surfaceflinger, com.android.phone
4516    /// This input is normalized in the following way: if it contains slashes,
4517    /// everything up to the last slash is discarded. If it contains "@",
4518    /// everything after the first @ is discared.
4519    /// E.g. /system/bin/surfaceflinger@1.0 normalizes to surfaceflinger.
4520    /// This transformation is also applied to the processes' command lines when
4521    /// matching.
4522    #[prost(string, repeated, tag="2")]
4523    pub process_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4524    /// For watermark based triggering or local debugging.
4525    #[prost(uint64, repeated, packed="false", tag="4")]
4526    pub pid: ::prost::alloc::vec::Vec<u64>,
4527    /// Only profile target if it was installed by one of the packages given.
4528    /// Special values are:
4529    /// * @system: installed on the system partition
4530    /// * @product: installed on the product partition
4531    /// * @null: sideloaded
4532    /// Supported on Android 12+.
4533    #[prost(string, repeated, tag="26")]
4534    pub target_installed_by: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4535    /// Which heaps to sample, e.g. "libc.malloc". If left empty, only samples
4536    /// "malloc".
4537    ///
4538    /// Introduced in Android 12.
4539    #[prost(string, repeated, tag="20")]
4540    pub heaps: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4541    /// Which heaps not to sample, e.g. "libc.malloc". This is useful when used in
4542    /// combination with all_heaps;
4543    ///
4544    /// Introduced in Android 12.
4545    #[prost(string, repeated, tag="27")]
4546    pub exclude_heaps: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4547    #[prost(bool, optional, tag="23")]
4548    pub stream_allocations: ::core::option::Option<bool>,
4549    /// If given, needs to be the same length as heaps and gives the sampling
4550    /// interval for the respective entry in heaps.
4551    ///
4552    /// Otherwise, sampling_interval_bytes is used.
4553    ///
4554    /// It is recommended to set sampling_interval_bytes to a reasonable default
4555    /// value when using this, as a value of 0 for sampling_interval_bytes will
4556    /// crash the target process before Android 12.
4557    ///
4558    /// Introduced in Android 12.
4559    ///
4560    /// All values must be non-zero or the producer will not start.
4561    #[prost(uint64, repeated, packed="false", tag="22")]
4562    pub heap_sampling_intervals: ::prost::alloc::vec::Vec<u64>,
4563    /// Sample all heaps registered by target process. Introduced in Android 12.
4564    #[prost(bool, optional, tag="21")]
4565    pub all_heaps: ::core::option::Option<bool>,
4566    /// Profile all processes eligible for profiling on the system.
4567    /// See
4568    /// <https://perfetto.dev/docs/data-sources/native-heap-profiler#heapprofd-targets>
4569    /// for which processes are eligible.
4570    ///
4571    /// On unmodified userdebug builds, this will lead to system crashes. Zygote
4572    /// will crash when trying to launch a new process as it will have an
4573    /// unexpected open socket to heapprofd.
4574    ///
4575    /// heapprofd will likely be overloaded by the amount of data for low
4576    /// sampling intervals.
4577    #[prost(bool, optional, tag="5")]
4578    pub all: ::core::option::Option<bool>,
4579    /// Do not profile processes whose anon RSS + swap < given value.
4580    /// Introduced in Android 11.
4581    #[prost(uint32, optional, tag="15")]
4582    pub min_anonymous_memory_kb: ::core::option::Option<u32>,
4583    /// Stop profile if heapprofd memory usage goes beyond the given value.
4584    /// Introduced in Android 11.
4585    #[prost(uint32, optional, tag="16")]
4586    pub max_heapprofd_memory_kb: ::core::option::Option<u32>,
4587    /// Stop profile if heapprofd CPU time since start of this data-source
4588    /// goes beyond given value.
4589    /// Introduced in Android 11.
4590    #[prost(uint64, optional, tag="17")]
4591    pub max_heapprofd_cpu_secs: ::core::option::Option<u64>,
4592    /// Do not emit function names for mappings starting with this prefix.
4593    /// E.g. /system to not emit symbols for any system libraries.
4594    #[prost(string, repeated, tag="7")]
4595    pub skip_symbol_prefix: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4596    /// Dump at a predefined interval.
4597    #[prost(message, optional, tag="6")]
4598    pub continuous_dump_config: ::core::option::Option<heapprofd_config::ContinuousDumpConfig>,
4599    /// Size of the shared memory buffer between the profiled processes and
4600    /// heapprofd. Defaults to 8 MiB. If larger than 500 MiB, truncated to 500
4601    /// MiB.
4602    ///
4603    /// Needs to be:
4604    /// * at least 8192,
4605    /// * a power of two,
4606    /// * a multiple of 4096.
4607    #[prost(uint64, optional, tag="8")]
4608    pub shmem_size_bytes: ::core::option::Option<u64>,
4609    /// When the shmem buffer is full, block the client instead of ending the
4610    /// trace. Use with caution as this will significantly slow down the target
4611    /// process.
4612    #[prost(bool, optional, tag="9")]
4613    pub block_client: ::core::option::Option<bool>,
4614    /// If set, stop the trace session after blocking the client for this
4615    /// timeout. Needs to be larger than 100 us, otherwise no retries are done.
4616    /// Introduced in Android 11.
4617    #[prost(uint32, optional, tag="14")]
4618    pub block_client_timeout_us: ::core::option::Option<u32>,
4619    /// Do not profile processes from startup, only match already running
4620    /// processes.
4621    ///
4622    /// Can not be set at the same time as no_running.
4623    /// Introduced in Android 11.
4624    #[prost(bool, optional, tag="10")]
4625    pub no_startup: ::core::option::Option<bool>,
4626    /// Do not profile running processes. Only match processes on startup.
4627    ///
4628    /// Can not be set at the same time as no_startup.
4629    /// Introduced in Android 11.
4630    #[prost(bool, optional, tag="11")]
4631    pub no_running: ::core::option::Option<bool>,
4632    /// Cause heapprofd to emit a single dump at the end, showing the memory usage
4633    /// at the point in time when the sampled heap usage of the process was at its
4634    /// maximum. This causes ProfilePacket.HeapSample.self_max to be set, and
4635    /// self_allocated and self_freed to not be set.
4636    /// Introduced in Android 11.
4637    #[prost(bool, optional, tag="13")]
4638    pub dump_at_max: ::core::option::Option<bool>,
4639    // FEATURE FLAGS. THERE BE DRAGONS.
4640
4641    /// Escape hatch if the session is being torn down because of a forked child
4642    /// that shares memory space, but is not correctly identified as a vforked
4643    /// child.
4644    /// Introduced in Android 11.
4645    #[prost(bool, optional, tag="18")]
4646    pub disable_fork_teardown: ::core::option::Option<bool>,
4647    /// We try to automatically detect when a target applicatation vforks but then
4648    /// does a memory allocation (or free). This auto-detection can be disabled
4649    /// with this.
4650    /// Introduced in Android 11.
4651    #[prost(bool, optional, tag="19")]
4652    pub disable_vfork_detection: ::core::option::Option<bool>,
4653}
4654/// Nested message and enum types in `HeapprofdConfig`.
4655pub mod heapprofd_config {
4656    #[derive(Clone, PartialEq, ::prost::Message)]
4657    pub struct ContinuousDumpConfig {
4658        /// ms to wait before first dump.
4659        #[prost(uint32, optional, tag="5")]
4660        pub dump_phase_ms: ::core::option::Option<u32>,
4661        /// ms to wait between following dumps.
4662        #[prost(uint32, optional, tag="6")]
4663        pub dump_interval_ms: ::core::option::Option<u32>,
4664    }
4665}
4666/// Configuration for managed app heap graph snapshots.
4667#[derive(Clone, PartialEq, ::prost::Message)]
4668pub struct JavaHprofConfig {
4669    /// Command line allowlist, matched against the /proc/<pid>/cmdline (not the
4670    /// comm string). The semantics of this field were changed since its original
4671    /// introduction.
4672    ///
4673    /// On Android T+ (13+), this field can specify a single wildcard (*), and
4674    /// the profiler will attempt to match it in two possible ways:
4675    /// * if the pattern starts with a '/', then it is matched against the first
4676    ///    segment of the cmdline (i.e. argv0). For example "/bin/e*" would match
4677    ///    "/bin/echo".
4678    /// * otherwise the pattern is matched against the part of argv0
4679    ///    corresponding to the binary name (this is unrelated to /proc/pid/exe).
4680    ///    For example "echo" would match "/bin/echo".
4681    ///
4682    /// On Android S (12) and below, both this pattern and /proc/pid/cmdline get
4683    /// normalized prior to an exact string comparison. Normalization is as
4684    /// follows: (1) trim everything beyond the first null or "@" byte; (2) if
4685    /// the string contains forward slashes, trim everything up to and including
4686    /// the last one.
4687    ///
4688    /// Implementation note: in either case, at most 511 characters of cmdline
4689    /// are considered.
4690    #[prost(string, repeated, tag="1")]
4691    pub process_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4692    /// For watermark based triggering or local debugging.
4693    #[prost(uint64, repeated, packed="false", tag="2")]
4694    pub pid: ::prost::alloc::vec::Vec<u64>,
4695    /// Only profile target if it was installed by one of the packages given.
4696    /// Special values are:
4697    /// * @system: installed on the system partition
4698    /// * @product: installed on the product partition
4699    /// * @null: sideloaded
4700    /// Supported on Android 12+.
4701    #[prost(string, repeated, tag="7")]
4702    pub target_installed_by: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4703    /// Dump at a predefined interval.
4704    #[prost(message, optional, tag="3")]
4705    pub continuous_dump_config: ::core::option::Option<java_hprof_config::ContinuousDumpConfig>,
4706    /// Do not profile processes whose anon RSS + swap < given value.
4707    #[prost(uint32, optional, tag="4")]
4708    pub min_anonymous_memory_kb: ::core::option::Option<u32>,
4709    /// Include the process' /proc/self/smaps.
4710    /// This only shows maps that:
4711    /// * start with /system
4712    /// * start with /vendor
4713    /// * start with /data/app
4714    /// * contain "extracted in memory from Y", where Y matches any of the above
4715    #[prost(bool, optional, tag="5")]
4716    pub dump_smaps: ::core::option::Option<bool>,
4717    /// Exclude objects of the following types from the profile. This can be
4718    /// useful if lots of uninteresting objects, e.g. "sun.misc.Cleaner".
4719    #[prost(string, repeated, tag="6")]
4720    pub ignored_types: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
4721}
4722/// Nested message and enum types in `JavaHprofConfig`.
4723pub mod java_hprof_config {
4724    /// If dump_interval_ms != 0, the following configuration is used.
4725    #[derive(Clone, PartialEq, ::prost::Message)]
4726    pub struct ContinuousDumpConfig {
4727        /// ms to wait before first continuous dump.
4728        /// A dump is always created at the beginning of the trace.
4729        #[prost(uint32, optional, tag="1")]
4730        pub dump_phase_ms: ::core::option::Option<u32>,
4731        /// ms to wait between following dumps.
4732        #[prost(uint32, optional, tag="2")]
4733        pub dump_interval_ms: ::core::option::Option<u32>,
4734        /// If true, scans all the processes to find `process_cmdline` and filter by
4735        /// `min_anonymous_memory_kb` only at data source start. Default on Android
4736        /// S-.
4737        ///
4738        /// If false, rescans all the processes to find on every dump. Default on
4739        /// Android T+.
4740        #[prost(bool, optional, tag="3")]
4741        pub scan_pids_only_on_start: ::core::option::Option<bool>,
4742    }
4743}
4744#[derive(Clone, PartialEq, ::prost::Message)]
4745pub struct PerfEvents {
4746}
4747/// Nested message and enum types in `PerfEvents`.
4748pub mod perf_events {
4749    /// The primary event to count. If recording multiple events, this
4750    /// counter is the "group leader".
4751    /// Commented from the perspective of its use in |PerfEventConfig|.
4752    /// Next id: 12
4753    #[derive(Clone, PartialEq, ::prost::Message)]
4754    pub struct Timebase {
4755        /// If set, samples will be timestamped with the given clock.
4756        /// If unset, the clock is chosen by the implementation.
4757        /// For software events, prefer PERF_CLOCK_BOOTTIME. However it cannot be
4758        /// used for hardware events (due to interrupt safety), for which the
4759        /// recommendation is to use one of the monotonic clocks.
4760        #[prost(enumeration="PerfClock", optional, tag="11")]
4761        pub timestamp_clock: ::core::option::Option<i32>,
4762        /// Optional arbitrary name for the event, to identify it in the parsed
4763        /// trace. Does *not* affect the profiling itself. If unset, the trace
4764        /// parser will choose a suitable name.
4765        #[prost(string, optional, tag="10")]
4766        pub name: ::core::option::Option<::prost::alloc::string::String>,
4767        /// How often to snapshot the counter, along with any follower events and
4768        /// any additional sampled data such as callstacks.
4769        ///
4770        /// This choice also controls how the readings are taken:
4771        /// * With |frequency| or |period|, samples are taken by the kernel
4772        ///    into a ring buffer. Analogous to `perf record`.
4773        /// * With |poll_period_ms|, the userspace periodically snapshots
4774        ///    the counters using the read syscall. Analogous to `perf stat -I`.
4775        /// Prefer the sampling options unless you're recording PMUs whose
4776        /// perf drivers only support the reading mode.
4777        ///
4778        /// If unset, an implementation-defined sampling default is used.
4779        #[prost(oneof="timebase::Interval", tags="2, 1, 6")]
4780        pub interval: ::core::option::Option<timebase::Interval>,
4781        /// Counting event to use as the timebase.
4782        /// If unset, implies the CPU timer (SW_CPU_CLOCK) as the event,
4783        /// which is what you usually want.
4784        #[prost(oneof="timebase::Event", tags="4, 3, 5")]
4785        pub event: ::core::option::Option<timebase::Event>,
4786    }
4787    /// Nested message and enum types in `Timebase`.
4788    pub mod timebase {
4789        /// How often to snapshot the counter, along with any follower events and
4790        /// any additional sampled data such as callstacks.
4791        ///
4792        /// This choice also controls how the readings are taken:
4793        /// * With |frequency| or |period|, samples are taken by the kernel
4794        ///    into a ring buffer. Analogous to `perf record`.
4795        /// * With |poll_period_ms|, the userspace periodically snapshots
4796        ///    the counters using the read syscall. Analogous to `perf stat -I`.
4797        /// Prefer the sampling options unless you're recording PMUs whose
4798        /// perf drivers only support the reading mode.
4799        ///
4800        /// If unset, an implementation-defined sampling default is used.
4801        #[derive(Clone, PartialEq, ::prost::Oneof)]
4802        pub enum Interval {
4803            /// Per-cpu sampling frequency in Hz, as requested from the kernel. Not the
4804            /// same as 1/period.
4805            /// Details: the actual sampling will still be based on a period, but the
4806            /// kernel will dynamically adjust it based on the observed event rate, to
4807            /// approximate this frequency. Works best with steady-rate events like
4808            /// timers.
4809            /// Not guaranteed to be honored as the kernel can throttle the sampling
4810            /// rate if it's too high.
4811            #[prost(uint64, tag="2")]
4812            Frequency(u64),
4813            /// Per-cpu sampling will occur every |period| counts of |event|.
4814            /// Prefer |frequency| by default, as it's easier to oversample with a
4815            /// fixed period.
4816            /// Not guaranteed to be honored as the kernel can throttle the sampling
4817            /// rate if it's too high.
4818            #[prost(uint64, tag="1")]
4819            Period(u64),
4820            /// Per-cpu values are read by the userspace every interval. If using this
4821            /// mode, only follower events are supported. Options such as
4822            /// |PerfEventConfig.CallstackSampling| are incompatible.
4823            /// The period can't be guaranteed to be exact since the readings are taken
4824            /// by userspace.
4825            #[prost(uint32, tag="6")]
4826            PollPeriodMs(u32),
4827        }
4828        /// Counting event to use as the timebase.
4829        /// If unset, implies the CPU timer (SW_CPU_CLOCK) as the event,
4830        /// which is what you usually want.
4831        #[derive(Clone, PartialEq, ::prost::Oneof)]
4832        pub enum Event {
4833            #[prost(enumeration="super::Counter", tag="4")]
4834            Counter(i32),
4835            #[prost(message, tag="3")]
4836            Tracepoint(super::Tracepoint),
4837            #[prost(message, tag="5")]
4838            RawEvent(super::RawEvent),
4839        }
4840    }
4841    #[derive(Clone, PartialEq, ::prost::Message)]
4842    pub struct Tracepoint {
4843        /// Group and name for the tracepoint, acceptable forms:
4844        /// * "sched/sched_switch"
4845        /// * "sched:sched_switch"
4846        #[prost(string, optional, tag="1")]
4847        pub name: ::core::option::Option<::prost::alloc::string::String>,
4848        /// Optional field-level filter for the tracepoint. Only events matching this
4849        /// filter will be counted (and therefore contribute to the sampling period).
4850        /// Example: "prev_pid >= 42 && next_pid == 0".
4851        /// For full syntax, see kernel documentation on "Event filtering":
4852        /// <https://www.kernel.org/doc/Documentation/trace/events.txt>
4853        #[prost(string, optional, tag="2")]
4854        pub filter: ::core::option::Option<::prost::alloc::string::String>,
4855    }
4856    /// Syscall-level description of the event, propagated to the perf_event_attr
4857    /// struct. Primarily for local use-cases, since the event availability and
4858    /// encoding is hardware-specific.
4859    #[derive(Clone, PartialEq, ::prost::Message)]
4860    pub struct RawEvent {
4861        #[prost(uint32, optional, tag="1")]
4862        pub r#type: ::core::option::Option<u32>,
4863        #[prost(uint64, optional, tag="2")]
4864        pub config: ::core::option::Option<u64>,
4865        #[prost(uint64, optional, tag="3")]
4866        pub config1: ::core::option::Option<u64>,
4867        #[prost(uint64, optional, tag="4")]
4868        pub config2: ::core::option::Option<u64>,
4869    }
4870    /// Builtin counter names from the uapi header. Commented with their perf tool
4871    /// aliases.
4872    /// TODO(rsavitski): consider generating enums for cache events (should be
4873    /// finite), and generally make this list as extensive as possible. Excluding
4874    /// things like dynamic PMUs since those don't fit into a static enum.
4875    /// Next id: 21
4876    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
4877    #[repr(i32)]
4878    pub enum Counter {
4879        UnknownCounter = 0,
4880        /// cpu-clock
4881        SwCpuClock = 1,
4882        /// page-faults, faults
4883        SwPageFaults = 2,
4884        /// task-clock
4885        SwTaskClock = 3,
4886        /// context-switches, cs
4887        SwContextSwitches = 4,
4888        /// cpu-migrations, migrations
4889        SwCpuMigrations = 5,
4890        /// minor-faults
4891        SwPageFaultsMin = 6,
4892        /// major-faults
4893        SwPageFaultsMaj = 7,
4894        /// alignment-faults
4895        SwAlignmentFaults = 8,
4896        /// emulation-faults
4897        SwEmulationFaults = 9,
4898        /// dummy
4899        SwDummy = 20,
4900        /// cpu-cycles, cycles
4901        HwCpuCycles = 10,
4902        /// instructions
4903        HwInstructions = 11,
4904        /// cache-references
4905        HwCacheReferences = 12,
4906        /// cache-misses
4907        HwCacheMisses = 13,
4908        /// branch-instructions, branches
4909        HwBranchInstructions = 14,
4910        /// branch-misses
4911        HwBranchMisses = 15,
4912        /// bus-cycles
4913        HwBusCycles = 16,
4914        /// stalled-cycles-frontend, idle-cycles-frontend
4915        HwStalledCyclesFrontend = 17,
4916        /// stalled-cycles-backend, idle-cycles-backend
4917        HwStalledCyclesBackend = 18,
4918        /// ref-cycles
4919        HwRefCpuCycles = 19,
4920    }
4921    impl Counter {
4922        /// String value of the enum field names used in the ProtoBuf definition.
4923        ///
4924        /// The values are not transformed in any way and thus are considered stable
4925        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
4926        pub fn as_str_name(&self) -> &'static str {
4927            match self {
4928                Counter::UnknownCounter => "UNKNOWN_COUNTER",
4929                Counter::SwCpuClock => "SW_CPU_CLOCK",
4930                Counter::SwPageFaults => "SW_PAGE_FAULTS",
4931                Counter::SwTaskClock => "SW_TASK_CLOCK",
4932                Counter::SwContextSwitches => "SW_CONTEXT_SWITCHES",
4933                Counter::SwCpuMigrations => "SW_CPU_MIGRATIONS",
4934                Counter::SwPageFaultsMin => "SW_PAGE_FAULTS_MIN",
4935                Counter::SwPageFaultsMaj => "SW_PAGE_FAULTS_MAJ",
4936                Counter::SwAlignmentFaults => "SW_ALIGNMENT_FAULTS",
4937                Counter::SwEmulationFaults => "SW_EMULATION_FAULTS",
4938                Counter::SwDummy => "SW_DUMMY",
4939                Counter::HwCpuCycles => "HW_CPU_CYCLES",
4940                Counter::HwInstructions => "HW_INSTRUCTIONS",
4941                Counter::HwCacheReferences => "HW_CACHE_REFERENCES",
4942                Counter::HwCacheMisses => "HW_CACHE_MISSES",
4943                Counter::HwBranchInstructions => "HW_BRANCH_INSTRUCTIONS",
4944                Counter::HwBranchMisses => "HW_BRANCH_MISSES",
4945                Counter::HwBusCycles => "HW_BUS_CYCLES",
4946                Counter::HwStalledCyclesFrontend => "HW_STALLED_CYCLES_FRONTEND",
4947                Counter::HwStalledCyclesBackend => "HW_STALLED_CYCLES_BACKEND",
4948                Counter::HwRefCpuCycles => "HW_REF_CPU_CYCLES",
4949            }
4950        }
4951    }
4952    /// Subset of clocks that is supported by perf timestamping.
4953    /// CLOCK_TAI is excluded since it's not expected to be used in practice, but
4954    /// would require additions to the trace clock synchronisation logic.
4955    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
4956    #[repr(i32)]
4957    pub enum PerfClock {
4958        UnknownPerfClock = 0,
4959        Realtime = 1,
4960        Monotonic = 2,
4961        MonotonicRaw = 3,
4962        Boottime = 4,
4963    }
4964    impl PerfClock {
4965        /// String value of the enum field names used in the ProtoBuf definition.
4966        ///
4967        /// The values are not transformed in any way and thus are considered stable
4968        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
4969        pub fn as_str_name(&self) -> &'static str {
4970            match self {
4971                PerfClock::UnknownPerfClock => "UNKNOWN_PERF_CLOCK",
4972                PerfClock::Realtime => "PERF_CLOCK_REALTIME",
4973                PerfClock::Monotonic => "PERF_CLOCK_MONOTONIC",
4974                PerfClock::MonotonicRaw => "PERF_CLOCK_MONOTONIC_RAW",
4975                PerfClock::Boottime => "PERF_CLOCK_BOOTTIME",
4976            }
4977        }
4978    }
4979}
4980/// Additional events associated with a leader.
4981/// Configuration is similar to Timebase event. Because data acquisition is
4982/// driven by the leader there is no option to configure the clock or the
4983/// frequency.
4984#[derive(Clone, PartialEq, ::prost::Message)]
4985pub struct FollowerEvent {
4986    #[prost(string, optional, tag="4")]
4987    pub name: ::core::option::Option<::prost::alloc::string::String>,
4988    #[prost(oneof="follower_event::Event", tags="1, 2, 3")]
4989    pub event: ::core::option::Option<follower_event::Event>,
4990}
4991/// Nested message and enum types in `FollowerEvent`.
4992pub mod follower_event {
4993    #[derive(Clone, PartialEq, ::prost::Oneof)]
4994    pub enum Event {
4995        #[prost(enumeration="super::perf_events::Counter", tag="1")]
4996        Counter(i32),
4997        #[prost(message, tag="2")]
4998        Tracepoint(super::perf_events::Tracepoint),
4999        #[prost(message, tag="3")]
5000        RawEvent(super::perf_events::RawEvent),
5001    }
5002}
5003/// Configuration for the traced_perf profiler.
5004///
5005/// Example config for basic cpu profiling:
5006///    perf_event_config {
5007///      timebase {
5008///        frequency: 80
5009///      }
5010///      callstack_sampling {
5011///        scope {
5012///          target_cmdline: "surfaceflinger"
5013///          target_cmdline: "system_server"
5014///        }
5015///        kernel_frames: true
5016///      }
5017///    }
5018///
5019/// Next id: 21
5020#[derive(Clone, PartialEq, ::prost::Message)]
5021pub struct PerfEventConfig {
5022    /// What event to sample on, and how often.
5023    /// Defined in common/perf_events.proto.
5024    #[prost(message, optional, tag="15")]
5025    pub timebase: ::core::option::Option<perf_events::Timebase>,
5026    /// Other events associated with the leader described in the timebase.
5027    #[prost(message, repeated, tag="19")]
5028    pub followers: ::prost::alloc::vec::Vec<FollowerEvent>,
5029    /// If set, the profiler will sample userspace processes' callstacks at the
5030    /// interval specified by the |timebase|.
5031    /// If unset, the profiler will record only the event counts.
5032    #[prost(message, optional, tag="16")]
5033    pub callstack_sampling: ::core::option::Option<perf_event_config::CallstackSampling>,
5034    /// List of cpu indices for counting. If empty, the default is all cpus.
5035    ///
5036    /// Note: this is not inside |callstack_sampling.scope| as it also applies to
5037    /// counter-only traces. A future change will likely reorganise the options,
5038    /// but this field will continue to be supported.
5039    ///
5040    /// Available since: perfetto v50.
5041    #[prost(uint32, repeated, packed="false", tag="20")]
5042    pub target_cpu: ::prost::alloc::vec::Vec<u32>,
5043    //
5044    // Kernel <-> userspace ring buffer options:
5045    //
5046
5047    /// How often the per-cpu ring buffers are read by the producer.
5048    /// If unset, an implementation-defined default is used.
5049    #[prost(uint32, optional, tag="8")]
5050    pub ring_buffer_read_period_ms: ::core::option::Option<u32>,
5051    /// Size (in 4k pages) of each per-cpu ring buffer that is filled by the
5052    /// kernel. If set, must be a power of two.
5053    /// If unset, an implementation-defined default is used.
5054    #[prost(uint32, optional, tag="3")]
5055    pub ring_buffer_pages: ::core::option::Option<u32>,
5056    //
5057    // Daemon's resource usage limits:
5058    //
5059
5060    /// Drop samples if the heap memory held by the samples in the unwinder queue
5061    /// is above the given limit. This counts the memory across all concurrent data
5062    /// sources (not just this one's), and there is no fairness guarantee - the
5063    /// whole quota might be used up by a concurrent source.
5064    #[prost(uint64, optional, tag="17")]
5065    pub max_enqueued_footprint_kb: ::core::option::Option<u64>,
5066    /// Stop the data source if traced_perf's combined {RssAnon + Swap} memory
5067    /// footprint exceeds this value.
5068    #[prost(uint32, optional, tag="13")]
5069    pub max_daemon_memory_kb: ::core::option::Option<u32>,
5070    //
5071    // Uncommon options:
5072    //
5073
5074    /// Timeout for the remote /proc/<pid>/{maps,mem} file descriptors for a
5075    /// sampled process. This is primarily for Android, where this lookup is
5076    /// asynchronous. As long as the producer is waiting, the associated samples
5077    /// will be kept enqueued (putting pressure on the capacity of the shared
5078    /// unwinding queue). Once a lookup for a process expires, all associated
5079    /// samples are discarded. However, if the lookup still succeeds after the
5080    /// timeout, future samples will be handled normally.
5081    /// If unset, an implementation-defined default is used.
5082    #[prost(uint32, optional, tag="9")]
5083    pub remote_descriptor_timeout_ms: ::core::option::Option<u32>,
5084    /// Optional period for clearing state cached by the unwinder. This is a heavy
5085    /// operation that is only necessary for traces that target a wide set of
5086    /// processes, and require the memory footprint to be reset periodically.
5087    /// If unset, the cached state will not be cleared.
5088    #[prost(uint32, optional, tag="10")]
5089    pub unwind_state_clear_period_ms: ::core::option::Option<u32>,
5090    /// If set, only profile target if it was installed by a package with one of
5091    /// these names. Special values:
5092    /// * "@system": installed on the system partition
5093    /// * "@product": installed on the product partition
5094    /// * "@null": sideloaded
5095    /// Supported on Android 12+.
5096    #[prost(string, repeated, tag="18")]
5097    pub target_installed_by: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5098    //
5099    // Deprecated (superseded by options above):
5100    //
5101    // Do not set *any* of these fields in new configs.
5102    //
5103
5104    /// Note: legacy configs had to set |all_cpus| to true to pass parsing.
5105    /// We rely on this to detect such configs.
5106    #[prost(bool, optional, tag="1")]
5107    pub all_cpus: ::core::option::Option<bool>,
5108    #[prost(uint32, optional, tag="2")]
5109    pub sampling_frequency: ::core::option::Option<u32>,
5110    #[prost(bool, optional, tag="12")]
5111    pub kernel_frames: ::core::option::Option<bool>,
5112    #[prost(int32, repeated, packed="false", tag="4")]
5113    pub target_pid: ::prost::alloc::vec::Vec<i32>,
5114    #[prost(string, repeated, tag="5")]
5115    pub target_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5116    #[prost(int32, repeated, packed="false", tag="6")]
5117    pub exclude_pid: ::prost::alloc::vec::Vec<i32>,
5118    #[prost(string, repeated, tag="7")]
5119    pub exclude_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5120    #[prost(uint32, optional, tag="11")]
5121    pub additional_cmdline_count: ::core::option::Option<u32>,
5122}
5123/// Nested message and enum types in `PerfEventConfig`.
5124pub mod perf_event_config {
5125    //
5126    // Sub-messages (nested for generated code namespacing).
5127    //
5128
5129    #[derive(Clone, PartialEq, ::prost::Message)]
5130    pub struct CallstackSampling {
5131        /// Defines a set of processes for which samples are retained/skipped. If
5132        /// unset, all samples are kept, but beware that it will be very heavy on the
5133        /// stack unwinder, which might start dropping samples due to overload.
5134        #[prost(message, optional, tag="1")]
5135        pub scope: ::core::option::Option<Scope>,
5136        /// If true, callstacks will include the kernel-space frames. Such frames can
5137        /// be identified by a magical "kernel" string as their mapping name.
5138        /// Requires traced_perf to be running as root, or kptr_restrict to have been
5139        /// manually unrestricted. On Android, the platform should do the right thing
5140        /// on debug builds.
5141        /// This does *not* disclose KASLR, as only the function names are emitted.
5142        #[prost(bool, optional, tag="2")]
5143        pub kernel_frames: ::core::option::Option<bool>,
5144        /// Whether to record and unwind userspace callstacks. If unset, defaults to
5145        /// including userspace (UNWIND_DWARF) both for backwards compatibility and
5146        /// as the most common default (this defaulting is only applicable if the
5147        /// outer CallstackSampling message is explicitly set).
5148        #[prost(enumeration="UnwindMode", optional, tag="3")]
5149        pub user_frames: ::core::option::Option<i32>,
5150    }
5151    #[derive(Clone, PartialEq, ::prost::Message)]
5152    pub struct Scope {
5153        /// Process ID (TGID) allowlist. If this list is not empty, only matching
5154        /// samples will be retained. If multiple allow/deny-lists are
5155        /// specified by the config, then all of them are evaluated for each sampled
5156        /// process.
5157        #[prost(int32, repeated, packed="false", tag="1")]
5158        pub target_pid: ::prost::alloc::vec::Vec<i32>,
5159        /// Command line allowlist, matched against the /proc/<pid>/cmdline (not the
5160        /// comm string). The semantics of this field were changed since its original
5161        /// introduction.
5162        ///
5163        /// On Android T+ (13+), this field can specify a single wildcard (*), and
5164        /// the profiler will attempt to match it in two possible ways:
5165        /// * if the pattern starts with a '/', then it is matched against the first
5166        ///    segment of the cmdline (i.e. argv0). For example "/bin/e*" would match
5167        ///    "/bin/echo".
5168        /// * otherwise the pattern is matched against the part of argv0
5169        ///    corresponding to the binary name (this is unrelated to /proc/pid/exe).
5170        ///    For example "echo" would match "/bin/echo".
5171        ///
5172        /// On Android S (12) and below, both this pattern and /proc/pid/cmdline get
5173        /// normalized prior to an exact string comparison. Normalization is as
5174        /// follows: (1) trim everything beyond the first null or "@" byte; (2) if
5175        /// the string contains forward slashes, trim everything up to and including
5176        /// the last one.
5177        ///
5178        /// Implementation note: in either case, at most 511 characters of cmdline
5179        /// are considered.
5180        #[prost(string, repeated, tag="2")]
5181        pub target_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5182        /// List of excluded pids.
5183        #[prost(int32, repeated, packed="false", tag="3")]
5184        pub exclude_pid: ::prost::alloc::vec::Vec<i32>,
5185        /// List of excluded cmdlines. See description of |target_cmdline| for how
5186        /// this is handled.
5187        #[prost(string, repeated, tag="4")]
5188        pub exclude_cmdline: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5189        // Niche features for systemwide callstacks:
5190
5191        /// Number of additional command lines to sample. Only those which are
5192        /// neither explicitly included nor excluded will be considered. Processes
5193        /// are accepted on a first come, first served basis.
5194        #[prost(uint32, optional, tag="5")]
5195        pub additional_cmdline_count: ::core::option::Option<u32>,
5196        /// If set to N, all encountered processes will be put into one of the N
5197        /// possible bins, and only one randomly-chosen bin will be selected for
5198        /// unwinding. The binning is simply "pid % N", under the assumption that
5199        /// low-order bits of pids are roughly uniformly distributed. Other explicit
5200        /// inclusions/exclusions in this |Scope| message are still respected.
5201        ///
5202        /// The profiler will report the chosen shard in PerfSampleDefaults, and the
5203        /// values will be queryable in trace processor under the "stats" table as
5204        /// "perf_process_shard_count" and "perf_chosen_process_shard".
5205        ///
5206        /// NB: all data sources in a config that set |process_shard_count| must set
5207        /// it to the same value. The profiler will choose one bin for all those data
5208        /// sources.
5209        #[prost(uint32, optional, tag="6")]
5210        pub process_shard_count: ::core::option::Option<u32>,
5211    }
5212    /// Userspace unwinding mode. A possible future addition is kernel-unwound
5213    /// callchains for frame pointer based systems.
5214    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
5215    #[repr(i32)]
5216    pub enum UnwindMode {
5217        UnwindUnknown = 0,
5218        /// Do not unwind userspace:
5219        UnwindSkip = 1,
5220        /// Use libunwindstack (default):
5221        UnwindDwarf = 2,
5222        /// Use userspace frame pointer unwinder:
5223        UnwindFramePointer = 3,
5224    }
5225    impl UnwindMode {
5226        /// String value of the enum field names used in the ProtoBuf definition.
5227        ///
5228        /// The values are not transformed in any way and thus are considered stable
5229        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
5230        pub fn as_str_name(&self) -> &'static str {
5231            match self {
5232                UnwindMode::UnwindUnknown => "UNWIND_UNKNOWN",
5233                UnwindMode::UnwindSkip => "UNWIND_SKIP",
5234                UnwindMode::UnwindDwarf => "UNWIND_DWARF",
5235                UnwindMode::UnwindFramePointer => "UNWIND_FRAME_POINTER",
5236            }
5237        }
5238    }
5239}
5240// When editing entries here remember also to update "sys_stats_counters.h" with
5241// the corresponding string definitions for the actual /proc files parser.
5242
5243/// Counter definitions for Linux's /proc/meminfo.
5244#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
5245#[repr(i32)]
5246pub enum MeminfoCounters {
5247    MeminfoUnspecified = 0,
5248    MeminfoMemTotal = 1,
5249    MeminfoMemFree = 2,
5250    MeminfoMemAvailable = 3,
5251    MeminfoBuffers = 4,
5252    MeminfoCached = 5,
5253    MeminfoSwapCached = 6,
5254    MeminfoActive = 7,
5255    MeminfoInactive = 8,
5256    MeminfoActiveAnon = 9,
5257    MeminfoInactiveAnon = 10,
5258    MeminfoActiveFile = 11,
5259    MeminfoInactiveFile = 12,
5260    MeminfoUnevictable = 13,
5261    MeminfoMlocked = 14,
5262    MeminfoSwapTotal = 15,
5263    MeminfoSwapFree = 16,
5264    MeminfoDirty = 17,
5265    MeminfoWriteback = 18,
5266    MeminfoAnonPages = 19,
5267    MeminfoMapped = 20,
5268    MeminfoShmem = 21,
5269    MeminfoSlab = 22,
5270    MeminfoSlabReclaimable = 23,
5271    MeminfoSlabUnreclaimable = 24,
5272    MeminfoKernelStack = 25,
5273    MeminfoPageTables = 26,
5274    MeminfoCommitLimit = 27,
5275    MeminfoCommitedAs = 28,
5276    MeminfoVmallocTotal = 29,
5277    MeminfoVmallocUsed = 30,
5278    MeminfoVmallocChunk = 31,
5279    MeminfoCmaTotal = 32,
5280    MeminfoCmaFree = 33,
5281    MeminfoGpu = 34,
5282    MeminfoZram = 35,
5283    MeminfoMisc = 36,
5284    MeminfoIonHeap = 37,
5285    MeminfoIonHeapPool = 38,
5286}
5287impl MeminfoCounters {
5288    /// String value of the enum field names used in the ProtoBuf definition.
5289    ///
5290    /// The values are not transformed in any way and thus are considered stable
5291    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
5292    pub fn as_str_name(&self) -> &'static str {
5293        match self {
5294            MeminfoCounters::MeminfoUnspecified => "MEMINFO_UNSPECIFIED",
5295            MeminfoCounters::MeminfoMemTotal => "MEMINFO_MEM_TOTAL",
5296            MeminfoCounters::MeminfoMemFree => "MEMINFO_MEM_FREE",
5297            MeminfoCounters::MeminfoMemAvailable => "MEMINFO_MEM_AVAILABLE",
5298            MeminfoCounters::MeminfoBuffers => "MEMINFO_BUFFERS",
5299            MeminfoCounters::MeminfoCached => "MEMINFO_CACHED",
5300            MeminfoCounters::MeminfoSwapCached => "MEMINFO_SWAP_CACHED",
5301            MeminfoCounters::MeminfoActive => "MEMINFO_ACTIVE",
5302            MeminfoCounters::MeminfoInactive => "MEMINFO_INACTIVE",
5303            MeminfoCounters::MeminfoActiveAnon => "MEMINFO_ACTIVE_ANON",
5304            MeminfoCounters::MeminfoInactiveAnon => "MEMINFO_INACTIVE_ANON",
5305            MeminfoCounters::MeminfoActiveFile => "MEMINFO_ACTIVE_FILE",
5306            MeminfoCounters::MeminfoInactiveFile => "MEMINFO_INACTIVE_FILE",
5307            MeminfoCounters::MeminfoUnevictable => "MEMINFO_UNEVICTABLE",
5308            MeminfoCounters::MeminfoMlocked => "MEMINFO_MLOCKED",
5309            MeminfoCounters::MeminfoSwapTotal => "MEMINFO_SWAP_TOTAL",
5310            MeminfoCounters::MeminfoSwapFree => "MEMINFO_SWAP_FREE",
5311            MeminfoCounters::MeminfoDirty => "MEMINFO_DIRTY",
5312            MeminfoCounters::MeminfoWriteback => "MEMINFO_WRITEBACK",
5313            MeminfoCounters::MeminfoAnonPages => "MEMINFO_ANON_PAGES",
5314            MeminfoCounters::MeminfoMapped => "MEMINFO_MAPPED",
5315            MeminfoCounters::MeminfoShmem => "MEMINFO_SHMEM",
5316            MeminfoCounters::MeminfoSlab => "MEMINFO_SLAB",
5317            MeminfoCounters::MeminfoSlabReclaimable => "MEMINFO_SLAB_RECLAIMABLE",
5318            MeminfoCounters::MeminfoSlabUnreclaimable => "MEMINFO_SLAB_UNRECLAIMABLE",
5319            MeminfoCounters::MeminfoKernelStack => "MEMINFO_KERNEL_STACK",
5320            MeminfoCounters::MeminfoPageTables => "MEMINFO_PAGE_TABLES",
5321            MeminfoCounters::MeminfoCommitLimit => "MEMINFO_COMMIT_LIMIT",
5322            MeminfoCounters::MeminfoCommitedAs => "MEMINFO_COMMITED_AS",
5323            MeminfoCounters::MeminfoVmallocTotal => "MEMINFO_VMALLOC_TOTAL",
5324            MeminfoCounters::MeminfoVmallocUsed => "MEMINFO_VMALLOC_USED",
5325            MeminfoCounters::MeminfoVmallocChunk => "MEMINFO_VMALLOC_CHUNK",
5326            MeminfoCounters::MeminfoCmaTotal => "MEMINFO_CMA_TOTAL",
5327            MeminfoCounters::MeminfoCmaFree => "MEMINFO_CMA_FREE",
5328            MeminfoCounters::MeminfoGpu => "MEMINFO_GPU",
5329            MeminfoCounters::MeminfoZram => "MEMINFO_ZRAM",
5330            MeminfoCounters::MeminfoMisc => "MEMINFO_MISC",
5331            MeminfoCounters::MeminfoIonHeap => "MEMINFO_ION_HEAP",
5332            MeminfoCounters::MeminfoIonHeapPool => "MEMINFO_ION_HEAP_POOL",
5333        }
5334    }
5335}
5336/// Counter definitions for Linux's /proc/vmstat.
5337#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
5338#[repr(i32)]
5339pub enum VmstatCounters {
5340    VmstatUnspecified = 0,
5341    VmstatNrFreePages = 1,
5342    VmstatNrAllocBatch = 2,
5343    VmstatNrInactiveAnon = 3,
5344    VmstatNrActiveAnon = 4,
5345    VmstatNrInactiveFile = 5,
5346    VmstatNrActiveFile = 6,
5347    VmstatNrUnevictable = 7,
5348    VmstatNrMlock = 8,
5349    VmstatNrAnonPages = 9,
5350    VmstatNrMapped = 10,
5351    VmstatNrFilePages = 11,
5352    VmstatNrDirty = 12,
5353    VmstatNrWriteback = 13,
5354    VmstatNrSlabReclaimable = 14,
5355    VmstatNrSlabUnreclaimable = 15,
5356    VmstatNrPageTablePages = 16,
5357    VmstatNrKernelStack = 17,
5358    VmstatNrOverhead = 18,
5359    VmstatNrUnstable = 19,
5360    VmstatNrBounce = 20,
5361    VmstatNrVmscanWrite = 21,
5362    VmstatNrVmscanImmediateReclaim = 22,
5363    VmstatNrWritebackTemp = 23,
5364    VmstatNrIsolatedAnon = 24,
5365    VmstatNrIsolatedFile = 25,
5366    VmstatNrShmem = 26,
5367    VmstatNrDirtied = 27,
5368    VmstatNrWritten = 28,
5369    VmstatNrPagesScanned = 29,
5370    VmstatWorkingsetRefault = 30,
5371    VmstatWorkingsetActivate = 31,
5372    VmstatWorkingsetNodereclaim = 32,
5373    VmstatNrAnonTransparentHugepages = 33,
5374    VmstatNrFreeCma = 34,
5375    VmstatNrSwapcache = 35,
5376    VmstatNrDirtyThreshold = 36,
5377    VmstatNrDirtyBackgroundThreshold = 37,
5378    VmstatPgpgin = 38,
5379    VmstatPgpgout = 39,
5380    VmstatPgpgoutclean = 40,
5381    VmstatPswpin = 41,
5382    VmstatPswpout = 42,
5383    VmstatPgallocDma = 43,
5384    VmstatPgallocNormal = 44,
5385    VmstatPgallocMovable = 45,
5386    VmstatPgfree = 46,
5387    VmstatPgactivate = 47,
5388    VmstatPgdeactivate = 48,
5389    VmstatPgfault = 49,
5390    VmstatPgmajfault = 50,
5391    VmstatPgrefillDma = 51,
5392    VmstatPgrefillNormal = 52,
5393    VmstatPgrefillMovable = 53,
5394    VmstatPgstealKswapdDma = 54,
5395    VmstatPgstealKswapdNormal = 55,
5396    VmstatPgstealKswapdMovable = 56,
5397    VmstatPgstealDirectDma = 57,
5398    VmstatPgstealDirectNormal = 58,
5399    VmstatPgstealDirectMovable = 59,
5400    VmstatPgscanKswapdDma = 60,
5401    VmstatPgscanKswapdNormal = 61,
5402    VmstatPgscanKswapdMovable = 62,
5403    VmstatPgscanDirectDma = 63,
5404    VmstatPgscanDirectNormal = 64,
5405    VmstatPgscanDirectMovable = 65,
5406    VmstatPgscanDirectThrottle = 66,
5407    VmstatPginodesteal = 67,
5408    VmstatSlabsScanned = 68,
5409    VmstatKswapdInodesteal = 69,
5410    VmstatKswapdLowWmarkHitQuickly = 70,
5411    VmstatKswapdHighWmarkHitQuickly = 71,
5412    VmstatPageoutrun = 72,
5413    VmstatAllocstall = 73,
5414    VmstatPgrotated = 74,
5415    VmstatDropPagecache = 75,
5416    VmstatDropSlab = 76,
5417    VmstatPgmigrateSuccess = 77,
5418    VmstatPgmigrateFail = 78,
5419    VmstatCompactMigrateScanned = 79,
5420    VmstatCompactFreeScanned = 80,
5421    VmstatCompactIsolated = 81,
5422    VmstatCompactStall = 82,
5423    VmstatCompactFail = 83,
5424    VmstatCompactSuccess = 84,
5425    VmstatCompactDaemonWake = 85,
5426    VmstatUnevictablePgsCulled = 86,
5427    VmstatUnevictablePgsScanned = 87,
5428    VmstatUnevictablePgsRescued = 88,
5429    VmstatUnevictablePgsMlocked = 89,
5430    VmstatUnevictablePgsMunlocked = 90,
5431    VmstatUnevictablePgsCleared = 91,
5432    VmstatUnevictablePgsStranded = 92,
5433    VmstatNrZspages = 93,
5434    VmstatNrIonHeap = 94,
5435    VmstatNrGpuHeap = 95,
5436    VmstatAllocstallDma = 96,
5437    VmstatAllocstallMovable = 97,
5438    VmstatAllocstallNormal = 98,
5439    VmstatCompactDaemonFreeScanned = 99,
5440    VmstatCompactDaemonMigrateScanned = 100,
5441    VmstatNrFastrpc = 101,
5442    VmstatNrIndirectlyReclaimable = 102,
5443    VmstatNrIonHeapPool = 103,
5444    VmstatNrKernelMiscReclaimable = 104,
5445    VmstatNrShadowCallStackBytes = 105,
5446    VmstatNrShmemHugepages = 106,
5447    VmstatNrShmemPmdmapped = 107,
5448    VmstatNrUnreclaimablePages = 108,
5449    VmstatNrZoneActiveAnon = 109,
5450    VmstatNrZoneActiveFile = 110,
5451    VmstatNrZoneInactiveAnon = 111,
5452    VmstatNrZoneInactiveFile = 112,
5453    VmstatNrZoneUnevictable = 113,
5454    VmstatNrZoneWritePending = 114,
5455    VmstatOomKill = 115,
5456    VmstatPglazyfree = 116,
5457    VmstatPglazyfreed = 117,
5458    VmstatPgrefill = 118,
5459    VmstatPgscanDirect = 119,
5460    VmstatPgscanKswapd = 120,
5461    VmstatPgskipDma = 121,
5462    VmstatPgskipMovable = 122,
5463    VmstatPgskipNormal = 123,
5464    VmstatPgstealDirect = 124,
5465    VmstatPgstealKswapd = 125,
5466    VmstatSwapRa = 126,
5467    VmstatSwapRaHit = 127,
5468    VmstatWorkingsetRestore = 128,
5469    VmstatAllocstallDevice = 129,
5470    VmstatAllocstallDma32 = 130,
5471    VmstatBalloonDeflate = 131,
5472    VmstatBalloonInflate = 132,
5473    VmstatBalloonMigrate = 133,
5474    VmstatCmaAllocFail = 134,
5475    VmstatCmaAllocSuccess = 135,
5476    VmstatNrFileHugepages = 136,
5477    VmstatNrFilePmdmapped = 137,
5478    VmstatNrFollPinAcquired = 138,
5479    VmstatNrFollPinReleased = 139,
5480    VmstatNrSecPageTablePages = 140,
5481    VmstatNrShadowCallStack = 141,
5482    VmstatNrSwapcached = 142,
5483    VmstatNrThrottledWritten = 143,
5484    VmstatPgallocDevice = 144,
5485    VmstatPgallocDma32 = 145,
5486    VmstatPgdemoteDirect = 146,
5487    VmstatPgdemoteKswapd = 147,
5488    VmstatPgreuse = 148,
5489    VmstatPgscanAnon = 149,
5490    VmstatPgscanFile = 150,
5491    VmstatPgskipDevice = 151,
5492    VmstatPgskipDma32 = 152,
5493    VmstatPgstealAnon = 153,
5494    VmstatPgstealFile = 154,
5495    VmstatThpCollapseAlloc = 155,
5496    VmstatThpCollapseAllocFailed = 156,
5497    VmstatThpDeferredSplitPage = 157,
5498    VmstatThpFaultAlloc = 158,
5499    VmstatThpFaultFallback = 159,
5500    VmstatThpFaultFallbackCharge = 160,
5501    VmstatThpFileAlloc = 161,
5502    VmstatThpFileFallback = 162,
5503    VmstatThpFileFallbackCharge = 163,
5504    VmstatThpFileMapped = 164,
5505    VmstatThpMigrationFail = 165,
5506    VmstatThpMigrationSplit = 166,
5507    VmstatThpMigrationSuccess = 167,
5508    VmstatThpScanExceedNonePte = 168,
5509    VmstatThpScanExceedSharePte = 169,
5510    VmstatThpScanExceedSwapPte = 170,
5511    VmstatThpSplitPage = 171,
5512    VmstatThpSplitPageFailed = 172,
5513    VmstatThpSplitPmd = 173,
5514    VmstatThpSwpout = 174,
5515    VmstatThpSwpoutFallback = 175,
5516    VmstatThpZeroPageAlloc = 176,
5517    VmstatThpZeroPageAllocFailed = 177,
5518    VmstatVmaLockAbort = 178,
5519    VmstatVmaLockMiss = 179,
5520    VmstatVmaLockRetry = 180,
5521    VmstatVmaLockSuccess = 181,
5522    VmstatWorkingsetActivateAnon = 182,
5523    VmstatWorkingsetActivateFile = 183,
5524    VmstatWorkingsetNodes = 184,
5525    VmstatWorkingsetRefaultAnon = 185,
5526    VmstatWorkingsetRefaultFile = 186,
5527    VmstatWorkingsetRestoreAnon = 187,
5528    VmstatWorkingsetRestoreFile = 188,
5529}
5530impl VmstatCounters {
5531    /// String value of the enum field names used in the ProtoBuf definition.
5532    ///
5533    /// The values are not transformed in any way and thus are considered stable
5534    /// (if the ProtoBuf definition does not change) and safe for programmatic use.
5535    pub fn as_str_name(&self) -> &'static str {
5536        match self {
5537            VmstatCounters::VmstatUnspecified => "VMSTAT_UNSPECIFIED",
5538            VmstatCounters::VmstatNrFreePages => "VMSTAT_NR_FREE_PAGES",
5539            VmstatCounters::VmstatNrAllocBatch => "VMSTAT_NR_ALLOC_BATCH",
5540            VmstatCounters::VmstatNrInactiveAnon => "VMSTAT_NR_INACTIVE_ANON",
5541            VmstatCounters::VmstatNrActiveAnon => "VMSTAT_NR_ACTIVE_ANON",
5542            VmstatCounters::VmstatNrInactiveFile => "VMSTAT_NR_INACTIVE_FILE",
5543            VmstatCounters::VmstatNrActiveFile => "VMSTAT_NR_ACTIVE_FILE",
5544            VmstatCounters::VmstatNrUnevictable => "VMSTAT_NR_UNEVICTABLE",
5545            VmstatCounters::VmstatNrMlock => "VMSTAT_NR_MLOCK",
5546            VmstatCounters::VmstatNrAnonPages => "VMSTAT_NR_ANON_PAGES",
5547            VmstatCounters::VmstatNrMapped => "VMSTAT_NR_MAPPED",
5548            VmstatCounters::VmstatNrFilePages => "VMSTAT_NR_FILE_PAGES",
5549            VmstatCounters::VmstatNrDirty => "VMSTAT_NR_DIRTY",
5550            VmstatCounters::VmstatNrWriteback => "VMSTAT_NR_WRITEBACK",
5551            VmstatCounters::VmstatNrSlabReclaimable => "VMSTAT_NR_SLAB_RECLAIMABLE",
5552            VmstatCounters::VmstatNrSlabUnreclaimable => "VMSTAT_NR_SLAB_UNRECLAIMABLE",
5553            VmstatCounters::VmstatNrPageTablePages => "VMSTAT_NR_PAGE_TABLE_PAGES",
5554            VmstatCounters::VmstatNrKernelStack => "VMSTAT_NR_KERNEL_STACK",
5555            VmstatCounters::VmstatNrOverhead => "VMSTAT_NR_OVERHEAD",
5556            VmstatCounters::VmstatNrUnstable => "VMSTAT_NR_UNSTABLE",
5557            VmstatCounters::VmstatNrBounce => "VMSTAT_NR_BOUNCE",
5558            VmstatCounters::VmstatNrVmscanWrite => "VMSTAT_NR_VMSCAN_WRITE",
5559            VmstatCounters::VmstatNrVmscanImmediateReclaim => "VMSTAT_NR_VMSCAN_IMMEDIATE_RECLAIM",
5560            VmstatCounters::VmstatNrWritebackTemp => "VMSTAT_NR_WRITEBACK_TEMP",
5561            VmstatCounters::VmstatNrIsolatedAnon => "VMSTAT_NR_ISOLATED_ANON",
5562            VmstatCounters::VmstatNrIsolatedFile => "VMSTAT_NR_ISOLATED_FILE",
5563            VmstatCounters::VmstatNrShmem => "VMSTAT_NR_SHMEM",
5564            VmstatCounters::VmstatNrDirtied => "VMSTAT_NR_DIRTIED",
5565            VmstatCounters::VmstatNrWritten => "VMSTAT_NR_WRITTEN",
5566            VmstatCounters::VmstatNrPagesScanned => "VMSTAT_NR_PAGES_SCANNED",
5567            VmstatCounters::VmstatWorkingsetRefault => "VMSTAT_WORKINGSET_REFAULT",
5568            VmstatCounters::VmstatWorkingsetActivate => "VMSTAT_WORKINGSET_ACTIVATE",
5569            VmstatCounters::VmstatWorkingsetNodereclaim => "VMSTAT_WORKINGSET_NODERECLAIM",
5570            VmstatCounters::VmstatNrAnonTransparentHugepages => "VMSTAT_NR_ANON_TRANSPARENT_HUGEPAGES",
5571            VmstatCounters::VmstatNrFreeCma => "VMSTAT_NR_FREE_CMA",
5572            VmstatCounters::VmstatNrSwapcache => "VMSTAT_NR_SWAPCACHE",
5573            VmstatCounters::VmstatNrDirtyThreshold => "VMSTAT_NR_DIRTY_THRESHOLD",
5574            VmstatCounters::VmstatNrDirtyBackgroundThreshold => "VMSTAT_NR_DIRTY_BACKGROUND_THRESHOLD",
5575            VmstatCounters::VmstatPgpgin => "VMSTAT_PGPGIN",
5576            VmstatCounters::VmstatPgpgout => "VMSTAT_PGPGOUT",
5577            VmstatCounters::VmstatPgpgoutclean => "VMSTAT_PGPGOUTCLEAN",
5578            VmstatCounters::VmstatPswpin => "VMSTAT_PSWPIN",
5579            VmstatCounters::VmstatPswpout => "VMSTAT_PSWPOUT",
5580            VmstatCounters::VmstatPgallocDma => "VMSTAT_PGALLOC_DMA",
5581            VmstatCounters::VmstatPgallocNormal => "VMSTAT_PGALLOC_NORMAL",
5582            VmstatCounters::VmstatPgallocMovable => "VMSTAT_PGALLOC_MOVABLE",
5583            VmstatCounters::VmstatPgfree => "VMSTAT_PGFREE",
5584            VmstatCounters::VmstatPgactivate => "VMSTAT_PGACTIVATE",
5585            VmstatCounters::VmstatPgdeactivate => "VMSTAT_PGDEACTIVATE",
5586            VmstatCounters::VmstatPgfault => "VMSTAT_PGFAULT",
5587            VmstatCounters::VmstatPgmajfault => "VMSTAT_PGMAJFAULT",
5588            VmstatCounters::VmstatPgrefillDma => "VMSTAT_PGREFILL_DMA",
5589            VmstatCounters::VmstatPgrefillNormal => "VMSTAT_PGREFILL_NORMAL",
5590            VmstatCounters::VmstatPgrefillMovable => "VMSTAT_PGREFILL_MOVABLE",
5591            VmstatCounters::VmstatPgstealKswapdDma => "VMSTAT_PGSTEAL_KSWAPD_DMA",
5592            VmstatCounters::VmstatPgstealKswapdNormal => "VMSTAT_PGSTEAL_KSWAPD_NORMAL",
5593            VmstatCounters::VmstatPgstealKswapdMovable => "VMSTAT_PGSTEAL_KSWAPD_MOVABLE",
5594            VmstatCounters::VmstatPgstealDirectDma => "VMSTAT_PGSTEAL_DIRECT_DMA",
5595            VmstatCounters::VmstatPgstealDirectNormal => "VMSTAT_PGSTEAL_DIRECT_NORMAL",
5596            VmstatCounters::VmstatPgstealDirectMovable => "VMSTAT_PGSTEAL_DIRECT_MOVABLE",
5597            VmstatCounters::VmstatPgscanKswapdDma => "VMSTAT_PGSCAN_KSWAPD_DMA",
5598            VmstatCounters::VmstatPgscanKswapdNormal => "VMSTAT_PGSCAN_KSWAPD_NORMAL",
5599            VmstatCounters::VmstatPgscanKswapdMovable => "VMSTAT_PGSCAN_KSWAPD_MOVABLE",
5600            VmstatCounters::VmstatPgscanDirectDma => "VMSTAT_PGSCAN_DIRECT_DMA",
5601            VmstatCounters::VmstatPgscanDirectNormal => "VMSTAT_PGSCAN_DIRECT_NORMAL",
5602            VmstatCounters::VmstatPgscanDirectMovable => "VMSTAT_PGSCAN_DIRECT_MOVABLE",
5603            VmstatCounters::VmstatPgscanDirectThrottle => "VMSTAT_PGSCAN_DIRECT_THROTTLE",
5604            VmstatCounters::VmstatPginodesteal => "VMSTAT_PGINODESTEAL",
5605            VmstatCounters::VmstatSlabsScanned => "VMSTAT_SLABS_SCANNED",
5606            VmstatCounters::VmstatKswapdInodesteal => "VMSTAT_KSWAPD_INODESTEAL",
5607            VmstatCounters::VmstatKswapdLowWmarkHitQuickly => "VMSTAT_KSWAPD_LOW_WMARK_HIT_QUICKLY",
5608            VmstatCounters::VmstatKswapdHighWmarkHitQuickly => "VMSTAT_KSWAPD_HIGH_WMARK_HIT_QUICKLY",
5609            VmstatCounters::VmstatPageoutrun => "VMSTAT_PAGEOUTRUN",
5610            VmstatCounters::VmstatAllocstall => "VMSTAT_ALLOCSTALL",
5611            VmstatCounters::VmstatPgrotated => "VMSTAT_PGROTATED",
5612            VmstatCounters::VmstatDropPagecache => "VMSTAT_DROP_PAGECACHE",
5613            VmstatCounters::VmstatDropSlab => "VMSTAT_DROP_SLAB",
5614            VmstatCounters::VmstatPgmigrateSuccess => "VMSTAT_PGMIGRATE_SUCCESS",
5615            VmstatCounters::VmstatPgmigrateFail => "VMSTAT_PGMIGRATE_FAIL",
5616            VmstatCounters::VmstatCompactMigrateScanned => "VMSTAT_COMPACT_MIGRATE_SCANNED",
5617            VmstatCounters::VmstatCompactFreeScanned => "VMSTAT_COMPACT_FREE_SCANNED",
5618            VmstatCounters::VmstatCompactIsolated => "VMSTAT_COMPACT_ISOLATED",
5619            VmstatCounters::VmstatCompactStall => "VMSTAT_COMPACT_STALL",
5620            VmstatCounters::VmstatCompactFail => "VMSTAT_COMPACT_FAIL",
5621            VmstatCounters::VmstatCompactSuccess => "VMSTAT_COMPACT_SUCCESS",
5622            VmstatCounters::VmstatCompactDaemonWake => "VMSTAT_COMPACT_DAEMON_WAKE",
5623            VmstatCounters::VmstatUnevictablePgsCulled => "VMSTAT_UNEVICTABLE_PGS_CULLED",
5624            VmstatCounters::VmstatUnevictablePgsScanned => "VMSTAT_UNEVICTABLE_PGS_SCANNED",
5625            VmstatCounters::VmstatUnevictablePgsRescued => "VMSTAT_UNEVICTABLE_PGS_RESCUED",
5626            VmstatCounters::VmstatUnevictablePgsMlocked => "VMSTAT_UNEVICTABLE_PGS_MLOCKED",
5627            VmstatCounters::VmstatUnevictablePgsMunlocked => "VMSTAT_UNEVICTABLE_PGS_MUNLOCKED",
5628            VmstatCounters::VmstatUnevictablePgsCleared => "VMSTAT_UNEVICTABLE_PGS_CLEARED",
5629            VmstatCounters::VmstatUnevictablePgsStranded => "VMSTAT_UNEVICTABLE_PGS_STRANDED",
5630            VmstatCounters::VmstatNrZspages => "VMSTAT_NR_ZSPAGES",
5631            VmstatCounters::VmstatNrIonHeap => "VMSTAT_NR_ION_HEAP",
5632            VmstatCounters::VmstatNrGpuHeap => "VMSTAT_NR_GPU_HEAP",
5633            VmstatCounters::VmstatAllocstallDma => "VMSTAT_ALLOCSTALL_DMA",
5634            VmstatCounters::VmstatAllocstallMovable => "VMSTAT_ALLOCSTALL_MOVABLE",
5635            VmstatCounters::VmstatAllocstallNormal => "VMSTAT_ALLOCSTALL_NORMAL",
5636            VmstatCounters::VmstatCompactDaemonFreeScanned => "VMSTAT_COMPACT_DAEMON_FREE_SCANNED",
5637            VmstatCounters::VmstatCompactDaemonMigrateScanned => "VMSTAT_COMPACT_DAEMON_MIGRATE_SCANNED",
5638            VmstatCounters::VmstatNrFastrpc => "VMSTAT_NR_FASTRPC",
5639            VmstatCounters::VmstatNrIndirectlyReclaimable => "VMSTAT_NR_INDIRECTLY_RECLAIMABLE",
5640            VmstatCounters::VmstatNrIonHeapPool => "VMSTAT_NR_ION_HEAP_POOL",
5641            VmstatCounters::VmstatNrKernelMiscReclaimable => "VMSTAT_NR_KERNEL_MISC_RECLAIMABLE",
5642            VmstatCounters::VmstatNrShadowCallStackBytes => "VMSTAT_NR_SHADOW_CALL_STACK_BYTES",
5643            VmstatCounters::VmstatNrShmemHugepages => "VMSTAT_NR_SHMEM_HUGEPAGES",
5644            VmstatCounters::VmstatNrShmemPmdmapped => "VMSTAT_NR_SHMEM_PMDMAPPED",
5645            VmstatCounters::VmstatNrUnreclaimablePages => "VMSTAT_NR_UNRECLAIMABLE_PAGES",
5646            VmstatCounters::VmstatNrZoneActiveAnon => "VMSTAT_NR_ZONE_ACTIVE_ANON",
5647            VmstatCounters::VmstatNrZoneActiveFile => "VMSTAT_NR_ZONE_ACTIVE_FILE",
5648            VmstatCounters::VmstatNrZoneInactiveAnon => "VMSTAT_NR_ZONE_INACTIVE_ANON",
5649            VmstatCounters::VmstatNrZoneInactiveFile => "VMSTAT_NR_ZONE_INACTIVE_FILE",
5650            VmstatCounters::VmstatNrZoneUnevictable => "VMSTAT_NR_ZONE_UNEVICTABLE",
5651            VmstatCounters::VmstatNrZoneWritePending => "VMSTAT_NR_ZONE_WRITE_PENDING",
5652            VmstatCounters::VmstatOomKill => "VMSTAT_OOM_KILL",
5653            VmstatCounters::VmstatPglazyfree => "VMSTAT_PGLAZYFREE",
5654            VmstatCounters::VmstatPglazyfreed => "VMSTAT_PGLAZYFREED",
5655            VmstatCounters::VmstatPgrefill => "VMSTAT_PGREFILL",
5656            VmstatCounters::VmstatPgscanDirect => "VMSTAT_PGSCAN_DIRECT",
5657            VmstatCounters::VmstatPgscanKswapd => "VMSTAT_PGSCAN_KSWAPD",
5658            VmstatCounters::VmstatPgskipDma => "VMSTAT_PGSKIP_DMA",
5659            VmstatCounters::VmstatPgskipMovable => "VMSTAT_PGSKIP_MOVABLE",
5660            VmstatCounters::VmstatPgskipNormal => "VMSTAT_PGSKIP_NORMAL",
5661            VmstatCounters::VmstatPgstealDirect => "VMSTAT_PGSTEAL_DIRECT",
5662            VmstatCounters::VmstatPgstealKswapd => "VMSTAT_PGSTEAL_KSWAPD",
5663            VmstatCounters::VmstatSwapRa => "VMSTAT_SWAP_RA",
5664            VmstatCounters::VmstatSwapRaHit => "VMSTAT_SWAP_RA_HIT",
5665            VmstatCounters::VmstatWorkingsetRestore => "VMSTAT_WORKINGSET_RESTORE",
5666            VmstatCounters::VmstatAllocstallDevice => "VMSTAT_ALLOCSTALL_DEVICE",
5667            VmstatCounters::VmstatAllocstallDma32 => "VMSTAT_ALLOCSTALL_DMA32",
5668            VmstatCounters::VmstatBalloonDeflate => "VMSTAT_BALLOON_DEFLATE",
5669            VmstatCounters::VmstatBalloonInflate => "VMSTAT_BALLOON_INFLATE",
5670            VmstatCounters::VmstatBalloonMigrate => "VMSTAT_BALLOON_MIGRATE",
5671            VmstatCounters::VmstatCmaAllocFail => "VMSTAT_CMA_ALLOC_FAIL",
5672            VmstatCounters::VmstatCmaAllocSuccess => "VMSTAT_CMA_ALLOC_SUCCESS",
5673            VmstatCounters::VmstatNrFileHugepages => "VMSTAT_NR_FILE_HUGEPAGES",
5674            VmstatCounters::VmstatNrFilePmdmapped => "VMSTAT_NR_FILE_PMDMAPPED",
5675            VmstatCounters::VmstatNrFollPinAcquired => "VMSTAT_NR_FOLL_PIN_ACQUIRED",
5676            VmstatCounters::VmstatNrFollPinReleased => "VMSTAT_NR_FOLL_PIN_RELEASED",
5677            VmstatCounters::VmstatNrSecPageTablePages => "VMSTAT_NR_SEC_PAGE_TABLE_PAGES",
5678            VmstatCounters::VmstatNrShadowCallStack => "VMSTAT_NR_SHADOW_CALL_STACK",
5679            VmstatCounters::VmstatNrSwapcached => "VMSTAT_NR_SWAPCACHED",
5680            VmstatCounters::VmstatNrThrottledWritten => "VMSTAT_NR_THROTTLED_WRITTEN",
5681            VmstatCounters::VmstatPgallocDevice => "VMSTAT_PGALLOC_DEVICE",
5682            VmstatCounters::VmstatPgallocDma32 => "VMSTAT_PGALLOC_DMA32",
5683            VmstatCounters::VmstatPgdemoteDirect => "VMSTAT_PGDEMOTE_DIRECT",
5684            VmstatCounters::VmstatPgdemoteKswapd => "VMSTAT_PGDEMOTE_KSWAPD",
5685            VmstatCounters::VmstatPgreuse => "VMSTAT_PGREUSE",
5686            VmstatCounters::VmstatPgscanAnon => "VMSTAT_PGSCAN_ANON",
5687            VmstatCounters::VmstatPgscanFile => "VMSTAT_PGSCAN_FILE",
5688            VmstatCounters::VmstatPgskipDevice => "VMSTAT_PGSKIP_DEVICE",
5689            VmstatCounters::VmstatPgskipDma32 => "VMSTAT_PGSKIP_DMA32",
5690            VmstatCounters::VmstatPgstealAnon => "VMSTAT_PGSTEAL_ANON",
5691            VmstatCounters::VmstatPgstealFile => "VMSTAT_PGSTEAL_FILE",
5692            VmstatCounters::VmstatThpCollapseAlloc => "VMSTAT_THP_COLLAPSE_ALLOC",
5693            VmstatCounters::VmstatThpCollapseAllocFailed => "VMSTAT_THP_COLLAPSE_ALLOC_FAILED",
5694            VmstatCounters::VmstatThpDeferredSplitPage => "VMSTAT_THP_DEFERRED_SPLIT_PAGE",
5695            VmstatCounters::VmstatThpFaultAlloc => "VMSTAT_THP_FAULT_ALLOC",
5696            VmstatCounters::VmstatThpFaultFallback => "VMSTAT_THP_FAULT_FALLBACK",
5697            VmstatCounters::VmstatThpFaultFallbackCharge => "VMSTAT_THP_FAULT_FALLBACK_CHARGE",
5698            VmstatCounters::VmstatThpFileAlloc => "VMSTAT_THP_FILE_ALLOC",
5699            VmstatCounters::VmstatThpFileFallback => "VMSTAT_THP_FILE_FALLBACK",
5700            VmstatCounters::VmstatThpFileFallbackCharge => "VMSTAT_THP_FILE_FALLBACK_CHARGE",
5701            VmstatCounters::VmstatThpFileMapped => "VMSTAT_THP_FILE_MAPPED",
5702            VmstatCounters::VmstatThpMigrationFail => "VMSTAT_THP_MIGRATION_FAIL",
5703            VmstatCounters::VmstatThpMigrationSplit => "VMSTAT_THP_MIGRATION_SPLIT",
5704            VmstatCounters::VmstatThpMigrationSuccess => "VMSTAT_THP_MIGRATION_SUCCESS",
5705            VmstatCounters::VmstatThpScanExceedNonePte => "VMSTAT_THP_SCAN_EXCEED_NONE_PTE",
5706            VmstatCounters::VmstatThpScanExceedSharePte => "VMSTAT_THP_SCAN_EXCEED_SHARE_PTE",
5707            VmstatCounters::VmstatThpScanExceedSwapPte => "VMSTAT_THP_SCAN_EXCEED_SWAP_PTE",
5708            VmstatCounters::VmstatThpSplitPage => "VMSTAT_THP_SPLIT_PAGE",
5709            VmstatCounters::VmstatThpSplitPageFailed => "VMSTAT_THP_SPLIT_PAGE_FAILED",
5710            VmstatCounters::VmstatThpSplitPmd => "VMSTAT_THP_SPLIT_PMD",
5711            VmstatCounters::VmstatThpSwpout => "VMSTAT_THP_SWPOUT",
5712            VmstatCounters::VmstatThpSwpoutFallback => "VMSTAT_THP_SWPOUT_FALLBACK",
5713            VmstatCounters::VmstatThpZeroPageAlloc => "VMSTAT_THP_ZERO_PAGE_ALLOC",
5714            VmstatCounters::VmstatThpZeroPageAllocFailed => "VMSTAT_THP_ZERO_PAGE_ALLOC_FAILED",
5715            VmstatCounters::VmstatVmaLockAbort => "VMSTAT_VMA_LOCK_ABORT",
5716            VmstatCounters::VmstatVmaLockMiss => "VMSTAT_VMA_LOCK_MISS",
5717            VmstatCounters::VmstatVmaLockRetry => "VMSTAT_VMA_LOCK_RETRY",
5718            VmstatCounters::VmstatVmaLockSuccess => "VMSTAT_VMA_LOCK_SUCCESS",
5719            VmstatCounters::VmstatWorkingsetActivateAnon => "VMSTAT_WORKINGSET_ACTIVATE_ANON",
5720            VmstatCounters::VmstatWorkingsetActivateFile => "VMSTAT_WORKINGSET_ACTIVATE_FILE",
5721            VmstatCounters::VmstatWorkingsetNodes => "VMSTAT_WORKINGSET_NODES",
5722            VmstatCounters::VmstatWorkingsetRefaultAnon => "VMSTAT_WORKINGSET_REFAULT_ANON",
5723            VmstatCounters::VmstatWorkingsetRefaultFile => "VMSTAT_WORKINGSET_REFAULT_FILE",
5724            VmstatCounters::VmstatWorkingsetRestoreAnon => "VMSTAT_WORKINGSET_RESTORE_ANON",
5725            VmstatCounters::VmstatWorkingsetRestoreFile => "VMSTAT_WORKINGSET_RESTORE_FILE",
5726        }
5727    }
5728}
5729/// This file defines the configuration for the Linux /proc poller data source,
5730/// which injects counters in the trace.
5731/// Counters that are needed in the trace must be explicitly listed in the
5732/// *_counters fields. This is to avoid spamming the trace with all counters
5733/// at all times.
5734/// The sampling rate is configurable. All polling rates (*_period_ms) need
5735/// to be integer multiples of each other.
5736/// OK:     [10ms, 10ms, 10ms],  [10ms, 20ms, 10ms],  [10ms, 20ms, 60ms]
5737/// Not OK: [10ms, 10ms, 11ms],  [10ms, 15ms, 20ms]
5738#[derive(Clone, PartialEq, ::prost::Message)]
5739pub struct SysStatsConfig {
5740    /// Polls /proc/meminfo every X ms, if non-zero.
5741    /// This is required to be > 10ms to avoid excessive CPU usage.
5742    /// Cost: 0.3 ms \[read\] + 0.07 ms [parse + trace injection]
5743    #[prost(uint32, optional, tag="1")]
5744    pub meminfo_period_ms: ::core::option::Option<u32>,
5745    /// If empty all known counters are reported. Otherwise, only the counters
5746    /// specified below are reported.
5747    #[prost(enumeration="MeminfoCounters", repeated, packed="false", tag="2")]
5748    pub meminfo_counters: ::prost::alloc::vec::Vec<i32>,
5749    /// Polls /proc/vmstat every X ms, if non-zero.
5750    /// This is required to be > 10ms to avoid excessive CPU usage.
5751    /// Cost: 0.2 ms \[read\] + 0.3 ms [parse + trace injection]
5752    #[prost(uint32, optional, tag="3")]
5753    pub vmstat_period_ms: ::core::option::Option<u32>,
5754    #[prost(enumeration="VmstatCounters", repeated, packed="false", tag="4")]
5755    pub vmstat_counters: ::prost::alloc::vec::Vec<i32>,
5756    /// Pols /proc/stat every X ms, if non-zero.
5757    /// This is required to be > 10ms to avoid excessive CPU usage.
5758    /// Cost: 4.1 ms \[read\] + 1.9 ms [parse + trace injection]
5759    #[prost(uint32, optional, tag="5")]
5760    pub stat_period_ms: ::core::option::Option<u32>,
5761    #[prost(enumeration="sys_stats_config::StatCounters", repeated, packed="false", tag="6")]
5762    pub stat_counters: ::prost::alloc::vec::Vec<i32>,
5763    /// Polls /sys/devfreq/*/curfreq every X ms, if non-zero.
5764    /// This is required to be > 10ms to avoid excessive CPU usage.
5765    /// This option can be used to record unchanging values.
5766    /// Updates from frequency changes can come from ftrace/set_clock_rate.
5767    #[prost(uint32, optional, tag="7")]
5768    pub devfreq_period_ms: ::core::option::Option<u32>,
5769    /// Polls /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq every X ms.
5770    /// This is required to be > 10ms to avoid excessive CPU usage.
5771    #[prost(uint32, optional, tag="8")]
5772    pub cpufreq_period_ms: ::core::option::Option<u32>,
5773    /// Polls /proc/buddyinfo every X ms, if non-zero.
5774    /// This is required to be > 10ms to avoid excessive CPU usage.
5775    #[prost(uint32, optional, tag="9")]
5776    pub buddyinfo_period_ms: ::core::option::Option<u32>,
5777    /// Polls /proc/diskstats every X ms, if non-zero.
5778    /// This is required to be > 10ms to avoid excessive CPU usage.
5779    #[prost(uint32, optional, tag="10")]
5780    pub diskstat_period_ms: ::core::option::Option<u32>,
5781    /// Polls /proc/pressure/* every X ms, if non-zero.
5782    /// This is required to be > 10ms to avoid excessive CPU usage.
5783    #[prost(uint32, optional, tag="11")]
5784    pub psi_period_ms: ::core::option::Option<u32>,
5785    /// Polls /sys/class/thermal/* every X ms, if non-zero.
5786    /// This is required to be > 10ms to avoid excessive CPU usage.
5787    #[prost(uint32, optional, tag="12")]
5788    pub thermal_period_ms: ::core::option::Option<u32>,
5789    /// Polls /sys/devices/system/cpu/cpu*/cpuidle/state* every X ms, if non-zero.
5790    /// This is required to be > 10ms to avoid excessive CPU usage.
5791    #[prost(uint32, optional, tag="13")]
5792    pub cpuidle_period_ms: ::core::option::Option<u32>,
5793    /// Polls device-specific GPU frequency info every X ms, if non-zero.
5794    /// This is required to be > 10ms to avoid excessive CPU usage.
5795    #[prost(uint32, optional, tag="14")]
5796    pub gpufreq_period_ms: ::core::option::Option<u32>,
5797}
5798/// Nested message and enum types in `SysStatsConfig`.
5799pub mod sys_stats_config {
5800    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
5801    #[repr(i32)]
5802    pub enum StatCounters {
5803        StatUnspecified = 0,
5804        StatCpuTimes = 1,
5805        StatIrqCounts = 2,
5806        StatSoftirqCounts = 3,
5807        StatForkCount = 4,
5808    }
5809    impl StatCounters {
5810        /// String value of the enum field names used in the ProtoBuf definition.
5811        ///
5812        /// The values are not transformed in any way and thus are considered stable
5813        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
5814        pub fn as_str_name(&self) -> &'static str {
5815            match self {
5816                StatCounters::StatUnspecified => "STAT_UNSPECIFIED",
5817                StatCounters::StatCpuTimes => "STAT_CPU_TIMES",
5818                StatCounters::StatIrqCounts => "STAT_IRQ_COUNTS",
5819                StatCounters::StatSoftirqCounts => "STAT_SOFTIRQ_COUNTS",
5820                StatCounters::StatForkCount => "STAT_FORK_COUNT",
5821            }
5822        }
5823    }
5824}
5825/// The configuration for a fake producer used in tests.
5826#[derive(Clone, PartialEq, ::prost::Message)]
5827pub struct TestConfig {
5828    /// The number of messages the fake producer should send.
5829    #[prost(uint32, optional, tag="1")]
5830    pub message_count: ::core::option::Option<u32>,
5831    /// The maximum number of messages which should be sent each second.
5832    /// The actual obserced speed may be lower if the producer is unable to
5833    /// work fast enough.
5834    /// If this is zero or unset, the producer will send as fast as possible.
5835    #[prost(uint32, optional, tag="2")]
5836    pub max_messages_per_second: ::core::option::Option<u32>,
5837    /// The seed value for a simple multiplicative congruential pseudo-random
5838    /// number sequence.
5839    #[prost(uint32, optional, tag="3")]
5840    pub seed: ::core::option::Option<u32>,
5841    /// The size of each message in bytes. Should be greater than or equal 5 to
5842    /// account for the number of bytes needed to encode the random number and a
5843    /// null byte for the string.
5844    #[prost(uint32, optional, tag="4")]
5845    pub message_size: ::core::option::Option<u32>,
5846    /// Whether the producer should send a event batch when the data source is
5847    /// is initially registered.
5848    #[prost(bool, optional, tag="5")]
5849    pub send_batch_on_register: ::core::option::Option<bool>,
5850    #[prost(message, optional, tag="6")]
5851    pub dummy_fields: ::core::option::Option<test_config::DummyFields>,
5852}
5853/// Nested message and enum types in `TestConfig`.
5854pub mod test_config {
5855    #[derive(Clone, PartialEq, ::prost::Message)]
5856    pub struct DummyFields {
5857        #[prost(uint32, optional, tag="1")]
5858        pub field_uint32: ::core::option::Option<u32>,
5859        #[prost(int32, optional, tag="2")]
5860        pub field_int32: ::core::option::Option<i32>,
5861        #[prost(uint64, optional, tag="3")]
5862        pub field_uint64: ::core::option::Option<u64>,
5863        #[prost(int64, optional, tag="4")]
5864        pub field_int64: ::core::option::Option<i64>,
5865        #[prost(fixed64, optional, tag="5")]
5866        pub field_fixed64: ::core::option::Option<u64>,
5867        #[prost(sfixed64, optional, tag="6")]
5868        pub field_sfixed64: ::core::option::Option<i64>,
5869        #[prost(fixed32, optional, tag="7")]
5870        pub field_fixed32: ::core::option::Option<u32>,
5871        #[prost(sfixed32, optional, tag="8")]
5872        pub field_sfixed32: ::core::option::Option<i32>,
5873        #[prost(double, optional, tag="9")]
5874        pub field_double: ::core::option::Option<f64>,
5875        #[prost(float, optional, tag="10")]
5876        pub field_float: ::core::option::Option<f32>,
5877        #[prost(sint64, optional, tag="11")]
5878        pub field_sint64: ::core::option::Option<i64>,
5879        #[prost(sint32, optional, tag="12")]
5880        pub field_sint32: ::core::option::Option<i32>,
5881        #[prost(string, optional, tag="13")]
5882        pub field_string: ::core::option::Option<::prost::alloc::string::String>,
5883        #[prost(bytes="vec", optional, tag="14")]
5884        pub field_bytes: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
5885    }
5886}
5887/// The following fields define the set of enabled trace categories. Each list
5888/// item is a glob.
5889///
5890/// To determine if category is enabled, it is checked against the filters in
5891/// the following order:
5892///
5893///    1. Exact matches in enabled categories.
5894///    2. Exact matches in enabled tags.
5895///    3. Exact matches in disabled categories.
5896///    4. Exact matches in disabled tags.
5897///    5. Pattern matches in enabled categories.
5898///    6. Pattern matches in enabled tags.
5899///    7. Pattern matches in disabled categories.
5900///    8. Pattern matches in disabled tags.
5901///
5902/// If none of the steps produced a match:
5903///   - In the C++ SDK (`perfetto::Category`), categories are enabled by
5904///   default.
5905///   - In the C SDK (`PerfettoTeCategory`), categories are disabled by default.
5906///
5907/// Examples:
5908///
5909///   - To enable all non-slow/debug categories:
5910///
5911///        enabled_categories: "*"
5912///
5913///   - To enable specific categories:
5914///
5915///        disabled_categories: "*"
5916///        enabled_categories: "my_category"
5917///        enabled_categories: "my_category2"
5918///
5919///   - To enable only categories with a specific tag:
5920///
5921///        disabled_tags: "*"
5922///        enabled_tags: "my_tag"
5923///
5924#[derive(Clone, PartialEq, ::prost::Message)]
5925pub struct TrackEventConfig {
5926    /// Default: []
5927    #[prost(string, repeated, tag="1")]
5928    pub disabled_categories: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5929    /// Default: []
5930    #[prost(string, repeated, tag="2")]
5931    pub enabled_categories: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5932    /// Default: ["slow", "debug"]
5933    #[prost(string, repeated, tag="3")]
5934    pub disabled_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5935    /// Default: []
5936    #[prost(string, repeated, tag="4")]
5937    pub enabled_tags: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
5938    /// Default: false (i.e. enabled by default)
5939    #[prost(bool, optional, tag="5")]
5940    pub disable_incremental_timestamps: ::core::option::Option<bool>,
5941    /// Allows to specify a custom unit different than the default (ns).
5942    /// Also affects thread timestamps if enable_thread_time_sampling = true.
5943    /// A multiplier of 1000 means that a timestamp = 3 should be interpreted as
5944    /// 3000 ns = 3 us.
5945    /// Default: 1 (if unset, it should be read as 1).
5946    #[prost(uint64, optional, tag="6")]
5947    pub timestamp_unit_multiplier: ::core::option::Option<u64>,
5948    /// Default: false (i.e. debug_annotations is NOT filtered out by default)
5949    /// When true, any debug annotations provided as arguments to the
5950    /// TRACE_EVENT macros are not written into the trace. Typed arguments will
5951    /// still be emitted even if set to true.
5952    #[prost(bool, optional, tag="7")]
5953    pub filter_debug_annotations: ::core::option::Option<bool>,
5954    /// Default : false (i.e. disabled)
5955    /// When true, the SDK samples and emits the current thread time counter value
5956    /// for each event on the current thread's track. This value represents the
5957    /// total CPU time consumed by that thread since its creation. Note that if a
5958    /// thread is not scheduled by OS for some duration, that time won't be
5959    /// included in thread_time.
5960    /// Learn more : "CLOCK_THREAD_CPUTIME_ID" flag at
5961    /// <https://linux.die.net/man/3/clock_gettime>
5962    #[prost(bool, optional, tag="8")]
5963    pub enable_thread_time_sampling: ::core::option::Option<bool>,
5964    /// Default: false (i.e. dynamic event names are NOT filtered out by default)
5965    /// When true, event_names wrapped in perfetto::DynamicString will be filtered
5966    /// out.
5967    #[prost(bool, optional, tag="9")]
5968    pub filter_dynamic_event_names: ::core::option::Option<bool>,
5969}
5970/// This data-source does a one-off recording of system information when
5971/// the trace starts.
5972/// Currently this includes:
5973/// - Values of
5974/// /sys/devices/system/cpu/cpu*/cpufreq/scaling_available_frequencies This
5975/// datasource has no configuration options at present.
5976#[derive(Clone, PartialEq, ::prost::Message)]
5977pub struct SystemInfoConfig {
5978}
5979#[derive(Clone, PartialEq, ::prost::Message)]
5980pub struct ChromiumHistogramSamplesConfig {
5981    /// List of histograms to record. If no histogram is specified, all histograms
5982    /// are recorded.
5983    #[prost(message, repeated, tag="1")]
5984    pub histograms: ::prost::alloc::vec::Vec<chromium_histogram_samples_config::HistogramSample>,
5985    /// Default: false (i.e. histogram names are NOT filtered out by default)
5986    /// When true, histogram_name will be filtered out.
5987    #[prost(bool, optional, tag="2")]
5988    pub filter_histogram_names: ::core::option::Option<bool>,
5989}
5990/// Nested message and enum types in `ChromiumHistogramSamplesConfig`.
5991pub mod chromium_histogram_samples_config {
5992    /// Records when a value within the specified bounds [min_value, max_value] is
5993    /// emitted into a Chrome histogram.
5994    #[derive(Clone, PartialEq, ::prost::Message)]
5995    pub struct HistogramSample {
5996        #[prost(string, optional, tag="1")]
5997        pub histogram_name: ::core::option::Option<::prost::alloc::string::String>,
5998        #[prost(int64, optional, tag="2")]
5999        pub min_value: ::core::option::Option<i64>,
6000        #[prost(int64, optional, tag="3")]
6001        pub max_value: ::core::option::Option<i64>,
6002    }
6003}
6004/// The configuration that is passed to each data source when starting tracing.
6005/// Next id: 136
6006#[derive(Clone, PartialEq, ::prost::Message)]
6007pub struct DataSourceConfig {
6008    /// Data source unique name, e.g., "linux.ftrace". This must match
6009    /// the name passed by the data source when it registers (see
6010    /// RegisterDataSource()).
6011    #[prost(string, optional, tag="1")]
6012    pub name: ::core::option::Option<::prost::alloc::string::String>,
6013    /// The index of the logging buffer where TracePacket(s) will be stored.
6014    /// This field doesn't make a major difference for the Producer(s). The final
6015    /// logging buffers, in fact, are completely owned by the Service. We just ask
6016    /// the Producer to copy this number into the chunk headers it emits, so that
6017    /// the Service can quickly identify the buffer where to move the chunks into
6018    /// without expensive lookups on its fastpath.
6019    #[prost(uint32, optional, tag="2")]
6020    pub target_buffer: ::core::option::Option<u32>,
6021    /// Set by the service to indicate the duration of the trace.
6022    /// DO NOT SET in consumer as this will be overridden by the service.
6023    #[prost(uint32, optional, tag="3")]
6024    pub trace_duration_ms: ::core::option::Option<u32>,
6025    /// If true, |trace_duration_ms| should count also time in suspend. This
6026    /// is propagated from TraceConfig.prefer_suspend_clock_for_duration.
6027    #[prost(bool, optional, tag="122")]
6028    pub prefer_suspend_clock_for_duration: ::core::option::Option<bool>,
6029    /// Set by the service to indicate how long it waits after StopDataSource.
6030    /// DO NOT SET in consumer as this will be overridden by the service.
6031    #[prost(uint32, optional, tag="7")]
6032    pub stop_timeout_ms: ::core::option::Option<u32>,
6033    /// Set by the service to indicate whether this tracing session has extra
6034    /// guardrails.
6035    /// DO NOT SET in consumer as this will be overridden by the service.
6036    #[prost(bool, optional, tag="6")]
6037    pub enable_extra_guardrails: ::core::option::Option<bool>,
6038    /// Set by the service to indicate which user initiated this trace.
6039    /// DO NOT SET in consumer as this will be overridden by the service.
6040    #[prost(enumeration="data_source_config::SessionInitiator", optional, tag="8")]
6041    pub session_initiator: ::core::option::Option<i32>,
6042    /// Set by the service to indicate which tracing session the data source
6043    /// belongs to. The intended use case for this is checking if two data sources,
6044    /// one of which produces metadata for the other one, belong to the same trace
6045    /// session and hence should be linked together.
6046    /// This field was introduced in Aug 2018 after Android P.
6047    /// DO NOT SET in consumer as this will be overridden by the service.
6048    #[prost(uint64, optional, tag="4")]
6049    pub tracing_session_id: ::core::option::Option<u64>,
6050    // Keeep the lower IDs (up to 99) for fields that are *not* specific to
6051    // data-sources and needs to be processed by the traced daemon.
6052
6053    // All data source config fields must be marked as \[lazy=true\]. This prevents
6054    // the proto-to-cpp generator from recursing into those when generating the
6055    // cpp classes and polluting tracing/core with data-source-specific classes.
6056    // Instead they are treated as opaque strings containing raw proto bytes.
6057
6058    /// Data source name: linux.ftrace
6059    #[prost(message, optional, tag="100")]
6060    pub ftrace_config: ::core::option::Option<FtraceConfig>,
6061    /// Data source name: linux.inode_file_map
6062    #[prost(message, optional, tag="102")]
6063    pub inode_file_config: ::core::option::Option<InodeFileConfig>,
6064    /// Data source name: linux.process_stats
6065    #[prost(message, optional, tag="103")]
6066    pub process_stats_config: ::core::option::Option<ProcessStatsConfig>,
6067    /// Data source name: linux.sys_stats
6068    #[prost(message, optional, tag="104")]
6069    pub sys_stats_config: ::core::option::Option<SysStatsConfig>,
6070    /// Data source name: android.heapprofd
6071    /// Introduced in Android 10.
6072    #[prost(message, optional, tag="105")]
6073    pub heapprofd_config: ::core::option::Option<HeapprofdConfig>,
6074    /// Data source name: android.java_hprof
6075    /// Introduced in Android 11.
6076    #[prost(message, optional, tag="110")]
6077    pub java_hprof_config: ::core::option::Option<JavaHprofConfig>,
6078    /// Data source name: android.power
6079    #[prost(message, optional, tag="106")]
6080    pub android_power_config: ::core::option::Option<AndroidPowerConfig>,
6081    /// Data source name: android.log
6082    #[prost(message, optional, tag="107")]
6083    pub android_log_config: ::core::option::Option<AndroidLogConfig>,
6084    /// Data source name: gpu.counters
6085    #[prost(message, optional, tag="108")]
6086    pub gpu_counter_config: ::core::option::Option<GpuCounterConfig>,
6087    /// Data source name: android.game_interventions
6088    #[prost(message, optional, tag="116")]
6089    pub android_game_intervention_list_config: ::core::option::Option<AndroidGameInterventionListConfig>,
6090    /// Data source name: android.packages_list
6091    #[prost(message, optional, tag="109")]
6092    pub packages_list_config: ::core::option::Option<PackagesListConfig>,
6093    /// Data source name: linux.perf
6094    #[prost(message, optional, tag="111")]
6095    pub perf_event_config: ::core::option::Option<PerfEventConfig>,
6096    /// Data source name: vulkan.memory_tracker
6097    #[prost(message, optional, tag="112")]
6098    pub vulkan_memory_config: ::core::option::Option<VulkanMemoryConfig>,
6099    /// Data source name: track_event
6100    #[prost(message, optional, tag="113")]
6101    pub track_event_config: ::core::option::Option<TrackEventConfig>,
6102    /// Data source name: android.polled_state
6103    #[prost(message, optional, tag="114")]
6104    pub android_polled_state_config: ::core::option::Option<AndroidPolledStateConfig>,
6105    /// Data source name: android.system_property
6106    #[prost(message, optional, tag="118")]
6107    pub android_system_property_config: ::core::option::Option<AndroidSystemPropertyConfig>,
6108    /// Data source name: android.statsd
6109    #[prost(message, optional, tag="117")]
6110    pub statsd_tracing_config: ::core::option::Option<StatsdTracingConfig>,
6111    /// Data source name: linux.system_info
6112    #[prost(message, optional, tag="119")]
6113    pub system_info_config: ::core::option::Option<SystemInfoConfig>,
6114    /// Chrome is special as it doesn't use the perfetto IPC layer. We want to
6115    /// avoid proto serialization and de-serialization there because that would
6116    /// just add extra hops on top of the Mojo ser/des. Instead we auto-generate a
6117    /// C++ class for it so it can pass around plain C++ objets.
6118    #[prost(message, optional, tag="101")]
6119    pub chrome_config: ::core::option::Option<ChromeConfig>,
6120    /// Data source name: code.v8.dev
6121    #[prost(message, optional, tag="127")]
6122    pub v8_config: ::core::option::Option<V8Config>,
6123    /// If an interceptor is specified here, packets for this data source will be
6124    /// rerouted to the interceptor instead of the main trace buffer. This can be
6125    /// used, for example, to write trace data into ETW or for logging trace points
6126    /// to the console.
6127    ///
6128    /// Note that interceptors are only supported by data sources registered
6129    /// through the Perfetto SDK API. Data sources that don't use that API (e.g.,
6130    /// traced_probes) may not support interception.
6131    #[prost(message, optional, tag="115")]
6132    pub interceptor_config: ::core::option::Option<InterceptorConfig>,
6133    /// Data source name: android.network_packets.
6134    /// Introduced in Android 14 (U).
6135    #[prost(message, optional, tag="120")]
6136    pub network_packet_trace_config: ::core::option::Option<NetworkPacketTraceConfig>,
6137    /// Data source name: android.surfaceflinger.layers
6138    #[prost(message, optional, tag="121")]
6139    pub surfaceflinger_layers_config: ::core::option::Option<SurfaceFlingerLayersConfig>,
6140    /// Data source name: android.surfaceflinger.transactions
6141    #[prost(message, optional, tag="123")]
6142    pub surfaceflinger_transactions_config: ::core::option::Option<SurfaceFlingerTransactionsConfig>,
6143    /// Data source name: android.sdk_sysprop_guard
6144    /// Introduced in Android 14 (U) QPR1.
6145    #[prost(message, optional, tag="124")]
6146    pub android_sdk_sysprop_guard_config: ::core::option::Option<AndroidSdkSyspropGuardConfig>,
6147    /// Data source name: windows.etw
6148    #[prost(message, optional, tag="125")]
6149    pub etw_config: ::core::option::Option<EtwConfig>,
6150    /// Data source name: android.protolog
6151    #[prost(message, optional, tag="126")]
6152    pub protolog_config: ::core::option::Option<ProtoLogConfig>,
6153    /// Data source name: android.input.inputevent
6154    #[prost(message, optional, tag="128")]
6155    pub android_input_event_config: ::core::option::Option<AndroidInputEventConfig>,
6156    /// Data source name: android.pixel.modem
6157    #[prost(message, optional, tag="129")]
6158    pub pixel_modem_config: ::core::option::Option<PixelModemConfig>,
6159    /// Data source name: android.windowmanager
6160    #[prost(message, optional, tag="130")]
6161    pub windowmanager_config: ::core::option::Option<WindowManagerConfig>,
6162    /// Data source name: org.chromium.system_metrics
6163    #[prost(message, optional, tag="131")]
6164    pub chromium_system_metrics: ::core::option::Option<ChromiumSystemMetricsConfig>,
6165    /// Data source name: android.kernel_wakelocks
6166    #[prost(message, optional, tag="132")]
6167    pub kernel_wakelocks_config: ::core::option::Option<KernelWakelocksConfig>,
6168    /// Data source name: gpu.renderstages
6169    #[prost(message, optional, tag="133")]
6170    pub gpu_renderstages_config: ::core::option::Option<GpuRenderStagesConfig>,
6171    /// Data source name: org.chromium.histogram_samples
6172    #[prost(message, optional, tag="134")]
6173    pub chromium_histogram_samples: ::core::option::Option<ChromiumHistogramSamplesConfig>,
6174    /// Data source name: android.app_wakelocks
6175    #[prost(message, optional, tag="135")]
6176    pub app_wakelocks_config: ::core::option::Option<AppWakelocksConfig>,
6177    /// This is a fallback mechanism to send a free-form text config to the
6178    /// producer. In theory this should never be needed. All the code that
6179    /// is part of the platform (i.e. traced service) is supposed to *not* truncate
6180    /// the trace config proto and propagate unknown fields. However, if anything
6181    /// in the pipeline (client or backend) ends up breaking this forward compat
6182    /// plan, this field will become the escape hatch to allow future data sources
6183    /// to get some meaningful configuration.
6184    #[prost(string, optional, tag="1000")]
6185    pub legacy_config: ::core::option::Option<::prost::alloc::string::String>,
6186    /// This field is only used for testing.
6187    #[prost(message, optional, tag="1001")]
6188    pub for_testing: ::core::option::Option<TestConfig>,
6189}
6190/// Nested message and enum types in `DataSourceConfig`.
6191pub mod data_source_config {
6192    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6193    #[repr(i32)]
6194    pub enum SessionInitiator {
6195        Unspecified = 0,
6196        /// This trace was initiated from a trusted system app has DUMP and
6197        /// USAGE_STATS permission. This system app is expected to not expose the
6198        /// trace to the user of the device.
6199        /// This is determined by checking the UID initiating the trace.
6200        TrustedSystem = 1,
6201    }
6202    impl SessionInitiator {
6203        /// String value of the enum field names used in the ProtoBuf definition.
6204        ///
6205        /// The values are not transformed in any way and thus are considered stable
6206        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
6207        pub fn as_str_name(&self) -> &'static str {
6208            match self {
6209                SessionInitiator::Unspecified => "SESSION_INITIATOR_UNSPECIFIED",
6210                SessionInitiator::TrustedSystem => "SESSION_INITIATOR_TRUSTED_SYSTEM",
6211            }
6212        }
6213    }
6214}
6215/// The overall config that is used when starting a new tracing session through
6216/// ProducerPort::StartTracing().
6217/// It contains the general config for the logging buffer(s) and the configs for
6218/// all the data source being enabled.
6219///
6220/// Next id: 40.
6221#[derive(Clone, PartialEq, ::prost::Message)]
6222pub struct TraceConfig {
6223    #[prost(message, repeated, tag="1")]
6224    pub buffers: ::prost::alloc::vec::Vec<trace_config::BufferConfig>,
6225    #[prost(message, repeated, tag="2")]
6226    pub data_sources: ::prost::alloc::vec::Vec<trace_config::DataSource>,
6227    #[prost(message, optional, tag="20")]
6228    pub builtin_data_sources: ::core::option::Option<trace_config::BuiltinDataSource>,
6229    /// If specified, the trace will be stopped |duration_ms| after starting.
6230    /// This does *not* count the time the system is suspended, so we will run
6231    /// for duration_ms of system activity, not wall time.
6232    ///
6233    /// However in case of traces with triggers, see
6234    /// TriggerConfig.trigger_timeout_ms instead.
6235    #[prost(uint32, optional, tag="3")]
6236    pub duration_ms: ::core::option::Option<u32>,
6237    /// If true, tries to use CLOCK_BOOTTIME for duration_ms rather than
6238    /// CLOCK_MONOTONIC (which doesn't count time in suspend). Supported only on
6239    /// Linux/Android, no-op on other platforms. This is used when dealing with
6240    /// long (e.g. 24h) traces, where suspend can inflate them to weeks of
6241    /// wall-time, making them more likely to hit device reboots (and hence loss).
6242    /// This option also changes consistently the semantic of
6243    /// TriggerConfig.stop_delay_ms.
6244    #[prost(bool, optional, tag="36")]
6245    pub prefer_suspend_clock_for_duration: ::core::option::Option<bool>,
6246    /// This is set when --dropbox is passed to the Perfetto command line client
6247    /// and enables guardrails that limit resource usage for traces requested
6248    /// by statsd.
6249    #[prost(bool, optional, tag="4")]
6250    pub enable_extra_guardrails: ::core::option::Option<bool>,
6251    /// Reject producers that are not running under the same UID as the tracing
6252    /// service.
6253    #[prost(enumeration="trace_config::LockdownModeOperation", optional, tag="5")]
6254    pub lockdown_mode: ::core::option::Option<i32>,
6255    #[prost(message, repeated, tag="6")]
6256    pub producers: ::prost::alloc::vec::Vec<trace_config::ProducerConfig>,
6257    /// Statsd-specific metadata.
6258    #[prost(message, optional, tag="7")]
6259    pub statsd_metadata: ::core::option::Option<trace_config::StatsdMetadata>,
6260    /// When true && |output_path| is empty, the EnableTracing() request must
6261    /// provide a file descriptor. The service will then periodically read packets
6262    /// out of the trace buffer and store it into the passed file.
6263    /// If |output_path| is not empty no fd should be passed, the service
6264    /// will create a new file and write into that (see comment below).
6265    #[prost(bool, optional, tag="8")]
6266    pub write_into_file: ::core::option::Option<bool>,
6267    /// This must point to a non-existing file. If the file exists the service
6268    /// will NOT overwrite and will fail instead as a security precaution.
6269    /// On Android, when this is used with the system traced, the path must be
6270    /// within /data/misc/perfetto-traces/ or the trace will fail.
6271    /// This option has been introduced in Android R. Before R write_into_file
6272    /// can be used only with the "pass a file descriptor over IPC" mode.
6273    #[prost(string, optional, tag="29")]
6274    pub output_path: ::core::option::Option<::prost::alloc::string::String>,
6275    /// Optional. If non-zero tunes the write period. A min value of 100ms is
6276    /// enforced (i.e. smaller values are ignored).
6277    #[prost(uint32, optional, tag="9")]
6278    pub file_write_period_ms: ::core::option::Option<u32>,
6279    /// Optional. When non zero the periodic write stops once at most X bytes
6280    /// have been written into the file. Tracing is disabled when this limit is
6281    /// reached, even if |duration_ms| has not been reached yet.
6282    #[prost(uint64, optional, tag="10")]
6283    pub max_file_size_bytes: ::core::option::Option<u64>,
6284    #[prost(message, optional, tag="11")]
6285    pub guardrail_overrides: ::core::option::Option<trace_config::GuardrailOverrides>,
6286    /// When true, data sources are not started until an explicit call to
6287    /// StartTracing() on the consumer port. This is to support early
6288    /// initialization and fast trace triggering. This can be used only when the
6289    /// Consumer explicitly triggers the StartTracing() method.
6290    /// This should not be used in a remote trace config via statsd, doing so will
6291    /// result in a hung trace session.
6292    #[prost(bool, optional, tag="12")]
6293    pub deferred_start: ::core::option::Option<bool>,
6294    /// When set, it periodically issues a Flush() to all data source, forcing them
6295    /// to commit their data into the tracing service. This can be used for
6296    /// quasi-real-time streaming mode and to guarantee some partial ordering of
6297    /// events in the trace in windows of X ms.
6298    #[prost(uint32, optional, tag="13")]
6299    pub flush_period_ms: ::core::option::Option<u32>,
6300    /// Wait for this long for producers to acknowledge flush requests.
6301    /// Default 5s.
6302    #[prost(uint32, optional, tag="14")]
6303    pub flush_timeout_ms: ::core::option::Option<u32>,
6304    /// Wait for this long for producers to acknowledge stop requests.
6305    /// Default 5s.
6306    #[prost(uint32, optional, tag="23")]
6307    pub data_source_stop_timeout_ms: ::core::option::Option<u32>,
6308    /// Android-only. If set, sends an intent to the Traceur system app when the
6309    /// trace ends to notify it about the trace readiness.
6310    #[prost(bool, optional, tag="16")]
6311    pub notify_traceur: ::core::option::Option<bool>,
6312    /// This field was introduced in Android S.
6313    /// Android-only. If set to a value > 0, marks the trace session as a candidate
6314    /// for being attached to a bugreport. This field effectively acts as a z-index
6315    /// for bugreports. When Android's dumpstate runs perfetto
6316    /// --save-for-bugreport, traced will pick the tracing session with the highest
6317    /// score (score <= 0 is ignored) and:
6318    /// On Android S, T:  will steal its contents, save the trace into
6319    ///      a known path and stop prematurely.
6320    /// On Android U+: will create a read-only snapshot and save that into a known
6321    ///      path, without stoppin the original tracing session.
6322    /// When this field is set the tracing session becomes eligible to be cloned
6323    /// by other UIDs.
6324    #[prost(int32, optional, tag="30")]
6325    pub bugreport_score: ::core::option::Option<i32>,
6326    /// When set, defines name of the file that will be saved under
6327    /// /data/misc/perfetto-traces/bugreport/ when using --save-all-for-bugreport.
6328    /// If omitted, traces will be named systrace.pftrace, systrace_1.pftrace, etc,
6329    /// starting from the highest `bugreport_score`.
6330    /// Introduced in v42 / Android V.
6331    #[prost(string, optional, tag="38")]
6332    pub bugreport_filename: ::core::option::Option<::prost::alloc::string::String>,
6333    #[prost(message, optional, tag="17")]
6334    pub trigger_config: ::core::option::Option<trace_config::TriggerConfig>,
6335    /// When this is non-empty the perfetto command line tool will ignore the rest
6336    /// of this TraceConfig and instead connect to the perfetto service as a
6337    /// producer and send these triggers, potentially stopping or starting traces
6338    /// that were previous configured to use a TriggerConfig.
6339    #[prost(string, repeated, tag="18")]
6340    pub activate_triggers: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
6341    #[prost(message, optional, tag="21")]
6342    pub incremental_state_config: ::core::option::Option<trace_config::IncrementalStateConfig>,
6343    /// No longer needed as we unconditionally allow tracing on user builds.
6344    #[deprecated]
6345    #[prost(bool, optional, tag="19")]
6346    pub allow_user_build_tracing: ::core::option::Option<bool>,
6347    /// If set the tracing service will ensure there is at most one tracing session
6348    /// with this key.
6349    #[prost(string, optional, tag="22")]
6350    pub unique_session_name: ::core::option::Option<::prost::alloc::string::String>,
6351    #[prost(enumeration="trace_config::CompressionType", optional, tag="24")]
6352    pub compression_type: ::core::option::Option<i32>,
6353    #[prost(message, optional, tag="25")]
6354    pub incident_report_config: ::core::option::Option<trace_config::IncidentReportConfig>,
6355    /// Android-only. Not for general use. If specified, sets the logging to statsd
6356    /// of guardrails and checkpoints in the tracing service. perfetto_cmd sets
6357    /// this to enabled (if not explicitly set in the config) when specifying
6358    /// --upload.
6359    #[prost(enumeration="trace_config::StatsdLogging", optional, tag="31")]
6360    pub statsd_logging: ::core::option::Option<i32>,
6361    /// An identifier clients can use to tie this trace to other logging.
6362    /// DEPRECATED as per v32. See TracePacket.trace_uuid for the authoritative
6363    /// Trace UUID. If this field is set, the tracing service will respect the
6364    /// requested UUID (i.e. TracePacket.trace_uuid == this field) but only if
6365    /// gap-less snapshotting is not used.
6366    #[deprecated]
6367    #[prost(int64, optional, tag="27")]
6368    pub trace_uuid_msb: ::core::option::Option<i64>,
6369    #[deprecated]
6370    #[prost(int64, optional, tag="28")]
6371    pub trace_uuid_lsb: ::core::option::Option<i64>,
6372    #[prost(message, optional, tag="33")]
6373    pub trace_filter: ::core::option::Option<trace_config::TraceFilter>,
6374    #[prost(message, optional, tag="34")]
6375    pub android_report_config: ::core::option::Option<trace_config::AndroidReportConfig>,
6376    #[prost(message, optional, tag="35")]
6377    pub cmd_trace_start_delay: ::core::option::Option<trace_config::CmdTraceStartDelay>,
6378    #[prost(message, repeated, tag="39")]
6379    pub session_semaphores: ::prost::alloc::vec::Vec<trace_config::SessionSemaphore>,
6380}
6381/// Nested message and enum types in `TraceConfig`.
6382pub mod trace_config {
6383    #[derive(Clone, PartialEq, ::prost::Message)]
6384    pub struct BufferConfig {
6385        #[prost(uint32, optional, tag="1")]
6386        pub size_kb: ::core::option::Option<u32>,
6387        #[prost(enumeration="buffer_config::FillPolicy", optional, tag="4")]
6388        pub fill_policy: ::core::option::Option<i32>,
6389        /// When true the buffer is moved (rather than copied) onto the cloned
6390        /// session, and an empty buffer of the same size is allocated in the source
6391        /// tracing session. This feature will likely get deprecated in the future.
6392        /// It been introduced mainly to support the surfaceflinger snapshot dump
6393        /// for bugreports, where SF can dumps O(400MB) into the bugreport trace. In
6394        /// that case we don't want to retain another in-memory copy of the buffer.
6395        #[prost(bool, optional, tag="5")]
6396        pub transfer_on_clone: ::core::option::Option<bool>,
6397        /// Used in conjunction with transfer_on_clone. When true the buffer is
6398        /// cleared before issuing the Flush(reason=kTraceClone). This is to ensure
6399        /// that if the data source took too long to write the data in a previous
6400        /// clone-related flush, we don't end up with a mixture of leftovers from
6401        /// the previous write and new data.
6402        #[prost(bool, optional, tag="6")]
6403        pub clear_before_clone: ::core::option::Option<bool>,
6404    }
6405    /// Nested message and enum types in `BufferConfig`.
6406    pub mod buffer_config {
6407        #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6408        #[repr(i32)]
6409        pub enum FillPolicy {
6410            Unspecified = 0,
6411            /// Default behavior. The buffer operates as a conventional ring buffer.
6412            /// If the writer is faster than the reader (or if the reader reads only
6413            /// after tracing is stopped) newly written packets will overwrite old
6414            /// packets.
6415            RingBuffer = 1,
6416            /// Behaves like RING_BUFFER as long as there is space in the buffer or
6417            /// the reader catches up with the writer. As soon as the writer hits
6418            /// an unread chunk, it stops accepting new data in the buffer.
6419            Discard = 2,
6420        }
6421        impl FillPolicy {
6422            /// String value of the enum field names used in the ProtoBuf definition.
6423            ///
6424            /// The values are not transformed in any way and thus are considered stable
6425            /// (if the ProtoBuf definition does not change) and safe for programmatic use.
6426            pub fn as_str_name(&self) -> &'static str {
6427                match self {
6428                    FillPolicy::Unspecified => "UNSPECIFIED",
6429                    FillPolicy::RingBuffer => "RING_BUFFER",
6430                    FillPolicy::Discard => "DISCARD",
6431                }
6432            }
6433        }
6434    }
6435    #[derive(Clone, PartialEq, ::prost::Message)]
6436    pub struct DataSource {
6437        /// Filters and data-source specific config. It contains also the unique name
6438        /// of the data source, the one passed in the  DataSourceDescriptor when they
6439        /// register on the service.
6440        #[prost(message, optional, tag="1")]
6441        pub config: ::core::option::Option<super::DataSourceConfig>,
6442        /// Optional. If multiple producers (~processes) expose the same data source
6443        /// and either |producer_name_filter| or |producer_name_regex_filter| is set,
6444        /// the data source is enabled only for producers whose names match any of
6445        /// the filters.
6446        /// |producer_name_filter| has to be an exact match, while
6447        /// |producer_name_regex_filter| is a regular expression.
6448        /// This allows to enable a data source only for specific processes.
6449        /// The "repeated" fields have OR semantics: specifying a filter ["foo",
6450        /// "bar"] will enable data sources on both "foo" and "bar" (if they exist).
6451        #[prost(string, repeated, tag="2")]
6452        pub producer_name_filter: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
6453        #[prost(string, repeated, tag="3")]
6454        pub producer_name_regex_filter: ::prost::alloc::vec::Vec<::prost::alloc::string::String>,
6455    }
6456    /// Config for disabling builtin data sources in the tracing service.
6457    #[derive(Clone, PartialEq, ::prost::Message)]
6458    pub struct BuiltinDataSource {
6459        /// Disable emitting clock timestamps into the trace.
6460        #[prost(bool, optional, tag="1")]
6461        pub disable_clock_snapshotting: ::core::option::Option<bool>,
6462        /// Disable echoing the original trace config in the trace.
6463        #[prost(bool, optional, tag="2")]
6464        pub disable_trace_config: ::core::option::Option<bool>,
6465        /// Disable emitting system info (build fingerprint, cpuinfo, etc).
6466        #[prost(bool, optional, tag="3")]
6467        pub disable_system_info: ::core::option::Option<bool>,
6468        /// Disable emitting events for data-source state changes (e.g. the marker
6469        /// for all data sources having ACKed the start of the trace).
6470        #[prost(bool, optional, tag="4")]
6471        pub disable_service_events: ::core::option::Option<bool>,
6472        /// The authoritative clock domain for the trace. Defaults to BOOTTIME. See
6473        /// also ClockSnapshot's primary_trace_clock. The configured value is written
6474        /// into the trace as part of the ClockSnapshots emitted by the service.
6475        /// Trace processor will attempt to translate packet/event timestamps from
6476        /// various data sources (and their chosen clock domains) to this domain
6477        /// during import. Added in Android R.
6478        #[prost(enumeration="super::BuiltinClock", optional, tag="5")]
6479        pub primary_trace_clock: ::core::option::Option<i32>,
6480        /// Time interval in between snapshotting of sync markers, clock snapshots,
6481        /// stats, and other periodic service-emitted events. Note that the service
6482        /// only keeps track of the first and the most recent snapshot until
6483        /// ReadBuffers() is called.
6484        #[prost(uint32, optional, tag="6")]
6485        pub snapshot_interval_ms: ::core::option::Option<u32>,
6486        /// Hints to the service that a suspend-aware (i.e. counting time in suspend)
6487        /// clock should be used for periodic snapshots of service-emitted events.
6488        /// This means, if a snapshot *should* have happened during suspend, it will
6489        /// happen immediately after the device resumes.
6490        ///
6491        /// Choosing a clock like this is done on best-effort basis; not all
6492        /// platforms (e.g. Windows) expose a clock which can be used for periodic
6493        /// tasks counting suspend. If such a clock is not available, the service
6494        /// falls back to the best-available alternative.
6495        ///
6496        /// Introduced in Android S.
6497        /// TODO(lalitm): deprecate this in T and make this the default if nothing
6498        /// crashes in S.
6499        #[prost(bool, optional, tag="7")]
6500        pub prefer_suspend_clock_for_snapshot: ::core::option::Option<bool>,
6501        /// Disables the reporting of per-trace-writer histograms in TraceStats.
6502        #[prost(bool, optional, tag="8")]
6503        pub disable_chunk_usage_histograms: ::core::option::Option<bool>,
6504    }
6505    #[derive(Clone, PartialEq, ::prost::Message)]
6506    pub struct ProducerConfig {
6507        /// Identifies the producer for which this config is for.
6508        #[prost(string, optional, tag="1")]
6509        pub producer_name: ::core::option::Option<::prost::alloc::string::String>,
6510        /// Specifies the preferred size of the shared memory buffer. If the size is
6511        /// larger than the max size, the max will be used. If it is smaller than
6512        /// the page size or doesn't fit pages evenly into it, it will fall back to
6513        /// the size specified by the producer or finally the default shared memory
6514        /// size.
6515        #[prost(uint32, optional, tag="2")]
6516        pub shm_size_kb: ::core::option::Option<u32>,
6517        /// Specifies the preferred size of each page in the shared memory buffer.
6518        /// Must be an integer multiple of 4K.
6519        #[prost(uint32, optional, tag="3")]
6520        pub page_size_kb: ::core::option::Option<u32>,
6521    }
6522    /// Contains statsd-specific metadata about an alert associated with the trace.
6523    #[derive(Clone, PartialEq, ::prost::Message)]
6524    pub struct StatsdMetadata {
6525        /// The identifier of the alert which triggered this trace.
6526        #[prost(int64, optional, tag="1")]
6527        pub triggering_alert_id: ::core::option::Option<i64>,
6528        /// The uid which registered the triggering configuration with statsd.
6529        #[prost(int32, optional, tag="2")]
6530        pub triggering_config_uid: ::core::option::Option<i32>,
6531        /// The identifier of the config which triggered the alert.
6532        #[prost(int64, optional, tag="3")]
6533        pub triggering_config_id: ::core::option::Option<i64>,
6534        /// The identifier of the subscription which triggered this trace.
6535        #[prost(int64, optional, tag="4")]
6536        pub triggering_subscription_id: ::core::option::Option<i64>,
6537    }
6538    /// Contains flags which override the default values of the guardrails inside
6539    /// Perfetto.
6540    #[derive(Clone, PartialEq, ::prost::Message)]
6541    pub struct GuardrailOverrides {
6542        /// Override the default limit (in bytes) for uploading data to server within
6543        /// a 24 hour period.
6544        /// On R-, this override only affected userdebug builds. Since S, it also
6545        /// affects user builds.
6546        /// In 24Q3+ (V+), this override is a noop because upload guardrail logic
6547        /// was removed from Perfetto.
6548        #[deprecated]
6549        #[prost(uint64, optional, tag="1")]
6550        pub max_upload_per_day_bytes: ::core::option::Option<u64>,
6551        /// Overrides the guardrail for maximum trace buffer size.
6552        /// Available on U+
6553        #[prost(uint32, optional, tag="2")]
6554        pub max_tracing_buffer_size_kb: ::core::option::Option<u32>,
6555    }
6556    /// Triggers allow producers to start or stop the tracing session when an event
6557    /// occurs.
6558    ///
6559    /// For example if we are tracing probabilistically, most traces will be
6560    /// uninteresting. Triggers allow us to keep only the interesting ones such as
6561    /// those traces during which the device temperature reached a certain
6562    /// threshold. In this case the producer can activate a trigger to keep
6563    /// (STOP_TRACING) the trace, otherwise it can also begin a trace
6564    /// (START_TRACING) because it knows something is about to happen.
6565    #[derive(Clone, PartialEq, ::prost::Message)]
6566    pub struct TriggerConfig {
6567        #[prost(enumeration="trigger_config::TriggerMode", optional, tag="1")]
6568        pub trigger_mode: ::core::option::Option<i32>,
6569        /// This flag is really a workaround for b/274931668. This is needed only
6570        /// when deploying configs to different versions of the tracing service.
6571        /// When this is set to true this has the same effect of setting trigger_mode
6572        /// to CLONE_SNAPSHOT on newer versions of the service. This boolean has been
6573        /// introduced to allow to have configs that use CLONE_SNAPSHOT on newer
6574        /// versions of Android and fall back to STOP_TRACING on older versions where
6575        /// CLONE_SNAPSHOT did not exist.
6576        /// When using this flag, trigger_mode must be set to STOP_TRACING.
6577        #[prost(bool, optional, tag="5")]
6578        pub use_clone_snapshot_if_available: ::core::option::Option<bool>,
6579        /// A list of triggers which are related to this configuration. If ANY
6580        /// trigger is seen then an action will be performed based on |trigger_mode|.
6581        #[prost(message, repeated, tag="2")]
6582        pub triggers: ::prost::alloc::vec::Vec<trigger_config::Trigger>,
6583        /// Required and must be positive if a TriggerConfig is specified. This is
6584        /// how long this TraceConfig should wait for a trigger to arrive. After this
6585        /// period of time if no trigger is seen the TracingSession will be cleaned
6586        /// up.
6587        #[prost(uint32, optional, tag="3")]
6588        pub trigger_timeout_ms: ::core::option::Option<u32>,
6589    }
6590    /// Nested message and enum types in `TriggerConfig`.
6591    pub mod trigger_config {
6592        #[derive(Clone, PartialEq, ::prost::Message)]
6593        pub struct Trigger {
6594            /// The producer must specify this name to activate the trigger.
6595            #[prost(string, optional, tag="1")]
6596            pub name: ::core::option::Option<::prost::alloc::string::String>,
6597            /// An std::regex that will match the producer that can activate this
6598            /// trigger. This is optional. If unset any producers can activate this
6599            /// trigger.
6600            #[prost(string, optional, tag="2")]
6601            pub producer_name_regex: ::core::option::Option<::prost::alloc::string::String>,
6602            /// After a trigger is received either in START_TRACING or STOP_TRACING
6603            /// mode then the trace will end |stop_delay_ms| after triggering.
6604            /// In CLONE_SNAPSHOT mode, this is the delay between the trigger and the
6605            /// snapshot.
6606            /// If |prefer_suspend_clock_for_duration| is set, the duration will be
6607            /// based on wall-clock, counting also time in suspend.
6608            #[prost(uint32, optional, tag="3")]
6609            pub stop_delay_ms: ::core::option::Option<u32>,
6610            /// Limits the number of traces this trigger can start/stop in a rolling
6611            /// 24 hour window. If this field is unset or zero, no limit is applied and
6612            /// activiation of this trigger *always* starts/stops the trace.
6613            #[prost(uint32, optional, tag="4")]
6614            pub max_per_24_h: ::core::option::Option<u32>,
6615            /// A value between 0 and 1 which encodes the probability of skipping a
6616            /// trigger with this name. This is useful for reducing the probability
6617            /// of high-frequency triggers from dominating trace finaization. If this
6618            /// field is unset or zero, the trigger will *never* be skipped. If this
6619            /// field is greater than or equal to 1, this trigger will *always* be
6620            /// skipped i.e. it will be as if this trigger was never included in the
6621            /// first place.
6622            /// This probability check is applied *before* any other limits. For
6623            /// example, if |max_per_24_h| is also set, first we will check if the
6624            /// probability bar is met and only then will we check the |max_per_24_h|
6625            /// limit.
6626            #[prost(double, optional, tag="5")]
6627            pub skip_probability: ::core::option::Option<f64>,
6628        }
6629        #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6630        #[repr(i32)]
6631        pub enum TriggerMode {
6632            Unspecified = 0,
6633            /// When this mode is chosen, data sources are not started until one of the
6634            /// |triggers| are received. This supports early initialization and fast
6635            /// starting of the tracing system. On triggering, the session will then
6636            /// record for |stop_delay_ms|. However if no trigger is seen
6637            /// after |trigger_timeout_ms| the session will be stopped and no data will
6638            /// be returned.
6639            StartTracing = 1,
6640            /// When this mode is chosen, the session will be started via the normal
6641            /// EnableTracing() & StartTracing(). If no trigger is ever seen
6642            /// the session will be stopped after |trigger_timeout_ms| and no data will
6643            /// be returned. However if triggered the trace will stop after
6644            /// |stop_delay_ms| and any data in the buffer will be returned to the
6645            /// consumer.
6646            StopTracing = 2,
6647            /// When this mode is chosen, this causes a snapshot of the current tracing
6648            /// session to be created after |stop_delay_ms| while the current tracing
6649            /// session continues undisturbed (% an extra flush). This mode can be
6650            /// used only when the tracing session is handled by the "perfetto" cmdline
6651            /// client (which is true in 90% of cases). Part of the business logic
6652            /// necessary for this behavior, and ensuing file handling, lives in
6653            /// perfetto_cmd.cc . On other consumers, this causes only a notification
6654            /// of the trigger through a CloneTriggerHit ObservableEvent. The custom
6655            /// consumer is supposed to call CloneSession() itself after the event.
6656            /// Use use_clone_snapshot_if_available=true when targeting older versions
6657            /// of perfetto.
6658            CloneSnapshot = 4,
6659        }
6660        impl TriggerMode {
6661            /// String value of the enum field names used in the ProtoBuf definition.
6662            ///
6663            /// The values are not transformed in any way and thus are considered stable
6664            /// (if the ProtoBuf definition does not change) and safe for programmatic use.
6665            pub fn as_str_name(&self) -> &'static str {
6666                match self {
6667                    TriggerMode::Unspecified => "UNSPECIFIED",
6668                    TriggerMode::StartTracing => "START_TRACING",
6669                    TriggerMode::StopTracing => "STOP_TRACING",
6670                    TriggerMode::CloneSnapshot => "CLONE_SNAPSHOT",
6671                }
6672            }
6673        }
6674    }
6675    /// Configuration for trace contents that reference earlier trace data. For
6676    /// example, a data source might intern strings, and emit packets containing
6677    /// {interned id : string} pairs. Future packets from that data source can then
6678    /// use the interned ids instead of duplicating the raw string contents. The
6679    /// trace parser will then need to use that interning table to fully interpret
6680    /// the rest of the trace.
6681    #[derive(Clone, PartialEq, ::prost::Message)]
6682    pub struct IncrementalStateConfig {
6683        /// If nonzero, notify eligible data sources to clear their incremental state
6684        /// periodically, with the given period. The notification is sent only to
6685        /// data sources that have |handles_incremental_state_clear| set in their
6686        /// DataSourceDescriptor. The notification requests that the data source
6687        /// stops referring to past trace contents. This is particularly useful when
6688        /// tracing in ring buffer mode, where it is not exceptional to overwrite old
6689        /// trace data.
6690        ///
6691        /// Warning: this time-based global clearing is likely to be removed in the
6692        /// future, to be replaced with a smarter way of sending the notifications
6693        /// only when necessary.
6694        #[prost(uint32, optional, tag="1")]
6695        pub clear_period_ms: ::core::option::Option<u32>,
6696    }
6697    /// Android-only. Not for general use. If set, saves the trace into an
6698    /// incident. This field is read by perfetto_cmd, rather than the tracing
6699    /// service. This field must be set when passing the --upload flag to
6700    /// perfetto_cmd.
6701    ///
6702    /// In this message, either:
6703    ///   * all of |destination_package|, |destination_class| and |privacy_level|
6704    ///     must be set.
6705    ///   * |skip_incidentd| must be explicitly set to true.
6706    #[derive(Clone, PartialEq, ::prost::Message)]
6707    pub struct IncidentReportConfig {
6708        #[prost(string, optional, tag="1")]
6709        pub destination_package: ::core::option::Option<::prost::alloc::string::String>,
6710        #[prost(string, optional, tag="2")]
6711        pub destination_class: ::core::option::Option<::prost::alloc::string::String>,
6712        /// Level of filtering in the requested incident. See |Destination| in
6713        /// frameworks/base/core/proto/android/privacy.proto.
6714        #[prost(int32, optional, tag="3")]
6715        pub privacy_level: ::core::option::Option<i32>,
6716        /// If true, then skips saving the trace to incidentd.
6717        ///
6718        /// This flag is useful in testing (e.g. Perfetto-statsd integration tests)
6719        /// or when we explicitly don't want traces to go to incidentd even when they
6720        /// usually would (e.g. configs deployed using statsd but only used for
6721        /// inclusion in bugreports using |bugreport_score|).
6722        ///
6723        /// The motivation for having this flag, instead of just not setting
6724        /// |incident_report_config|, is prevent accidents where
6725        /// |incident_report_config| is omitted by mistake.
6726        #[prost(bool, optional, tag="5")]
6727        pub skip_incidentd: ::core::option::Option<bool>,
6728        /// If true, do not write the trace into dropbox (i.e. incident only).
6729        /// Otherwise, write to both dropbox and incident.
6730        /// TODO(lalitm): remove this field as we no longer use Dropbox.
6731        #[deprecated]
6732        #[prost(bool, optional, tag="4")]
6733        pub skip_dropbox: ::core::option::Option<bool>,
6734    }
6735    /// When set applies a post-filter to the trace contents using the filter
6736    /// provided. The filter is applied at ReadBuffers() time and works both in the
6737    /// case of IPC readback and write_into_file. This filter can be generated
6738    /// using `tools/proto_filter -s schema.proto -F filter_out.bytes` or
6739    /// `-T filter_out.escaped_string` (for .pbtx). See go/trace-filtering for
6740    /// design.
6741    ///
6742    /// Introduced in Android S, but it was broken (b/195065199). Reintroduced in
6743    /// Android T with a different field number. Updated in Android U with a new
6744    /// bytecode version which supports string filtering.
6745    ///
6746    /// =========================
6747    /// Filter bytecode.
6748    /// =========================
6749    #[derive(Clone, PartialEq, ::prost::Message)]
6750    pub struct TraceFilter {
6751        /// The bytecode as implemented in Android T.
6752        #[prost(bytes="vec", optional, tag="1")]
6753        pub bytecode: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
6754        /// The bytecode as implemented in Android U. Adds support for string
6755        /// filtering.
6756        #[prost(bytes="vec", optional, tag="2")]
6757        pub bytecode_v2: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
6758        #[prost(message, optional, tag="3")]
6759        pub string_filter_chain: ::core::option::Option<trace_filter::StringFilterChain>,
6760    }
6761    /// Nested message and enum types in `TraceFilter`.
6762    pub mod trace_filter {
6763        /// A rule specifies how strings should be filtered.
6764        #[derive(Clone, PartialEq, ::prost::Message)]
6765        pub struct StringFilterRule {
6766            /// The policy (i.e. algorithm) dictating how strings matching this rule
6767            /// should be handled.
6768            #[prost(enumeration="StringFilterPolicy", optional, tag="1")]
6769            pub policy: ::core::option::Option<i32>,
6770            /// The regex pattern used to match against each string.
6771            #[prost(string, optional, tag="2")]
6772            pub regex_pattern: ::core::option::Option<::prost::alloc::string::String>,
6773            /// The string which should appear after the tgid in atrace tracepoint
6774            /// strings.
6775            #[prost(string, optional, tag="3")]
6776            pub atrace_payload_starts_with: ::core::option::Option<::prost::alloc::string::String>,
6777        }
6778        /// A chain is a list of rules which string will be sequentially checked
6779        /// against.
6780        #[derive(Clone, PartialEq, ::prost::Message)]
6781        pub struct StringFilterChain {
6782            #[prost(message, repeated, tag="1")]
6783            pub rules: ::prost::alloc::vec::Vec<StringFilterRule>,
6784        }
6785        // =========================
6786        // String filtering
6787        // =========================
6788
6789        // The principles and terminology of string filtering is heavily inspired by
6790        // iptables. A "rule" decide how strings should be filtered. Each rule
6791        // contains a "policy" which indicates the algorithm to use for filtering.
6792        // A "chain" is a list of rules which will be sequentially checked against
6793        // each string.
6794        //
6795        // The first rule which applies to the string terminates filtering for that
6796        // string. If no rules apply, the string is left unchanged.
6797
6798        /// A policy specifies which algorithm should be used for filtering the
6799        /// string.
6800        #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6801        #[repr(i32)]
6802        pub enum StringFilterPolicy {
6803            SfpUnspecified = 0,
6804            /// Tries to match the string field against |regex_pattern|. If it
6805            /// matches, all matching groups are "redacted" (i.e. replaced with a
6806            /// constant string) and filtering is terminated (i.e. no further rules are
6807            /// checked). If it doesn't match, the string is left unchanged and the
6808            /// next rule in chain is considered.
6809            SfpMatchRedactGroups = 1,
6810            /// Like |SFP_MATCH_REDACT_GROUPS| but tries to do some pre-work before
6811            /// checking the regex. Specifically, it tries to parse the string field as
6812            /// an atrace tracepoint and checks if the post-tgid field starts with
6813            /// |atrace_post_tgid_starts_with|. The regex matching is only performed if
6814            /// this check succeeds.
6815            SfpAtraceMatchRedactGroups = 2,
6816            /// Tries to match the string field against |regex_pattern|. If it
6817            /// matches, filtering is terminated (i.e. no further rules are checked).
6818            /// If it doesn't match, the string is left unchanged and the next rule in
6819            /// chain is considered.
6820            SfpMatchBreak = 3,
6821            /// Like |SFP_MATCH_BREAK| but tries to do some pre-work before checking
6822            /// the regex. Specifically, it tries to parse the string field as an
6823            /// atrace tracepoint and checks if the post-tgid field starts with
6824            /// |atrace_post_tgid_starts_with|. The regex matching is only performed if
6825            /// this check succeeds.
6826            SfpAtraceMatchBreak = 4,
6827            /// Tries to repeatedly search (i.e. find substrings of) the string field
6828            /// with |regex_pattern|. For each match, redacts any matching groups (i.e.
6829            /// replaced with a constant string). Once there are no further matches,
6830            /// filtering is terminated (i.e. no further rules are checked).
6831            ///
6832            /// Note that this is policy is a "search" policy not a "match" policy
6833            /// unlike the above policies:
6834            ///   * Match policies require matching the full string i.e. there is an
6835            ///     implicit leading `^` and trailing `$`.
6836            ///   * Search policies perform repeated partial matching of the string
6837            ///     e.g.
6838            ///       - String: `foo=aaa,bar=123,foo=bbb,baz=456`
6839            ///       - Pattern: `foo=(\d+)`
6840            ///       - Output: `foo=P6O,bar=123,foo=P6O,baz=456`
6841            ///     where P6O is the redaction string
6842            ///
6843            /// All of this is only performed after some pre-work where we try to parse
6844            /// the string field as an atrace tracepoint and check if the post-tgid
6845            /// field starts with |atrace_post_tgid_starts_with|.
6846            ///
6847            /// If there are no partial matches, the string is left unchanged and the
6848            /// next rule in chain is considered.
6849            SfpAtraceRepeatedSearchRedactGroups = 5,
6850        }
6851        impl StringFilterPolicy {
6852            /// String value of the enum field names used in the ProtoBuf definition.
6853            ///
6854            /// The values are not transformed in any way and thus are considered stable
6855            /// (if the ProtoBuf definition does not change) and safe for programmatic use.
6856            pub fn as_str_name(&self) -> &'static str {
6857                match self {
6858                    StringFilterPolicy::SfpUnspecified => "SFP_UNSPECIFIED",
6859                    StringFilterPolicy::SfpMatchRedactGroups => "SFP_MATCH_REDACT_GROUPS",
6860                    StringFilterPolicy::SfpAtraceMatchRedactGroups => "SFP_ATRACE_MATCH_REDACT_GROUPS",
6861                    StringFilterPolicy::SfpMatchBreak => "SFP_MATCH_BREAK",
6862                    StringFilterPolicy::SfpAtraceMatchBreak => "SFP_ATRACE_MATCH_BREAK",
6863                    StringFilterPolicy::SfpAtraceRepeatedSearchRedactGroups => "SFP_ATRACE_REPEATED_SEARCH_REDACT_GROUPS",
6864                }
6865            }
6866        }
6867    }
6868    /// Android-only. Not for general use. If set, reports the trace to the
6869    /// Android framework. This field is read by perfetto_cmd, rather than the
6870    /// tracing service. This field must be set when passing the --upload flag to
6871    /// perfetto_cmd.
6872    ///
6873    /// In this message, either:
6874    ///   * |reporter_service_package| and |reporter_service_class| must be set.
6875    ///   * |skip_reporting| must be explicitly set to true.
6876    #[derive(Clone, PartialEq, ::prost::Message)]
6877    pub struct AndroidReportConfig {
6878        #[prost(string, optional, tag="1")]
6879        pub reporter_service_package: ::core::option::Option<::prost::alloc::string::String>,
6880        #[prost(string, optional, tag="2")]
6881        pub reporter_service_class: ::core::option::Option<::prost::alloc::string::String>,
6882        /// If true, then skips reporting the trace to Android framework.
6883        ///
6884        /// This flag is useful in testing (e.g. Perfetto-statsd integration tests)
6885        /// or when we explicitly don't want to report traces to the framework even
6886        /// when they usually would (e.g. configs deployed using statsd but only
6887        /// used for inclusion in bugreports using |bugreport_score|).
6888        ///
6889        /// The motivation for having this flag, instead of just not setting
6890        /// |framework_report_config|, is prevent accidents where
6891        /// |framework_report_config| is omitted by mistake.
6892        #[prost(bool, optional, tag="3")]
6893        pub skip_report: ::core::option::Option<bool>,
6894        /// If true, will direct the Android framework to read the data in trace
6895        /// file and pass it to the reporter class over a pipe instead of passing
6896        /// the file descriptor directly.
6897        ///
6898        /// This flag is needed because the Android test framework does not
6899        /// currently support priv-app helper apps (in terms of SELinux) and we
6900        /// really don't want to add an allow rule for untrusted_app to receive
6901        /// trace fds.
6902        ///
6903        /// Because of this, we instead will direct the framework to create a new
6904        /// pipe and pass this to the reporter process instead. As the pipe is
6905        /// created by the framework, we won't have any problems with SELinux
6906        /// (system_server is already allowed to pass pipe fds, even
6907        /// to untrusted apps).
6908        ///
6909        /// As the name suggests this option *MUST* only be used for testing.
6910        /// Note that the framework will reject (and drop) files which are too
6911        /// large both for simplicity and to be minimize the amount of data we
6912        /// pass to a non-priv app (note that the framework will still check
6913        /// manifest permissions even though SELinux permissions are worked around).
6914        #[prost(bool, optional, tag="4")]
6915        pub use_pipe_in_framework_for_testing: ::core::option::Option<bool>,
6916    }
6917    /// If set, delays the start of tracing by a random duration. The duration is
6918    /// chosen from a uniform distribution between the specified minimum and
6919    /// maximum.
6920    /// Note: this delay is implemented by perfetto_cmd *not* by traced so will
6921    /// not work if you communicate with traced directly over the consumer API.
6922    /// Introduced in Android T.
6923    #[derive(Clone, PartialEq, ::prost::Message)]
6924    pub struct CmdTraceStartDelay {
6925        #[prost(uint32, optional, tag="1")]
6926        pub min_delay_ms: ::core::option::Option<u32>,
6927        #[prost(uint32, optional, tag="2")]
6928        pub max_delay_ms: ::core::option::Option<u32>,
6929    }
6930    /// When non-empty, ensures that for a each semaphore named `name at most
6931    /// `max_other_session_count`` *other* sessions (whose value is taken of the
6932    /// minimum of all values specified by this config or any already-running
6933    /// session) can be be running.
6934    ///
6935    /// If a semaphore "acquisition" fails, EnableTracing will return an error
6936    /// and the tracing session will not be started (or elgible to start in
6937    /// the case of deferred sessions).
6938    ///
6939    /// This is easiest to explain with an example. Suppose the tracing service has
6940    /// the following active tracing sessions:
6941    ///    S1 = [{name=foo, max_other_session_count=2},
6942    ///          {name=bar, max_other_session_count=0}]
6943    ///    S2 = [{name=foo, max_other_session_count=1},
6944    ///          {name=baz, max_other_session_count=1}]
6945    ///
6946    /// Then, for a new session, the following would be the expected behaviour of
6947    /// EnableSession given the state of `session_semaphores`.
6948    ///    Q: session_semaphores = []
6949    ///    A: Allowed because it does not specify any semaphores. Will be allowed
6950    ///       no matter the state of any other tracing session.
6951    ///    Q: session_semaphores = [{name=baz, max_other_session_count=1}]
6952    ///    A: Allowed because both S2 and this config specify
6953    ///       max_other_session_count=1 for baz.
6954    ///    Q: session_semaphores = [{name=foo, max_other_session_count=3}]
6955    ///    A: Denied because S2 specified max_other_session_count=1 for foo and S1
6956    ///       takes that slot.
6957    ///    Q: session_semaphores = [{name=bar, max_other_session_count=0}]
6958    ///    A: Denied because S1 takes the the slot specified by both S1 and
6959    ///       this config.
6960    ///
6961    /// Introduced in 24Q3 (Android V).
6962    #[derive(Clone, PartialEq, ::prost::Message)]
6963    pub struct SessionSemaphore {
6964        /// The name of the semaphore. Acts as a unique identifier across all
6965        /// tracing sessions (including the one being started).
6966        #[prost(string, optional, tag="1")]
6967        pub name: ::core::option::Option<::prost::alloc::string::String>,
6968        /// The maximum number of *other* sesssions which specify the same semaphore
6969        /// which can be active. The minimum of this value across all tracing
6970        /// sessions and the value specified by the config is used when deciding
6971        /// whether the tracing session can be started.
6972        #[prost(uint64, optional, tag="2")]
6973        pub max_other_session_count: ::core::option::Option<u64>,
6974    }
6975    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6976    #[repr(i32)]
6977    pub enum LockdownModeOperation {
6978        LockdownUnchanged = 0,
6979        LockdownClear = 1,
6980        LockdownSet = 2,
6981    }
6982    impl LockdownModeOperation {
6983        /// String value of the enum field names used in the ProtoBuf definition.
6984        ///
6985        /// The values are not transformed in any way and thus are considered stable
6986        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
6987        pub fn as_str_name(&self) -> &'static str {
6988            match self {
6989                LockdownModeOperation::LockdownUnchanged => "LOCKDOWN_UNCHANGED",
6990                LockdownModeOperation::LockdownClear => "LOCKDOWN_CLEAR",
6991                LockdownModeOperation::LockdownSet => "LOCKDOWN_SET",
6992            }
6993        }
6994    }
6995    /// Compress trace with the given method. Best effort.
6996    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
6997    #[repr(i32)]
6998    pub enum CompressionType {
6999        Unspecified = 0,
7000        Deflate = 1,
7001    }
7002    impl CompressionType {
7003        /// String value of the enum field names used in the ProtoBuf definition.
7004        ///
7005        /// The values are not transformed in any way and thus are considered stable
7006        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
7007        pub fn as_str_name(&self) -> &'static str {
7008            match self {
7009                CompressionType::Unspecified => "COMPRESSION_TYPE_UNSPECIFIED",
7010                CompressionType::Deflate => "COMPRESSION_TYPE_DEFLATE",
7011            }
7012        }
7013    }
7014    #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord, ::prost::Enumeration)]
7015    #[repr(i32)]
7016    pub enum StatsdLogging {
7017        Unspecified = 0,
7018        Enabled = 1,
7019        Disabled = 2,
7020    }
7021    impl StatsdLogging {
7022        /// String value of the enum field names used in the ProtoBuf definition.
7023        ///
7024        /// The values are not transformed in any way and thus are considered stable
7025        /// (if the ProtoBuf definition does not change) and safe for programmatic use.
7026        pub fn as_str_name(&self) -> &'static str {
7027            match self {
7028                StatsdLogging::Unspecified => "STATSD_LOGGING_UNSPECIFIED",
7029                StatsdLogging::Enabled => "STATSD_LOGGING_ENABLED",
7030                StatsdLogging::Disabled => "STATSD_LOGGING_DISABLED",
7031            }
7032        }
7033    }
7034}
7035/// Arguments for rpc EnableTracing().
7036#[derive(Clone, PartialEq, ::prost::Message)]
7037pub struct EnableTracingRequest {
7038    #[prost(message, optional, tag="1")]
7039    pub trace_config: ::core::option::Option<TraceConfig>,
7040    /// Introduced in Android Q. This is used for re-attaching to the end-of-trace
7041    /// EnableTracingResponse notification after a Detach+Attach request.
7042    /// When this flag is set the |trace_config| is ignored and no method is called
7043    /// on the tracing service.
7044    #[prost(bool, optional, tag="2")]
7045    pub attach_notification_only: ::core::option::Option<bool>,
7046}
7047#[derive(Clone, PartialEq, ::prost::Message)]
7048pub struct EnableTracingResponse {
7049    /// If present and non-empty tracing was disabled because of an error.
7050    /// Introduced in Android S.
7051    #[prost(string, optional, tag="3")]
7052    pub error: ::core::option::Option<::prost::alloc::string::String>,
7053    #[prost(oneof="enable_tracing_response::State", tags="1")]
7054    pub state: ::core::option::Option<enable_tracing_response::State>,
7055}
7056/// Nested message and enum types in `EnableTracingResponse`.
7057pub mod enable_tracing_response {
7058    #[derive(Clone, PartialEq, ::prost::Oneof)]
7059    pub enum State {
7060        #[prost(bool, tag="1")]
7061        Disabled(bool),
7062    }
7063}
7064/// Arguments for rpc StartTracing().
7065#[derive(Clone, PartialEq, ::prost::Message)]
7066pub struct StartTracingRequest {
7067}
7068#[derive(Clone, PartialEq, ::prost::Message)]
7069pub struct StartTracingResponse {
7070}
7071/// Arguments for rpc ChangeTraceConfig().
7072#[derive(Clone, PartialEq, ::prost::Message)]
7073pub struct ChangeTraceConfigRequest {
7074    #[prost(message, optional, tag="1")]
7075    pub trace_config: ::core::option::Option<TraceConfig>,
7076}
7077#[derive(Clone, PartialEq, ::prost::Message)]
7078pub struct ChangeTraceConfigResponse {
7079}
7080/// Arguments for rpc DisableTracing().
7081///
7082/// TODO: not supported yet, selectively disable only some data sources.
7083/// repeated string data_source_name;
7084#[derive(Clone, PartialEq, ::prost::Message)]
7085pub struct DisableTracingRequest {
7086}
7087#[derive(Clone, PartialEq, ::prost::Message)]
7088pub struct DisableTracingResponse {
7089}
7090/// Arguments for rpc ReadBuffers().
7091///
7092/// The |id|s of the buffer, as passed to CreateBuffers().
7093/// TODO: repeated uint32 buffer_ids = 1;
7094#[derive(Clone, PartialEq, ::prost::Message)]
7095pub struct ReadBuffersRequest {
7096}
7097/// TODO: uint32 buffer_id = 1;
7098#[derive(Clone, PartialEq, ::prost::Message)]
7099pub struct ReadBuffersResponse {
7100    #[prost(message, repeated, tag="2")]
7101    pub slices: ::prost::alloc::vec::Vec<read_buffers_response::Slice>,
7102}
7103/// Nested message and enum types in `ReadBuffersResponse`.
7104pub mod read_buffers_response {
7105    /// Each streaming reply returns one or more slices for one or more trace
7106    /// packets, or even just a portion of it (if it's too big to fit within one
7107    /// IPC). The returned slices are ordered and contiguous: packets' slices are
7108    /// not interleaved and slices are sent only once all slices for a packet are
7109    /// available (i.e. the consumer will never see any gap).
7110    #[derive(Clone, PartialEq, ::prost::Message)]
7111    pub struct Slice {
7112        #[prost(bytes="vec", optional, tag="1")]
7113        pub data: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
7114        /// When true, this is the last slice for the packet. A ReadBufferResponse
7115        /// might have no slices marked as |last_slice_for_packet|==true, in the case
7116        /// of a very large packet that gets chunked into several IPCs (in which case
7117        /// only the last IPC for the packet will have this flag set).
7118        #[prost(bool, optional, tag="2")]
7119        pub last_slice_for_packet: ::core::option::Option<bool>,
7120    }
7121}
7122/// Arguments for rpc FreeBuffers().
7123#[derive(Clone, PartialEq, ::prost::Message)]
7124pub struct FreeBuffersRequest {
7125    /// The |id|s of the buffer, as passed to CreateBuffers().
7126    #[prost(uint32, repeated, packed="false", tag="1")]
7127    pub buffer_ids: ::prost::alloc::vec::Vec<u32>,
7128}
7129#[derive(Clone, PartialEq, ::prost::Message)]
7130pub struct FreeBuffersResponse {
7131}
7132/// Arguments for rpc Flush().
7133#[derive(Clone, PartialEq, ::prost::Message)]
7134pub struct FlushRequest {
7135    #[prost(uint32, optional, tag="1")]
7136    pub timeout_ms: ::core::option::Option<u32>,
7137    /// More details such as flush reason and originator. Introduced in v38 / V.
7138    /// See FlushFlags in include/perfetto/ext/tracing/core/flush_flags.h.
7139    #[prost(uint64, optional, tag="2")]
7140    pub flags: ::core::option::Option<u64>,
7141}
7142#[derive(Clone, PartialEq, ::prost::Message)]
7143pub struct FlushResponse {
7144}
7145/// Arguments for rpc Detach
7146#[derive(Clone, PartialEq, ::prost::Message)]
7147pub struct DetachRequest {
7148    #[prost(string, optional, tag="1")]
7149    pub key: ::core::option::Option<::prost::alloc::string::String>,
7150}
7151#[derive(Clone, PartialEq, ::prost::Message)]
7152pub struct DetachResponse {
7153}
7154/// Arguments for rpc Attach.
7155#[derive(Clone, PartialEq, ::prost::Message)]
7156pub struct AttachRequest {
7157    #[prost(string, optional, tag="1")]
7158    pub key: ::core::option::Option<::prost::alloc::string::String>,
7159}
7160#[derive(Clone, PartialEq, ::prost::Message)]
7161pub struct AttachResponse {
7162    #[prost(message, optional, tag="1")]
7163    pub trace_config: ::core::option::Option<TraceConfig>,
7164}
7165// Arguments for rpc GetTraceStats.
7166
7167#[derive(Clone, PartialEq, ::prost::Message)]
7168pub struct GetTraceStatsRequest {
7169}
7170#[derive(Clone, PartialEq, ::prost::Message)]
7171pub struct GetTraceStatsResponse {
7172    #[prost(message, optional, tag="1")]
7173    pub trace_stats: ::core::option::Option<TraceStats>,
7174}
7175// Arguments for rpc ObserveEvents.
7176
7177/// To stop observing events of a certain type, send a request with the remaining
7178/// types. To stop observing completely, send an empty request.
7179#[derive(Clone, PartialEq, ::prost::Message)]
7180pub struct ObserveEventsRequest {
7181    #[prost(enumeration="observable_events::Type", repeated, packed="false", tag="1")]
7182    pub events_to_observe: ::prost::alloc::vec::Vec<i32>,
7183}
7184#[derive(Clone, PartialEq, ::prost::Message)]
7185pub struct ObserveEventsResponse {
7186    #[prost(message, optional, tag="1")]
7187    pub events: ::core::option::Option<ObservableEvents>,
7188}
7189/// Arguments for rpc QueryServiceState.
7190#[derive(Clone, PartialEq, ::prost::Message)]
7191pub struct QueryServiceStateRequest {
7192    /// If set, only the TracingServiceState.tracing_sessions is filled. Producers
7193    /// and data sources are omitted.
7194    #[prost(bool, optional, tag="1")]
7195    pub sessions_only: ::core::option::Option<bool>,
7196}
7197#[derive(Clone, PartialEq, ::prost::Message)]
7198pub struct QueryServiceStateResponse {
7199    /// In order to avoid hitting IPC message size limitations, the service will
7200    /// return >1 replies for each query, chunking the TracingServiceState. The
7201    /// receiver is expected to merge replies together and parse that when the
7202    /// last reply is received (i.e. when IPC's |has_more| == false).
7203    #[prost(message, optional, tag="1")]
7204    pub service_state: ::core::option::Option<TracingServiceState>,
7205}
7206/// Arguments for rpc QueryCapabilities.
7207#[derive(Clone, PartialEq, ::prost::Message)]
7208pub struct QueryCapabilitiesRequest {
7209}
7210#[derive(Clone, PartialEq, ::prost::Message)]
7211pub struct QueryCapabilitiesResponse {
7212    #[prost(message, optional, tag="1")]
7213    pub capabilities: ::core::option::Option<TracingServiceCapabilities>,
7214}
7215/// Arguments for rpc SaveTraceForBugreport.
7216#[derive(Clone, PartialEq, ::prost::Message)]
7217pub struct SaveTraceForBugreportRequest {
7218}
7219/// This response is sent only after the trace was saved into file (if succeeded)
7220/// or something failed.
7221#[derive(Clone, PartialEq, ::prost::Message)]
7222pub struct SaveTraceForBugreportResponse {
7223    /// If true, an eligible the trace was saved into a known location (on Android
7224    /// /data/misc/perfetto-traces, see GetBugreportTracePath()).
7225    /// If false no trace with bugreport_score > 0 was found or an error occurred.
7226    /// see |msg| in that case for details about the failure.
7227    #[prost(bool, optional, tag="1")]
7228    pub success: ::core::option::Option<bool>,
7229    #[prost(string, optional, tag="2")]
7230    pub msg: ::core::option::Option<::prost::alloc::string::String>,
7231}
7232/// Arguments for rpc CloneSession.
7233#[derive(Clone, PartialEq, ::prost::Message)]
7234pub struct CloneSessionRequest {
7235    /// If set, the trace filter will not have effect on the cloned session.
7236    /// Used for bugreports.
7237    #[prost(bool, optional, tag="2")]
7238    pub skip_trace_filter: ::core::option::Option<bool>,
7239    /// If set, affects the generation of the FlushFlags::CloneTarget to be set
7240    /// to kBugreport when requesting the flush to the producers.
7241    #[prost(bool, optional, tag="3")]
7242    pub for_bugreport: ::core::option::Option<bool>,
7243    /// If set, this is stored in the trace as name of the trigger that caused the
7244    /// clone.
7245    #[prost(string, optional, tag="5")]
7246    pub clone_trigger_name: ::core::option::Option<::prost::alloc::string::String>,
7247    /// If set, this is stored in the trace as name of the producer that triggered
7248    /// the clone.
7249    #[prost(string, optional, tag="6")]
7250    pub clone_trigger_producer_name: ::core::option::Option<::prost::alloc::string::String>,
7251    /// If set, this is stored in the trace as uid of the producer that triggered
7252    /// the clone.
7253    #[prost(int32, optional, tag="7")]
7254    pub clone_trigger_trusted_producer_uid: ::core::option::Option<i32>,
7255    /// If set, this is stored in the trace as timestamp of the trigger that caused
7256    /// the clone.
7257    #[prost(uint64, optional, tag="8")]
7258    pub clone_trigger_boot_time_ns: ::core::option::Option<u64>,
7259    #[prost(oneof="clone_session_request::Selector", tags="1, 4")]
7260    pub selector: ::core::option::Option<clone_session_request::Selector>,
7261}
7262/// Nested message and enum types in `CloneSessionRequest`.
7263pub mod clone_session_request {
7264    #[derive(Clone, PartialEq, ::prost::Oneof)]
7265    pub enum Selector {
7266        /// The session ID to clone. If session_id == kBugreportSessionId (0xff...ff)
7267        /// the session with the highest bugreport score is cloned (if any exists).
7268        #[prost(uint64, tag="1")]
7269        SessionId(u64),
7270        /// The unique_session_name of the tracing session to clone. Tracing sessions
7271        /// that are clones of other tracing sessions are ignored.
7272        #[prost(string, tag="4")]
7273        UniqueSessionName(::prost::alloc::string::String),
7274    }
7275}
7276#[derive(Clone, PartialEq, ::prost::Message)]
7277pub struct CloneSessionResponse {
7278    /// If true, the clone was successful. If false it failed and |error| contains
7279    /// the details about the failure.
7280    #[prost(bool, optional, tag="1")]
7281    pub success: ::core::option::Option<bool>,
7282    #[prost(string, optional, tag="2")]
7283    pub error: ::core::option::Option<::prost::alloc::string::String>,
7284    /// The UUID of the cloned session.
7285    #[prost(int64, optional, tag="3")]
7286    pub uuid_msb: ::core::option::Option<i64>,
7287    #[prost(int64, optional, tag="4")]
7288    pub uuid_lsb: ::core::option::Option<i64>,
7289}
7290#[derive(Clone, PartialEq, ::prost::Message)]
7291pub struct IpcFrame {
7292    /// The client is expected to send requests with monotonically increasing
7293    /// request_id. The host will match the request_id sent from the client.
7294    /// In the case of a Streaming response (has_more = true) the host will send
7295    /// several InvokeMethodReply with the same request_id.
7296    #[prost(uint64, optional, tag="2")]
7297    pub request_id: ::core::option::Option<u64>,
7298    /// Used only in unittests to generate a parsable message of arbitrary size.
7299    #[prost(bytes="vec", repeated, tag="1")]
7300    pub data_for_testing: ::prost::alloc::vec::Vec<::prost::alloc::vec::Vec<u8>>,
7301    #[prost(oneof="ipc_frame::Msg", tags="3, 4, 5, 6, 7, 8")]
7302    pub msg: ::core::option::Option<ipc_frame::Msg>,
7303}
7304/// Nested message and enum types in `IPCFrame`.
7305pub mod ipc_frame {
7306    /// Client -> Host.
7307    #[derive(Clone, PartialEq, ::prost::Message)]
7308    pub struct BindService {
7309        #[prost(string, optional, tag="1")]
7310        pub service_name: ::core::option::Option<::prost::alloc::string::String>,
7311    }
7312    /// Host -> Client.
7313    #[derive(Clone, PartialEq, ::prost::Message)]
7314    pub struct BindServiceReply {
7315        #[prost(bool, optional, tag="1")]
7316        pub success: ::core::option::Option<bool>,
7317        #[prost(uint32, optional, tag="2")]
7318        pub service_id: ::core::option::Option<u32>,
7319        #[prost(message, repeated, tag="3")]
7320        pub methods: ::prost::alloc::vec::Vec<bind_service_reply::MethodInfo>,
7321    }
7322    /// Nested message and enum types in `BindServiceReply`.
7323    pub mod bind_service_reply {
7324        #[derive(Clone, PartialEq, ::prost::Message)]
7325        pub struct MethodInfo {
7326            #[prost(uint32, optional, tag="1")]
7327            pub id: ::core::option::Option<u32>,
7328            #[prost(string, optional, tag="2")]
7329            pub name: ::core::option::Option<::prost::alloc::string::String>,
7330        }
7331    }
7332    /// Client -> Host.
7333    #[derive(Clone, PartialEq, ::prost::Message)]
7334    pub struct InvokeMethod {
7335        /// BindServiceReply.id.
7336        #[prost(uint32, optional, tag="1")]
7337        pub service_id: ::core::option::Option<u32>,
7338        /// BindServiceReply.method.id.
7339        #[prost(uint32, optional, tag="2")]
7340        pub method_id: ::core::option::Option<u32>,
7341        /// Proto-encoded request argument.
7342        #[prost(bytes="vec", optional, tag="3")]
7343        pub args_proto: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
7344        /// When true the client specifies that a reply is not needed. The use case
7345        /// is a method with an empty, where the client doesn't care about the
7346        /// success/failure of the method invocation and rather prefers avoiding the
7347        /// IPC roundtrip + context switch associated with the reply.
7348        #[prost(bool, optional, tag="4")]
7349        pub drop_reply: ::core::option::Option<bool>,
7350    }
7351    /// Host -> Client.
7352    #[derive(Clone, PartialEq, ::prost::Message)]
7353    pub struct InvokeMethodReply {
7354        #[prost(bool, optional, tag="1")]
7355        pub success: ::core::option::Option<bool>,
7356        /// only for streaming RPCs.
7357        #[prost(bool, optional, tag="2")]
7358        pub has_more: ::core::option::Option<bool>,
7359        /// proto-encoded response value.
7360        #[prost(bytes="vec", optional, tag="3")]
7361        pub reply_proto: ::core::option::Option<::prost::alloc::vec::Vec<u8>>,
7362    }
7363    /// Host -> Client.
7364    #[derive(Clone, PartialEq, ::prost::Message)]
7365    pub struct RequestError {
7366        #[prost(string, optional, tag="1")]
7367        pub error: ::core::option::Option<::prost::alloc::string::String>,
7368    }
7369    /// Client (relay service) -> Host. This is generated by the relay service to
7370    /// fill the producer identity in the guest. This message is sent to the host
7371    /// service *before* any IPCFrame is from a local producer is relayed. This is
7372    /// accepted only on AF_VSOCK and AF_INET sockets, where we cannot validate the
7373    /// endpoont of the connection. for AF_UNIX sockets, this is ignored and traced
7374    /// uses instead the SO_PEERCRED.
7375    #[derive(Clone, PartialEq, ::prost::Message)]
7376    pub struct SetPeerIdentity {
7377        /// The UID and PID of the producer process.
7378        #[prost(int32, optional, tag="1")]
7379        pub pid: ::core::option::Option<i32>,
7380        #[prost(int32, optional, tag="2")]
7381        pub uid: ::core::option::Option<i32>,
7382        /// The hint for the tracing service to infer the machine ID. This field
7383        /// should satisfy the requriement that different machines should have
7384        /// different values. In practice, this filed contains the Linux kernel
7385        /// boot_id, or a hash of kernel bootup timestamp and uname(2) if boot_id
7386        /// isn't available.
7387        #[prost(string, optional, tag="3")]
7388        pub machine_id_hint: ::core::option::Option<::prost::alloc::string::String>,
7389    }
7390    #[derive(Clone, PartialEq, ::prost::Oneof)]
7391    pub enum Msg {
7392        #[prost(message, tag="3")]
7393        MsgBindService(BindService),
7394        #[prost(message, tag="4")]
7395        MsgBindServiceReply(BindServiceReply),
7396        #[prost(message, tag="5")]
7397        MsgInvokeMethod(InvokeMethod),
7398        #[prost(message, tag="6")]
7399        MsgInvokeMethodReply(InvokeMethodReply),
7400        #[prost(message, tag="7")]
7401        MsgRequestError(RequestError),
7402        #[prost(message, tag="8")]
7403        SetPeerIdentity(SetPeerIdentity),
7404    }
7405}