micromegas 0.1.2__py3-none-any.whl → 0.1.6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) hide show
  1. micromegas/__init__.py +8 -0
  2. micromegas/client.py +125 -10
  3. micromegas/perfetto.py +205 -0
  4. micromegas/request.py +16 -0
  5. micromegas/thirdparty/perfetto/protos/perfetto/common/android_energy_consumer_descriptor_pb2.py +38 -0
  6. micromegas/thirdparty/perfetto/protos/perfetto/common/android_log_constants_pb2.py +38 -0
  7. micromegas/thirdparty/perfetto/protos/perfetto/common/builtin_clock_pb2.py +36 -0
  8. micromegas/thirdparty/perfetto/protos/perfetto/common/descriptor_pb2.py +62 -0
  9. micromegas/thirdparty/perfetto/protos/perfetto/common/gpu_counter_descriptor_pb2.py +44 -0
  10. micromegas/thirdparty/perfetto/protos/perfetto/common/perf_events_pb2.py +46 -0
  11. micromegas/thirdparty/perfetto/protos/perfetto/common/protolog_common_pb2.py +36 -0
  12. micromegas/thirdparty/perfetto/protos/perfetto/common/sys_stats_counters_pb2.py +38 -0
  13. micromegas/thirdparty/perfetto/protos/perfetto/common/trace_stats_pb2.py +48 -0
  14. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_game_intervention_list_config_pb2.py +36 -0
  15. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_input_event_config_pb2.py +42 -0
  16. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_log_config_pb2.py +37 -0
  17. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_polled_state_config_pb2.py +36 -0
  18. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_sdk_sysprop_guard_config_pb2.py +36 -0
  19. micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_system_property_config_pb2.py +36 -0
  20. micromegas/thirdparty/perfetto/protos/perfetto/config/android/network_trace_config_pb2.py +36 -0
  21. micromegas/thirdparty/perfetto/protos/perfetto/config/android/packages_list_config_pb2.py +36 -0
  22. micromegas/thirdparty/perfetto/protos/perfetto/config/android/pixel_modem_config_pb2.py +38 -0
  23. micromegas/thirdparty/perfetto/protos/perfetto/config/android/protolog_config_pb2.py +41 -0
  24. micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_layers_config_pb2.py +40 -0
  25. micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_transactions_config_pb2.py +38 -0
  26. micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/chrome_config_pb2.py +38 -0
  27. micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/v8_config_pb2.py +36 -0
  28. micromegas/thirdparty/perfetto/protos/perfetto/config/data_source_config_pb2.py +120 -0
  29. micromegas/thirdparty/perfetto/protos/perfetto/config/etw/etw_config_pb2.py +38 -0
  30. micromegas/thirdparty/perfetto/protos/perfetto/config/ftrace/ftrace_config_pb2.py +48 -0
  31. micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/gpu_counter_config_pb2.py +36 -0
  32. micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/vulkan_memory_config_pb2.py +36 -0
  33. micromegas/thirdparty/perfetto/protos/perfetto/config/inode_file/inode_file_config_pb2.py +38 -0
  34. micromegas/thirdparty/perfetto/protos/perfetto/config/interceptor_config_pb2.py +37 -0
  35. micromegas/thirdparty/perfetto/protos/perfetto/config/interceptors/console_config_pb2.py +38 -0
  36. micromegas/thirdparty/perfetto/protos/perfetto/config/power/android_power_config_pb2.py +38 -0
  37. micromegas/thirdparty/perfetto/protos/perfetto/config/process_stats/process_stats_config_pb2.py +40 -0
  38. micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/heapprofd_config_pb2.py +38 -0
  39. micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/java_hprof_config_pb2.py +38 -0
  40. micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/perf_event_config_pb2.py +43 -0
  41. micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/atom_ids_pb2.py +36 -0
  42. micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/statsd_tracing_config_pb2.py +39 -0
  43. micromegas/thirdparty/perfetto/protos/perfetto/config/sys_stats/sys_stats_config_pb2.py +39 -0
  44. micromegas/thirdparty/perfetto/protos/perfetto/config/system_info/system_info_pb2.py +36 -0
  45. micromegas/thirdparty/perfetto/protos/perfetto/config/test_config_pb2.py +38 -0
  46. micromegas/thirdparty/perfetto/protos/perfetto/config/trace_config_pb2.py +90 -0
  47. micromegas/thirdparty/perfetto/protos/perfetto/config/track_event/track_event_config_pb2.py +36 -0
  48. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_game_intervention_list_pb2.py +40 -0
  49. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_log_pb2.py +43 -0
  50. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_system_property_pb2.py +38 -0
  51. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/camera_event_pb2.py +48 -0
  52. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/frame_timeline_event_pb2.py +54 -0
  53. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/gpu_mem_event_pb2.py +36 -0
  54. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics/rect_pb2.py +36 -0
  55. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics_frame_event_pb2.py +40 -0
  56. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/initial_display_state_pb2.py +36 -0
  57. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/network_trace_pb2.py +46 -0
  58. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/packages_list_pb2.py +38 -0
  59. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/pixel_modem_events_pb2.py +38 -0
  60. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/protolog_pb2.py +43 -0
  61. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/shell_transition_pb2.py +42 -0
  62. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_common_pb2.py +59 -0
  63. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_layers_pb2.py +72 -0
  64. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_transactions_pb2.py +76 -0
  65. micromegas/thirdparty/perfetto/protos/perfetto/trace/android/winscope_extensions_pb2.py +36 -0
  66. micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_benchmark_metadata_pb2.py +36 -0
  67. micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_metadata_pb2.py +50 -0
  68. micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trace_event_pb2.py +56 -0
  69. micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trigger_pb2.py +36 -0
  70. micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/v8_pb2.py +70 -0
  71. micromegas/thirdparty/perfetto/protos/perfetto/trace/clock_snapshot_pb2.py +41 -0
  72. micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_bundle_pb2.py +37 -0
  73. micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_pb2.py +37 -0
  74. micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_pb2.py +48 -0
  75. micromegas/thirdparty/perfetto/protos/perfetto/trace/extension_descriptor_pb2.py +37 -0
  76. micromegas/thirdparty/perfetto/protos/perfetto/trace/filesystem/inode_file_map_pb2.py +40 -0
  77. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/android_fs_pb2.py +46 -0
  78. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/binder_pb2.py +52 -0
  79. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/block_pb2.py +72 -0
  80. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cgroup_pb2.py +52 -0
  81. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/clk_pb2.py +40 -0
  82. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cma_pb2.py +38 -0
  83. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/compaction_pb2.py +62 -0
  84. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cpuhp_pb2.py +44 -0
  85. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cros_ec_pb2.py +36 -0
  86. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dcvsh_pb2.py +36 -0
  87. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dma_fence_pb2.py +44 -0
  88. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dmabuf_heap_pb2.py +36 -0
  89. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dpu_pb2.py +42 -0
  90. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/drm_pb2.py +38 -0
  91. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ext4_pb2.py +224 -0
  92. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/f2fs_pb2.py +106 -0
  93. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fastrpc_pb2.py +44 -0
  94. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fence_pb2.py +42 -0
  95. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/filemap_pb2.py +38 -0
  96. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_bundle_pb2.py +66 -0
  97. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_pb2.py +105 -0
  98. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_pb2.py +40 -0
  99. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_stats_pb2.py +42 -0
  100. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/g2d_pb2.py +36 -0
  101. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/generic_pb2.py +38 -0
  102. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_icc_trace_pb2.py +36 -0
  103. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_irm_trace_pb2.py +36 -0
  104. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_mem_pb2.py +36 -0
  105. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_scheduler_pb2.py +40 -0
  106. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/hyp_pb2.py +44 -0
  107. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/i2c_pb2.py +50 -0
  108. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ion_pb2.py +36 -0
  109. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ipi_pb2.py +40 -0
  110. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/irq_pb2.py +44 -0
  111. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kgsl_pb2.py +36 -0
  112. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kmem_pb2.py +122 -0
  113. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kvm_pb2.py +106 -0
  114. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lowmemorykiller_pb2.py +36 -0
  115. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lwis_pb2.py +36 -0
  116. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mali_pb2.py +98 -0
  117. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mdss_pb2.py +76 -0
  118. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mm_event_pb2.py +36 -0
  119. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/net_pb2.py +42 -0
  120. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/oom_pb2.py +38 -0
  121. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/panel_pb2.py +42 -0
  122. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/perf_trace_counters_pb2.py +36 -0
  123. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/power_pb2.py +60 -0
  124. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/printk_pb2.py +36 -0
  125. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/raw_syscalls_pb2.py +38 -0
  126. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/regulator_pb2.py +48 -0
  127. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/rpm_pb2.py +36 -0
  128. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/samsung_pb2.py +36 -0
  129. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sched_pb2.py +64 -0
  130. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/scm_pb2.py +38 -0
  131. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sde_pb2.py +46 -0
  132. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/signal_pb2.py +38 -0
  133. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/skb_pb2.py +36 -0
  134. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sock_pb2.py +36 -0
  135. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sync_pb2.py +40 -0
  136. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/synthetic_pb2.py +38 -0
  137. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/systrace_pb2.py +36 -0
  138. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/task_pb2.py +38 -0
  139. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/tcp_pb2.py +36 -0
  140. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_exynos_pb2.py +38 -0
  141. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_pb2.py +38 -0
  142. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/trusty_pb2.py +70 -0
  143. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ufs_pb2.py +38 -0
  144. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/v4l2_pb2.py +46 -0
  145. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_gpu_pb2.py +38 -0
  146. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_video_pb2.py +42 -0
  147. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/vmscan_pb2.py +46 -0
  148. micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/workqueue_pb2.py +42 -0
  149. micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_counter_event_pb2.py +39 -0
  150. micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_log_pb2.py +38 -0
  151. micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_render_stage_event_pb2.py +58 -0
  152. micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_api_event_pb2.py +40 -0
  153. micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_memory_event_pb2.py +44 -0
  154. micromegas/thirdparty/perfetto/protos/perfetto/trace/interned_data/interned_data_pb2.py +45 -0
  155. micromegas/thirdparty/perfetto/protos/perfetto/trace/memory_graph_pb2.py +48 -0
  156. micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/perfetto_metatrace_pb2.py +40 -0
  157. micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/tracing_service_event_pb2.py +36 -0
  158. micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_energy_estimation_breakdown_pb2.py +39 -0
  159. micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_entity_state_residency_pb2.py +40 -0
  160. micromegas/thirdparty/perfetto/protos/perfetto/trace/power/battery_counters_pb2.py +36 -0
  161. micromegas/thirdparty/perfetto/protos/perfetto/trace/power/power_rails_pb2.py +40 -0
  162. micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/deobfuscation_pb2.py +40 -0
  163. micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/heap_graph_pb2.py +57 -0
  164. micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_common_pb2.py +50 -0
  165. micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_packet_pb2.py +72 -0
  166. micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/smaps_pb2.py +38 -0
  167. micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_stats_pb2.py +42 -0
  168. micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_tree_pb2.py +40 -0
  169. micromegas/thirdparty/perfetto/protos/perfetto/trace/remote_clock_sync_pb2.py +39 -0
  170. micromegas/thirdparty/perfetto/protos/perfetto/trace/statsd/statsd_atom_pb2.py +38 -0
  171. micromegas/thirdparty/perfetto/protos/perfetto/trace/sys_stats/sys_stats_pb2.py +55 -0
  172. micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info/cpu_info_pb2.py +38 -0
  173. micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info_pb2.py +38 -0
  174. micromegas/thirdparty/perfetto/protos/perfetto/trace/test_event_pb2.py +39 -0
  175. micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_defaults_pb2.py +39 -0
  176. micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_pb2.py +107 -0
  177. micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_pb2.py +37 -0
  178. micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_uuid_pb2.py +36 -0
  179. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_active_processes_pb2.py +36 -0
  180. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_application_state_info_pb2.py +38 -0
  181. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_compositor_scheduler_state_pb2.py +75 -0
  182. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_content_settings_event_info_pb2.py +36 -0
  183. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_frame_reporter_pb2.py +44 -0
  184. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_histogram_sample_pb2.py +38 -0
  185. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_keyed_service_pb2.py +36 -0
  186. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_latency_info_pb2.py +42 -0
  187. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_legacy_ipc_pb2.py +38 -0
  188. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_message_pump_pb2.py +36 -0
  189. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_mojo_event_info_pb2.py +36 -0
  190. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_process_descriptor_pb2.py +38 -0
  191. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_renderer_scheduler_state_pb2.py +38 -0
  192. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_thread_descriptor_pb2.py +38 -0
  193. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_user_event_pb2.py +36 -0
  194. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_window_handle_event_info_pb2.py +36 -0
  195. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/counter_descriptor_pb2.py +40 -0
  196. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/debug_annotation_pb2.py +44 -0
  197. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/log_message_pb2.py +40 -0
  198. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/pixel_modem_pb2.py +36 -0
  199. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/process_descriptor_pb2.py +38 -0
  200. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/range_of_interest_pb2.py +36 -0
  201. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/screenshot_pb2.py +36 -0
  202. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/source_location_pb2.py +38 -0
  203. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/task_execution_pb2.py +36 -0
  204. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/thread_descriptor_pb2.py +38 -0
  205. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_descriptor_pb2.py +41 -0
  206. micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_event_pb2.py +74 -0
  207. micromegas/thirdparty/perfetto/protos/perfetto/trace/translation/translation_table_pb2.py +70 -0
  208. micromegas/thirdparty/perfetto/protos/perfetto/trace/trigger_pb2.py +36 -0
  209. micromegas/thirdparty/perfetto/protos/perfetto/trace/ui_state_pb2.py +38 -0
  210. micromegas/time.py +30 -0
  211. {micromegas-0.1.2.dist-info → micromegas-0.1.6.dist-info}/METADATA +3 -1
  212. micromegas-0.1.6.dist-info/RECORD +213 -0
  213. micromegas-0.1.2.dist-info/RECORD +0 -6
  214. {micromegas-0.1.2.dist-info → micromegas-0.1.6.dist-info}/WHEEL +0 -0
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/android/surfaceflinger_transactions_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/android/surfaceflinger_transactions_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\nGprotos/perfetto/config/android/surfaceflinger_transactions_config.proto\x12\x0fperfetto.protos\"\xac\x01\n SurfaceFlingerTransactionsConfig\x12\x44\n\x04mode\x18\x01 \x01(\x0e\x32\x36.perfetto.protos.SurfaceFlingerTransactionsConfig.Mode\"B\n\x04Mode\x12\x14\n\x10MODE_UNSPECIFIED\x10\x00\x12\x13\n\x0fMODE_CONTINUOUS\x10\x01\x12\x0f\n\x0bMODE_ACTIVE\x10\x02')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.android.surfaceflinger_transactions_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_SURFACEFLINGERTRANSACTIONSCONFIG']._serialized_start=93
35
+ _globals['_SURFACEFLINGERTRANSACTIONSCONFIG']._serialized_end=265
36
+ _globals['_SURFACEFLINGERTRANSACTIONSCONFIG_MODE']._serialized_start=199
37
+ _globals['_SURFACEFLINGERTRANSACTIONSCONFIG_MODE']._serialized_end=265
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/chrome/chrome_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/chrome/chrome_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1protos/perfetto/config/chrome/chrome_config.proto\x12\x0fperfetto.protos\"\x92\x02\n\x0c\x43hromeConfig\x12\x14\n\x0ctrace_config\x18\x01 \x01(\t\x12!\n\x19privacy_filtering_enabled\x18\x02 \x01(\x08\x12\x1e\n\x16\x63onvert_to_legacy_json\x18\x03 \x01(\x08\x12\x45\n\x0f\x63lient_priority\x18\x04 \x01(\x0e\x32,.perfetto.protos.ChromeConfig.ClientPriority\x12\x1f\n\x17json_agent_label_filter\x18\x05 \x01(\t\"A\n\x0e\x43lientPriority\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0e\n\nBACKGROUND\x10\x01\x12\x12\n\x0eUSER_INITIATED\x10\x02')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.chrome.chrome_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CHROMECONFIG']._serialized_start=71
35
+ _globals['_CHROMECONFIG']._serialized_end=345
36
+ _globals['_CHROMECONFIG_CLIENTPRIORITY']._serialized_start=280
37
+ _globals['_CHROMECONFIG_CLIENTPRIORITY']._serialized_end=345
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/chrome/v8_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/chrome/v8_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n-protos/perfetto/config/chrome/v8_config.proto\x12\x0fperfetto.protos\"@\n\x08V8Config\x12\x1a\n\x12log_script_sources\x18\x01 \x01(\x08\x12\x18\n\x10log_instructions\x18\x02 \x01(\x08')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.chrome.v8_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_V8CONFIG']._serialized_start=66
35
+ _globals['_V8CONFIG']._serialized_end=130
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,120 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/data_source_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/data_source_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from protos.perfetto.config.android import android_game_intervention_list_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__game__intervention__list__config__pb2
26
+ from protos.perfetto.config.android import android_input_event_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__input__event__config__pb2
27
+ from protos.perfetto.config.android import android_log_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__log__config__pb2
28
+ from protos.perfetto.config.android import android_polled_state_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__polled__state__config__pb2
29
+ from protos.perfetto.config.android import android_system_property_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__system__property__config__pb2
30
+ from protos.perfetto.config.android import android_sdk_sysprop_guard_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_android__sdk__sysprop__guard__config__pb2
31
+ from protos.perfetto.config.android import network_trace_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_network__trace__config__pb2
32
+ from protos.perfetto.config.android import packages_list_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_packages__list__config__pb2
33
+ from protos.perfetto.config.android import pixel_modem_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_pixel__modem__config__pb2
34
+ from protos.perfetto.config.android import protolog_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_protolog__config__pb2
35
+ from protos.perfetto.config.android import surfaceflinger_layers_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_surfaceflinger__layers__config__pb2
36
+ from protos.perfetto.config.android import surfaceflinger_transactions_config_pb2 as protos_dot_perfetto_dot_config_dot_android_dot_surfaceflinger__transactions__config__pb2
37
+ from protos.perfetto.config.chrome import chrome_config_pb2 as protos_dot_perfetto_dot_config_dot_chrome_dot_chrome__config__pb2
38
+ from protos.perfetto.config.chrome import v8_config_pb2 as protos_dot_perfetto_dot_config_dot_chrome_dot_v8__config__pb2
39
+ from protos.perfetto.config.etw import etw_config_pb2 as protos_dot_perfetto_dot_config_dot_etw_dot_etw__config__pb2
40
+ from protos.perfetto.config.ftrace import ftrace_config_pb2 as protos_dot_perfetto_dot_config_dot_ftrace_dot_ftrace__config__pb2
41
+ from protos.perfetto.config.gpu import gpu_counter_config_pb2 as protos_dot_perfetto_dot_config_dot_gpu_dot_gpu__counter__config__pb2
42
+ from protos.perfetto.config.gpu import vulkan_memory_config_pb2 as protos_dot_perfetto_dot_config_dot_gpu_dot_vulkan__memory__config__pb2
43
+ from protos.perfetto.config.inode_file import inode_file_config_pb2 as protos_dot_perfetto_dot_config_dot_inode__file_dot_inode__file__config__pb2
44
+ from protos.perfetto.config import interceptor_config_pb2 as protos_dot_perfetto_dot_config_dot_interceptor__config__pb2
45
+ from protos.perfetto.config.power import android_power_config_pb2 as protos_dot_perfetto_dot_config_dot_power_dot_android__power__config__pb2
46
+ from protos.perfetto.config.statsd import statsd_tracing_config_pb2 as protos_dot_perfetto_dot_config_dot_statsd_dot_statsd__tracing__config__pb2
47
+ from protos.perfetto.config.process_stats import process_stats_config_pb2 as protos_dot_perfetto_dot_config_dot_process__stats_dot_process__stats__config__pb2
48
+ from protos.perfetto.config.profiling import heapprofd_config_pb2 as protos_dot_perfetto_dot_config_dot_profiling_dot_heapprofd__config__pb2
49
+ from protos.perfetto.config.profiling import java_hprof_config_pb2 as protos_dot_perfetto_dot_config_dot_profiling_dot_java__hprof__config__pb2
50
+ from protos.perfetto.config.profiling import perf_event_config_pb2 as protos_dot_perfetto_dot_config_dot_profiling_dot_perf__event__config__pb2
51
+ from protos.perfetto.config.sys_stats import sys_stats_config_pb2 as protos_dot_perfetto_dot_config_dot_sys__stats_dot_sys__stats__config__pb2
52
+ from protos.perfetto.config import test_config_pb2 as protos_dot_perfetto_dot_config_dot_test__config__pb2
53
+ from protos.perfetto.config.track_event import track_event_config_pb2 as protos_dot_perfetto_dot_config_dot_track__event_dot_track__event__config__pb2
54
+ from protos.perfetto.config.system_info import system_info_pb2 as protos_dot_perfetto_dot_config_dot_system__info_dot_system__info__pb2
55
+
56
+
57
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/protos/perfetto/config/data_source_config.proto\x12\x0fperfetto.protos\x1aJprotos/perfetto/config/android/android_game_intervention_list_config.proto\x1a?protos/perfetto/config/android/android_input_event_config.proto\x1a\x37protos/perfetto/config/android/android_log_config.proto\x1a@protos/perfetto/config/android/android_polled_state_config.proto\x1a\x43protos/perfetto/config/android/android_system_property_config.proto\x1a\x45protos/perfetto/config/android/android_sdk_sysprop_guard_config.proto\x1a\x39protos/perfetto/config/android/network_trace_config.proto\x1a\x39protos/perfetto/config/android/packages_list_config.proto\x1a\x37protos/perfetto/config/android/pixel_modem_config.proto\x1a\x34protos/perfetto/config/android/protolog_config.proto\x1a\x41protos/perfetto/config/android/surfaceflinger_layers_config.proto\x1aGprotos/perfetto/config/android/surfaceflinger_transactions_config.proto\x1a\x31protos/perfetto/config/chrome/chrome_config.proto\x1a-protos/perfetto/config/chrome/v8_config.proto\x1a+protos/perfetto/config/etw/etw_config.proto\x1a\x31protos/perfetto/config/ftrace/ftrace_config.proto\x1a\x33protos/perfetto/config/gpu/gpu_counter_config.proto\x1a\x35protos/perfetto/config/gpu/vulkan_memory_config.proto\x1a\x39protos/perfetto/config/inode_file/inode_file_config.proto\x1a/protos/perfetto/config/interceptor_config.proto\x1a\x37protos/perfetto/config/power/android_power_config.proto\x1a\x39protos/perfetto/config/statsd/statsd_tracing_config.proto\x1a?protos/perfetto/config/process_stats/process_stats_config.proto\x1a\x37protos/perfetto/config/profiling/heapprofd_config.proto\x1a\x38protos/perfetto/config/profiling/java_hprof_config.proto\x1a\x38protos/perfetto/config/profiling/perf_event_config.proto\x1a\x37protos/perfetto/config/sys_stats/sys_stats_config.proto\x1a(protos/perfetto/config/test_config.proto\x1a;protos/perfetto/config/track_event/track_event_config.proto\x1a\x34protos/perfetto/config/system_info/system_info.proto\"\xf1\x13\n\x10\x44\x61taSourceConfig\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x15\n\rtarget_buffer\x18\x02 \x01(\r\x12\x19\n\x11trace_duration_ms\x18\x03 \x01(\r\x12)\n!prefer_suspend_clock_for_duration\x18z \x01(\x08\x12\x17\n\x0fstop_timeout_ms\x18\x07 \x01(\r\x12\x1f\n\x17\x65nable_extra_guardrails\x18\x06 \x01(\x08\x12M\n\x11session_initiator\x18\x08 \x01(\x0e\x32\x32.perfetto.protos.DataSourceConfig.SessionInitiator\x12\x1a\n\x12tracing_session_id\x18\x04 \x01(\x04\x12\x38\n\rftrace_config\x18\x64 \x01(\x0b\x32\x1d.perfetto.protos.FtraceConfigB\x02(\x01\x12?\n\x11inode_file_config\x18\x66 \x01(\x0b\x32 .perfetto.protos.InodeFileConfigB\x02(\x01\x12\x45\n\x14process_stats_config\x18g \x01(\x0b\x32#.perfetto.protos.ProcessStatsConfigB\x02(\x01\x12=\n\x10sys_stats_config\x18h \x01(\x0b\x32\x1f.perfetto.protos.SysStatsConfigB\x02(\x01\x12>\n\x10heapprofd_config\x18i \x01(\x0b\x32 .perfetto.protos.HeapprofdConfigB\x02(\x01\x12?\n\x11java_hprof_config\x18n \x01(\x0b\x32 .perfetto.protos.JavaHprofConfigB\x02(\x01\x12\x45\n\x14\x61ndroid_power_config\x18j \x01(\x0b\x32#.perfetto.protos.AndroidPowerConfigB\x02(\x01\x12\x41\n\x12\x61ndroid_log_config\x18k \x01(\x0b\x32!.perfetto.protos.AndroidLogConfigB\x02(\x01\x12\x41\n\x12gpu_counter_config\x18l \x01(\x0b\x32!.perfetto.protos.GpuCounterConfigB\x02(\x01\x12\x65\n%android_game_intervention_list_config\x18t \x01(\x0b\x32\x32.perfetto.protos.AndroidGameInterventionListConfigB\x02(\x01\x12\x45\n\x14packages_list_config\x18m \x01(\x0b\x32#.perfetto.protos.PackagesListConfigB\x02(\x01\x12?\n\x11perf_event_config\x18o \x01(\x0b\x32 .perfetto.protos.PerfEventConfigB\x02(\x01\x12\x45\n\x14vulkan_memory_config\x18p \x01(\x0b\x32#.perfetto.protos.VulkanMemoryConfigB\x02(\x01\x12\x41\n\x12track_event_config\x18q \x01(\x0b\x32!.perfetto.protos.TrackEventConfigB\x02(\x01\x12R\n\x1b\x61ndroid_polled_state_config\x18r \x01(\x0b\x32).perfetto.protos.AndroidPolledStateConfigB\x02(\x01\x12X\n\x1e\x61ndroid_system_property_config\x18v \x01(\x0b\x32,.perfetto.protos.AndroidSystemPropertyConfigB\x02(\x01\x12G\n\x15statsd_tracing_config\x18u \x01(\x0b\x32$.perfetto.protos.StatsdTracingConfigB\x02(\x01\x12=\n\x12system_info_config\x18w \x01(\x0b\x32!.perfetto.protos.SystemInfoConfig\x12\x34\n\rchrome_config\x18\x65 \x01(\x0b\x32\x1d.perfetto.protos.ChromeConfig\x12\x30\n\tv8_config\x18\x7f \x01(\x0b\x32\x19.perfetto.protos.V8ConfigB\x02(\x01\x12>\n\x12interceptor_config\x18s \x01(\x0b\x32\".perfetto.protos.InterceptorConfig\x12R\n\x1bnetwork_packet_trace_config\x18x \x01(\x0b\x32).perfetto.protos.NetworkPacketTraceConfigB\x02(\x01\x12U\n\x1csurfaceflinger_layers_config\x18y \x01(\x0b\x32+.perfetto.protos.SurfaceFlingerLayersConfigB\x02(\x01\x12\x61\n\"surfaceflinger_transactions_config\x18{ \x01(\x0b\x32\x31.perfetto.protos.SurfaceFlingerTransactionsConfigB\x02(\x01\x12[\n android_sdk_sysprop_guard_config\x18| \x01(\x0b\x32-.perfetto.protos.AndroidSdkSyspropGuardConfigB\x02(\x01\x12\x32\n\netw_config\x18} \x01(\x0b\x32\x1a.perfetto.protos.EtwConfigB\x02(\x01\x12<\n\x0fprotolog_config\x18~ \x01(\x0b\x32\x1f.perfetto.protos.ProtoLogConfigB\x02(\x01\x12Q\n\x1a\x61ndroid_input_event_config\x18\x80\x01 \x01(\x0b\x32(.perfetto.protos.AndroidInputEventConfigB\x02(\x01\x12\x42\n\x12pixel_modem_config\x18\x81\x01 \x01(\x0b\x32!.perfetto.protos.PixelModemConfigB\x02(\x01\x12\x16\n\rlegacy_config\x18\xe8\x07 \x01(\t\x12\x31\n\x0b\x66or_testing\x18\xe9\x07 \x01(\x0b\x32\x1b.perfetto.protos.TestConfig\"[\n\x10SessionInitiator\x12!\n\x1dSESSION_INITIATOR_UNSPECIFIED\x10\x00\x12$\n SESSION_INITIATOR_TRUSTED_SYSTEM\x10\x01J\x0b\x08\xff\xff\xff\x7f\x10\x80\x80\x80\x80\x01')
58
+
59
+ _globals = globals()
60
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
61
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.data_source_config_pb2', _globals)
62
+ if not _descriptor._USE_C_DESCRIPTORS:
63
+ DESCRIPTOR._loaded_options = None
64
+ _globals['_DATASOURCECONFIG'].fields_by_name['ftrace_config']._loaded_options = None
65
+ _globals['_DATASOURCECONFIG'].fields_by_name['ftrace_config']._serialized_options = b'(\001'
66
+ _globals['_DATASOURCECONFIG'].fields_by_name['inode_file_config']._loaded_options = None
67
+ _globals['_DATASOURCECONFIG'].fields_by_name['inode_file_config']._serialized_options = b'(\001'
68
+ _globals['_DATASOURCECONFIG'].fields_by_name['process_stats_config']._loaded_options = None
69
+ _globals['_DATASOURCECONFIG'].fields_by_name['process_stats_config']._serialized_options = b'(\001'
70
+ _globals['_DATASOURCECONFIG'].fields_by_name['sys_stats_config']._loaded_options = None
71
+ _globals['_DATASOURCECONFIG'].fields_by_name['sys_stats_config']._serialized_options = b'(\001'
72
+ _globals['_DATASOURCECONFIG'].fields_by_name['heapprofd_config']._loaded_options = None
73
+ _globals['_DATASOURCECONFIG'].fields_by_name['heapprofd_config']._serialized_options = b'(\001'
74
+ _globals['_DATASOURCECONFIG'].fields_by_name['java_hprof_config']._loaded_options = None
75
+ _globals['_DATASOURCECONFIG'].fields_by_name['java_hprof_config']._serialized_options = b'(\001'
76
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_power_config']._loaded_options = None
77
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_power_config']._serialized_options = b'(\001'
78
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_log_config']._loaded_options = None
79
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_log_config']._serialized_options = b'(\001'
80
+ _globals['_DATASOURCECONFIG'].fields_by_name['gpu_counter_config']._loaded_options = None
81
+ _globals['_DATASOURCECONFIG'].fields_by_name['gpu_counter_config']._serialized_options = b'(\001'
82
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_game_intervention_list_config']._loaded_options = None
83
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_game_intervention_list_config']._serialized_options = b'(\001'
84
+ _globals['_DATASOURCECONFIG'].fields_by_name['packages_list_config']._loaded_options = None
85
+ _globals['_DATASOURCECONFIG'].fields_by_name['packages_list_config']._serialized_options = b'(\001'
86
+ _globals['_DATASOURCECONFIG'].fields_by_name['perf_event_config']._loaded_options = None
87
+ _globals['_DATASOURCECONFIG'].fields_by_name['perf_event_config']._serialized_options = b'(\001'
88
+ _globals['_DATASOURCECONFIG'].fields_by_name['vulkan_memory_config']._loaded_options = None
89
+ _globals['_DATASOURCECONFIG'].fields_by_name['vulkan_memory_config']._serialized_options = b'(\001'
90
+ _globals['_DATASOURCECONFIG'].fields_by_name['track_event_config']._loaded_options = None
91
+ _globals['_DATASOURCECONFIG'].fields_by_name['track_event_config']._serialized_options = b'(\001'
92
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_polled_state_config']._loaded_options = None
93
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_polled_state_config']._serialized_options = b'(\001'
94
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_system_property_config']._loaded_options = None
95
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_system_property_config']._serialized_options = b'(\001'
96
+ _globals['_DATASOURCECONFIG'].fields_by_name['statsd_tracing_config']._loaded_options = None
97
+ _globals['_DATASOURCECONFIG'].fields_by_name['statsd_tracing_config']._serialized_options = b'(\001'
98
+ _globals['_DATASOURCECONFIG'].fields_by_name['v8_config']._loaded_options = None
99
+ _globals['_DATASOURCECONFIG'].fields_by_name['v8_config']._serialized_options = b'(\001'
100
+ _globals['_DATASOURCECONFIG'].fields_by_name['network_packet_trace_config']._loaded_options = None
101
+ _globals['_DATASOURCECONFIG'].fields_by_name['network_packet_trace_config']._serialized_options = b'(\001'
102
+ _globals['_DATASOURCECONFIG'].fields_by_name['surfaceflinger_layers_config']._loaded_options = None
103
+ _globals['_DATASOURCECONFIG'].fields_by_name['surfaceflinger_layers_config']._serialized_options = b'(\001'
104
+ _globals['_DATASOURCECONFIG'].fields_by_name['surfaceflinger_transactions_config']._loaded_options = None
105
+ _globals['_DATASOURCECONFIG'].fields_by_name['surfaceflinger_transactions_config']._serialized_options = b'(\001'
106
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_sdk_sysprop_guard_config']._loaded_options = None
107
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_sdk_sysprop_guard_config']._serialized_options = b'(\001'
108
+ _globals['_DATASOURCECONFIG'].fields_by_name['etw_config']._loaded_options = None
109
+ _globals['_DATASOURCECONFIG'].fields_by_name['etw_config']._serialized_options = b'(\001'
110
+ _globals['_DATASOURCECONFIG'].fields_by_name['protolog_config']._loaded_options = None
111
+ _globals['_DATASOURCECONFIG'].fields_by_name['protolog_config']._serialized_options = b'(\001'
112
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_input_event_config']._loaded_options = None
113
+ _globals['_DATASOURCECONFIG'].fields_by_name['android_input_event_config']._serialized_options = b'(\001'
114
+ _globals['_DATASOURCECONFIG'].fields_by_name['pixel_modem_config']._loaded_options = None
115
+ _globals['_DATASOURCECONFIG'].fields_by_name['pixel_modem_config']._serialized_options = b'(\001'
116
+ _globals['_DATASOURCECONFIG']._serialized_start=1820
117
+ _globals['_DATASOURCECONFIG']._serialized_end=4365
118
+ _globals['_DATASOURCECONFIG_SESSIONINITIATOR']._serialized_start=4261
119
+ _globals['_DATASOURCECONFIG_SESSIONINITIATOR']._serialized_end=4352
120
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/etw/etw_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/etw/etw_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n+protos/perfetto/config/etw/etw_config.proto\x12\x0fperfetto.protos\"s\n\tEtwConfig\x12;\n\x0ckernel_flags\x18\x01 \x03(\x0e\x32%.perfetto.protos.EtwConfig.KernelFlag\")\n\nKernelFlag\x12\x0b\n\x07\x43SWITCH\x10\x00\x12\x0e\n\nDISPATCHER\x10\x01')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.etw.etw_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ETWCONFIG']._serialized_start=64
35
+ _globals['_ETWCONFIG']._serialized_end=179
36
+ _globals['_ETWCONFIG_KERNELFLAG']._serialized_start=138
37
+ _globals['_ETWCONFIG_KERNELFLAG']._serialized_end=179
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,48 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/ftrace/ftrace_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/ftrace/ftrace_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n1protos/perfetto/config/ftrace/ftrace_config.proto\x12\x0fperfetto.protos\"\xec\x08\n\x0c\x46traceConfig\x12\x15\n\rftrace_events\x18\x01 \x03(\t\x12\x19\n\x11\x61trace_categories\x18\x02 \x03(\t\x12\x13\n\x0b\x61trace_apps\x18\x03 \x03(\t\x12\x16\n\x0e\x62uffer_size_kb\x18\n \x01(\r\x12\x17\n\x0f\x64rain_period_ms\x18\x0b \x01(\r\x12\x1c\n\x14\x64rain_buffer_percent\x18\x1a \x01(\r\x12G\n\rcompact_sched\x18\x0c \x01(\x0b\x32\x30.perfetto.protos.FtraceConfig.CompactSchedConfig\x12?\n\x0cprint_filter\x18\x16 \x01(\x0b\x32).perfetto.protos.FtraceConfig.PrintFilter\x12\x17\n\x0fsymbolize_ksyms\x18\r \x01(\x08\x12\x46\n\x10ksyms_mem_policy\x18\x11 \x01(\x0e\x32,.perfetto.protos.FtraceConfig.KsymsMemPolicy\x12\x36\n*initialize_ksyms_synchronously_for_testing\x18\x0e \x01(\x08\x42\x02\x18\x01\x12\x19\n\x11throttle_rss_stat\x18\x0f \x01(\x08\x12\x1e\n\x16\x64isable_generic_events\x18\x10 \x01(\x08\x12\x16\n\x0esyscall_events\x18\x12 \x03(\t\x12\x1d\n\x15\x65nable_function_graph\x18\x13 \x01(\x08\x12\x18\n\x10\x66unction_filters\x18\x14 \x03(\t\x12\x1c\n\x14\x66unction_graph_roots\x18\x15 \x03(\t\x12\x1e\n\x16preserve_ftrace_buffer\x18\x17 \x01(\x08\x12\x1f\n\x17use_monotonic_raw_clock\x18\x18 \x01(\x08\x12\x15\n\rinstance_name\x18\x19 \x01(\t\x12\x1f\n\x17\x62uffer_size_lower_bound\x18\x1b \x01(\x08\x1a%\n\x12\x43ompactSchedConfig\x12\x0f\n\x07\x65nabled\x18\x01 \x01(\x08\x1a\x82\x02\n\x0bPrintFilter\x12=\n\x05rules\x18\x01 \x03(\x0b\x32..perfetto.protos.FtraceConfig.PrintFilter.Rule\x1a\xb3\x01\n\x04Rule\x12\x10\n\x06prefix\x18\x01 \x01(\tH\x00\x12R\n\natrace_msg\x18\x03 \x01(\x0b\x32<.perfetto.protos.FtraceConfig.PrintFilter.Rule.AtraceMessageH\x00\x12\r\n\x05\x61llow\x18\x02 \x01(\x08\x1a-\n\rAtraceMessage\x12\x0c\n\x04type\x18\x01 \x01(\t\x12\x0e\n\x06prefix\x18\x02 \x01(\tB\x07\n\x05match\"T\n\x0eKsymsMemPolicy\x12\x15\n\x11KSYMS_UNSPECIFIED\x10\x00\x12\x19\n\x15KSYMS_CLEANUP_ON_STOP\x10\x01\x12\x10\n\x0cKSYMS_RETAIN\x10\x02')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.ftrace.ftrace_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_FTRACECONFIG'].fields_by_name['initialize_ksyms_synchronously_for_testing']._loaded_options = None
35
+ _globals['_FTRACECONFIG'].fields_by_name['initialize_ksyms_synchronously_for_testing']._serialized_options = b'\030\001'
36
+ _globals['_FTRACECONFIG']._serialized_start=71
37
+ _globals['_FTRACECONFIG']._serialized_end=1203
38
+ _globals['_FTRACECONFIG_COMPACTSCHEDCONFIG']._serialized_start=819
39
+ _globals['_FTRACECONFIG_COMPACTSCHEDCONFIG']._serialized_end=856
40
+ _globals['_FTRACECONFIG_PRINTFILTER']._serialized_start=859
41
+ _globals['_FTRACECONFIG_PRINTFILTER']._serialized_end=1117
42
+ _globals['_FTRACECONFIG_PRINTFILTER_RULE']._serialized_start=938
43
+ _globals['_FTRACECONFIG_PRINTFILTER_RULE']._serialized_end=1117
44
+ _globals['_FTRACECONFIG_PRINTFILTER_RULE_ATRACEMESSAGE']._serialized_start=1063
45
+ _globals['_FTRACECONFIG_PRINTFILTER_RULE_ATRACEMESSAGE']._serialized_end=1108
46
+ _globals['_FTRACECONFIG_KSYMSMEMPOLICY']._serialized_start=1119
47
+ _globals['_FTRACECONFIG_KSYMSMEMPOLICY']._serialized_end=1203
48
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/gpu/gpu_counter_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/gpu/gpu_counter_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n3protos/perfetto/config/gpu/gpu_counter_config.proto\x12\x0fperfetto.protos\"x\n\x10GpuCounterConfig\x12\x19\n\x11\x63ounter_period_ns\x18\x01 \x01(\x04\x12\x13\n\x0b\x63ounter_ids\x18\x02 \x03(\r\x12\x1d\n\x15instrumented_sampling\x18\x03 \x01(\x08\x12\x15\n\rfix_gpu_clock\x18\x04 \x01(\x08')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.gpu.gpu_counter_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_GPUCOUNTERCONFIG']._serialized_start=72
35
+ _globals['_GPUCOUNTERCONFIG']._serialized_end=192
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,36 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/gpu/vulkan_memory_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/gpu/vulkan_memory_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n5protos/perfetto/config/gpu/vulkan_memory_config.proto\x12\x0fperfetto.protos\"Z\n\x12VulkanMemoryConfig\x12!\n\x19track_driver_memory_usage\x18\x01 \x01(\x08\x12!\n\x19track_device_memory_usage\x18\x02 \x01(\x08')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.gpu.vulkan_memory_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_VULKANMEMORYCONFIG']._serialized_start=74
35
+ _globals['_VULKANMEMORYCONFIG']._serialized_end=164
36
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/inode_file/inode_file_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/inode_file/inode_file_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n9protos/perfetto/config/inode_file/inode_file_config.proto\x12\x0fperfetto.protos\"\xa3\x02\n\x0fInodeFileConfig\x12\x18\n\x10scan_interval_ms\x18\x01 \x01(\r\x12\x15\n\rscan_delay_ms\x18\x02 \x01(\r\x12\x17\n\x0fscan_batch_size\x18\x03 \x01(\r\x12\x13\n\x0b\x64o_not_scan\x18\x04 \x01(\x08\x12\x19\n\x11scan_mount_points\x18\x05 \x03(\t\x12T\n\x13mount_point_mapping\x18\x06 \x03(\x0b\x32\x37.perfetto.protos.InodeFileConfig.MountPointMappingEntry\x1a@\n\x16MountPointMappingEntry\x12\x12\n\nmountpoint\x18\x01 \x01(\t\x12\x12\n\nscan_roots\x18\x02 \x03(\t')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.inode_file.inode_file_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_INODEFILECONFIG']._serialized_start=79
35
+ _globals['_INODEFILECONFIG']._serialized_end=370
36
+ _globals['_INODEFILECONFIG_MOUNTPOINTMAPPINGENTRY']._serialized_start=306
37
+ _globals['_INODEFILECONFIG_MOUNTPOINTMAPPINGENTRY']._serialized_end=370
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,37 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/interceptor_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/interceptor_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from protos.perfetto.config.interceptors import console_config_pb2 as protos_dot_perfetto_dot_config_dot_interceptors_dot_console__config__pb2
26
+
27
+
28
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n/protos/perfetto/config/interceptor_config.proto\x12\x0fperfetto.protos\x1a\x38protos/perfetto/config/interceptors/console_config.proto\"Y\n\x11InterceptorConfig\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x36\n\x0e\x63onsole_config\x18\x64 \x01(\x0b\x32\x1e.perfetto.protos.ConsoleConfig')
29
+
30
+ _globals = globals()
31
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
32
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.interceptor_config_pb2', _globals)
33
+ if not _descriptor._USE_C_DESCRIPTORS:
34
+ DESCRIPTOR._loaded_options = None
35
+ _globals['_INTERCEPTORCONFIG']._serialized_start=126
36
+ _globals['_INTERCEPTORCONFIG']._serialized_end=215
37
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/interceptors/console_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/interceptors/console_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n8protos/perfetto/config/interceptors/console_config.proto\x12\x0fperfetto.protos\"\xa5\x01\n\rConsoleConfig\x12\x35\n\x06output\x18\x01 \x01(\x0e\x32%.perfetto.protos.ConsoleConfig.Output\x12\x15\n\renable_colors\x18\x02 \x01(\x08\"F\n\x06Output\x12\x16\n\x12OUTPUT_UNSPECIFIED\x10\x00\x12\x11\n\rOUTPUT_STDOUT\x10\x01\x12\x11\n\rOUTPUT_STDERR\x10\x02')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.interceptors.console_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_CONSOLECONFIG']._serialized_start=78
35
+ _globals['_CONSOLECONFIG']._serialized_end=243
36
+ _globals['_CONSOLECONFIG_OUTPUT']._serialized_start=173
37
+ _globals['_CONSOLECONFIG_OUTPUT']._serialized_end=243
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/power/android_power_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/power/android_power_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n7protos/perfetto/config/power/android_power_config.proto\x12\x0fperfetto.protos\"\xc0\x03\n\x12\x41ndroidPowerConfig\x12\x17\n\x0f\x62\x61ttery_poll_ms\x18\x01 \x01(\r\x12M\n\x10\x62\x61ttery_counters\x18\x02 \x03(\x0e\x32\x33.perfetto.protos.AndroidPowerConfig.BatteryCounters\x12\x1b\n\x13\x63ollect_power_rails\x18\x03 \x01(\x08\x12+\n#collect_energy_estimation_breakdown\x18\x04 \x01(\x08\x12&\n\x1e\x63ollect_entity_state_residency\x18\x05 \x01(\x08\"\xcf\x01\n\x0f\x42\x61tteryCounters\x12\x1f\n\x1b\x42\x41TTERY_COUNTER_UNSPECIFIED\x10\x00\x12\x1a\n\x16\x42\x41TTERY_COUNTER_CHARGE\x10\x01\x12$\n BATTERY_COUNTER_CAPACITY_PERCENT\x10\x02\x12\x1b\n\x17\x42\x41TTERY_COUNTER_CURRENT\x10\x03\x12\x1f\n\x1b\x42\x41TTERY_COUNTER_CURRENT_AVG\x10\x04\x12\x1b\n\x17\x42\x41TTERY_COUNTER_VOLTAGE\x10\x05')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.power.android_power_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_ANDROIDPOWERCONFIG']._serialized_start=77
35
+ _globals['_ANDROIDPOWERCONFIG']._serialized_end=525
36
+ _globals['_ANDROIDPOWERCONFIG_BATTERYCOUNTERS']._serialized_start=318
37
+ _globals['_ANDROIDPOWERCONFIG_BATTERYCOUNTERS']._serialized_end=525
38
+ # @@protoc_insertion_point(module_scope)
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: protos/perfetto/config/process_stats/process_stats_config.proto
5
+ # Protobuf Python Version: 5.27.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 5,
15
+ 27,
16
+ 1,
17
+ '',
18
+ 'protos/perfetto/config/process_stats/process_stats_config.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n?protos/perfetto/config/process_stats/process_stats_config.proto\x12\x0fperfetto.protos\"\xa6\x03\n\x12ProcessStatsConfig\x12:\n\x06quirks\x18\x01 \x03(\x0e\x32*.perfetto.protos.ProcessStatsConfig.Quirks\x12#\n\x1bscan_all_processes_on_start\x18\x02 \x01(\x08\x12\x1b\n\x13record_thread_names\x18\x03 \x01(\x08\x12\x1a\n\x12proc_stats_poll_ms\x18\x04 \x01(\r\x12\x1f\n\x17proc_stats_cache_ttl_ms\x18\x06 \x01(\r\x12\x1b\n\x13resolve_process_fds\x18\t \x01(\x08\x12\x19\n\x11scan_smaps_rollup\x18\n \x01(\x08\x12\x1a\n\x12record_process_age\x18\x0b \x01(\x08\x12\x1e\n\x16record_process_runtime\x18\x0c \x01(\x08\"U\n\x06Quirks\x12\x16\n\x12QUIRKS_UNSPECIFIED\x10\x00\x12\x1c\n\x14\x44ISABLE_INITIAL_DUMP\x10\x01\x1a\x02\x08\x01\x12\x15\n\x11\x44ISABLE_ON_DEMAND\x10\x02J\x04\x08\x07\x10\x08J\x04\x08\x08\x10\t')
28
+
29
+ _globals = globals()
30
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
31
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.config.process_stats.process_stats_config_pb2', _globals)
32
+ if not _descriptor._USE_C_DESCRIPTORS:
33
+ DESCRIPTOR._loaded_options = None
34
+ _globals['_PROCESSSTATSCONFIG_QUIRKS'].values_by_name["DISABLE_INITIAL_DUMP"]._loaded_options = None
35
+ _globals['_PROCESSSTATSCONFIG_QUIRKS'].values_by_name["DISABLE_INITIAL_DUMP"]._serialized_options = b'\010\001'
36
+ _globals['_PROCESSSTATSCONFIG']._serialized_start=85
37
+ _globals['_PROCESSSTATSCONFIG']._serialized_end=507
38
+ _globals['_PROCESSSTATSCONFIG_QUIRKS']._serialized_start=410
39
+ _globals['_PROCESSSTATSCONFIG_QUIRKS']._serialized_end=495
40
+ # @@protoc_insertion_point(module_scope)