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.
- micromegas/__init__.py +8 -0
- micromegas/client.py +125 -10
- micromegas/perfetto.py +205 -0
- micromegas/request.py +16 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/android_energy_consumer_descriptor_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/android_log_constants_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/builtin_clock_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/descriptor_pb2.py +62 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/gpu_counter_descriptor_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/perf_events_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/protolog_common_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/sys_stats_counters_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/common/trace_stats_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_game_intervention_list_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_input_event_config_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_log_config_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_polled_state_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_sdk_sysprop_guard_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_system_property_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/network_trace_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/packages_list_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/pixel_modem_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/protolog_config_pb2.py +41 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_layers_config_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_transactions_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/chrome_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/v8_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/data_source_config_pb2.py +120 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/etw/etw_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/ftrace/ftrace_config_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/gpu_counter_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/vulkan_memory_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/inode_file/inode_file_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/interceptor_config_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/interceptors/console_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/power/android_power_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/process_stats/process_stats_config_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/heapprofd_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/java_hprof_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/perf_event_config_pb2.py +43 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/atom_ids_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/statsd_tracing_config_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/sys_stats/sys_stats_config_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/system_info/system_info_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/test_config_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/trace_config_pb2.py +90 -0
- micromegas/thirdparty/perfetto/protos/perfetto/config/track_event/track_event_config_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_game_intervention_list_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_log_pb2.py +43 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_system_property_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/camera_event_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/frame_timeline_event_pb2.py +54 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/gpu_mem_event_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics/rect_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics_frame_event_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/initial_display_state_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/network_trace_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/packages_list_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/pixel_modem_events_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/protolog_pb2.py +43 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/shell_transition_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_common_pb2.py +59 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_layers_pb2.py +72 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_transactions_pb2.py +76 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/android/winscope_extensions_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_benchmark_metadata_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_metadata_pb2.py +50 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trace_event_pb2.py +56 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trigger_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/v8_pb2.py +70 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/clock_snapshot_pb2.py +41 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_bundle_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/extension_descriptor_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/filesystem/inode_file_map_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/android_fs_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/binder_pb2.py +52 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/block_pb2.py +72 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cgroup_pb2.py +52 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/clk_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cma_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/compaction_pb2.py +62 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cpuhp_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cros_ec_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dcvsh_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dma_fence_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dmabuf_heap_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dpu_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/drm_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ext4_pb2.py +224 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/f2fs_pb2.py +106 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fastrpc_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fence_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/filemap_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_bundle_pb2.py +66 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_pb2.py +105 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_stats_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/g2d_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/generic_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_icc_trace_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_irm_trace_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_mem_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_scheduler_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/hyp_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/i2c_pb2.py +50 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ion_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ipi_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/irq_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kgsl_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kmem_pb2.py +122 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kvm_pb2.py +106 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lowmemorykiller_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lwis_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mali_pb2.py +98 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mdss_pb2.py +76 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mm_event_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/net_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/oom_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/panel_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/perf_trace_counters_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/power_pb2.py +60 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/printk_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/raw_syscalls_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/regulator_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/rpm_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/samsung_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sched_pb2.py +64 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/scm_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sde_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/signal_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/skb_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sock_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sync_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/synthetic_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/systrace_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/task_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/tcp_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_exynos_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/trusty_pb2.py +70 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ufs_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/v4l2_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_gpu_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_video_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/vmscan_pb2.py +46 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/workqueue_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_counter_event_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_log_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_render_stage_event_pb2.py +58 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_api_event_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_memory_event_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/interned_data/interned_data_pb2.py +45 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/memory_graph_pb2.py +48 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/perfetto_metatrace_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/tracing_service_event_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_energy_estimation_breakdown_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_entity_state_residency_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/power/battery_counters_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/power/power_rails_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/deobfuscation_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/heap_graph_pb2.py +57 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_common_pb2.py +50 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_packet_pb2.py +72 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/smaps_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_stats_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_tree_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/remote_clock_sync_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/statsd/statsd_atom_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/sys_stats/sys_stats_pb2.py +55 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info/cpu_info_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/test_event_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_defaults_pb2.py +39 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_pb2.py +107 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_pb2.py +37 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_uuid_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_active_processes_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_application_state_info_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_compositor_scheduler_state_pb2.py +75 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_content_settings_event_info_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_frame_reporter_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_histogram_sample_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_keyed_service_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_latency_info_pb2.py +42 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_legacy_ipc_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_message_pump_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_mojo_event_info_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_process_descriptor_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_renderer_scheduler_state_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_thread_descriptor_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_user_event_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_window_handle_event_info_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/counter_descriptor_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/debug_annotation_pb2.py +44 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/log_message_pb2.py +40 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/pixel_modem_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/process_descriptor_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/range_of_interest_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/screenshot_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/source_location_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/task_execution_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/thread_descriptor_pb2.py +38 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_descriptor_pb2.py +41 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_event_pb2.py +74 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/translation/translation_table_pb2.py +70 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/trigger_pb2.py +36 -0
- micromegas/thirdparty/perfetto/protos/perfetto/trace/ui_state_pb2.py +38 -0
- micromegas/time.py +30 -0
- {micromegas-0.1.2.dist-info → micromegas-0.1.6.dist-info}/METADATA +3 -1
- micromegas-0.1.6.dist-info/RECORD +213 -0
- micromegas-0.1.2.dist-info/RECORD +0 -6
- {micromegas-0.1.2.dist-info → micromegas-0.1.6.dist-info}/WHEEL +0 -0
@@ -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/trace/trigger.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/trace/trigger.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/trace/trigger.proto\x12\x0fperfetto.protos\"T\n\x07Trigger\x12\x14\n\x0ctrigger_name\x18\x01 \x01(\t\x12\x15\n\rproducer_name\x18\x02 \x01(\t\x12\x1c\n\x14trusted_producer_uid\x18\x03 \x01(\x05')
|
28
|
+
|
29
|
+
_globals = globals()
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.trace.trigger_pb2', _globals)
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
33
|
+
DESCRIPTOR._loaded_options = None
|
34
|
+
_globals['_TRIGGER']._serialized_start=56
|
35
|
+
_globals['_TRIGGER']._serialized_end=140
|
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/trace/ui_state.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/trace/ui_state.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/trace/ui_state.proto\x12\x0fperfetto.protos\"\xc5\x01\n\x07UiState\x12\x19\n\x11timeline_start_ts\x18\x01 \x01(\x03\x12\x17\n\x0ftimeline_end_ts\x18\x02 \x01(\x03\x12\x44\n\x11highlight_process\x18\x03 \x01(\x0b\x32).perfetto.protos.UiState.HighlightProcess\x1a@\n\x10HighlightProcess\x12\r\n\x03pid\x18\x01 \x01(\rH\x00\x12\x11\n\x07\x63mdline\x18\x02 \x01(\tH\x00\x42\n\n\x08selector')
|
28
|
+
|
29
|
+
_globals = globals()
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'protos.perfetto.trace.ui_state_pb2', _globals)
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
33
|
+
DESCRIPTOR._loaded_options = None
|
34
|
+
_globals['_UISTATE']._serialized_start=58
|
35
|
+
_globals['_UISTATE']._serialized_end=255
|
36
|
+
_globals['_UISTATE_HIGHLIGHTPROCESS']._serialized_start=191
|
37
|
+
_globals['_UISTATE_HIGHLIGHTPROCESS']._serialized_end=255
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
micromegas/time.py
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
import datetime
|
2
|
+
import pandas
|
3
|
+
import re
|
4
|
+
|
5
|
+
def format_datetime(value):
|
6
|
+
nonetype = type(None)
|
7
|
+
match type(value):
|
8
|
+
case datetime.datetime:
|
9
|
+
if value.tzinfo is None:
|
10
|
+
raise RuntimeError("datetime needs a valid time zone")
|
11
|
+
return value.isoformat()
|
12
|
+
case pandas.Timestamp:
|
13
|
+
return value.isoformat()
|
14
|
+
case nonetype:
|
15
|
+
return None
|
16
|
+
raise RuntimeError("value of unknown type in format_datetime")
|
17
|
+
|
18
|
+
def parse_time_delta(user_string):
|
19
|
+
parser = re.compile("(\\d+)([mhd])")
|
20
|
+
m = parser.match(user_string)
|
21
|
+
nbr = int(m.group(1))
|
22
|
+
unit = m.group(2)
|
23
|
+
if unit == "m":
|
24
|
+
return datetime.timedelta(minutes=nbr)
|
25
|
+
elif unit == "h":
|
26
|
+
return datetime.timedelta(hours=nbr)
|
27
|
+
elif unit == "d":
|
28
|
+
return datetime.timedelta(days=nbr)
|
29
|
+
else:
|
30
|
+
raise RuntimeError("invalid time delta: " + user_string)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: micromegas
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.6
|
4
4
|
Summary: Python analytics client for https://github.com/madesroches/micromegas/
|
5
5
|
Author: Marc-Antoine Desroches
|
6
6
|
Author-email: madesroches@gmail.com
|
@@ -10,7 +10,9 @@ Classifier: Programming Language :: Python :: 3.10
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
12
12
|
Requires-Dist: cbor2 (>=5.6.3,<6.0.0)
|
13
|
+
Requires-Dist: crc (>=7.0.0,<8.0.0)
|
13
14
|
Requires-Dist: pandas (>=2.2.2,<3.0.0)
|
15
|
+
Requires-Dist: protobuf (>=5.27.1,<6.0.0)
|
14
16
|
Requires-Dist: pyarrow (>=16.0.0,<17.0.0)
|
15
17
|
Requires-Dist: requests (>=2.31.0,<3.0.0)
|
16
18
|
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
|
@@ -0,0 +1,213 @@
|
|
1
|
+
micromegas/__init__.py,sha256=E_j3LFxMk9rSMJunwDCi_90NsRHm1fKwjj_6KGMYCjQ,246
|
2
|
+
micromegas/client.py,sha256=M-LrQu9wHaJiYz-1TOM06O7Smd-R4EuE_KeZDS94eoA,5973
|
3
|
+
micromegas/perfetto.py,sha256=yuIe5iKvca61aWMBQNziSGM-DHcOEsiobtKx2SsNQ3E,7829
|
4
|
+
micromegas/request.py,sha256=NV0urom5P3_P2q94gX51hxW_Fnrp_DDRorsP3mUb5NM,941
|
5
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/android_energy_consumer_descriptor_pb2.py,sha256=l8QNXqnB-mJIkuFr2s1YoLQXHm3G-ZcOGp_OW_hQ0TE,1887
|
6
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/android_log_constants_pb2.py,sha256=O5zDZkV8Nji0O2ryJRP4FTWdgdOBlDymWNcpNNDOFxk,2017
|
7
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/builtin_clock_pb2.py,sha256=7qLL_BENTxRFQH8DfHDvyWAkgwy0VHrOaE8XhL8iZgk,1822
|
8
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/descriptor_pb2.py,sha256=11UWoqd6JE2Y8b2tFTYkD3mXKWQXKvzr56xL5NMSDZo,6744
|
9
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/gpu_counter_descriptor_pb2.py,sha256=IbJweEd6jOl_8Ow9PbAM0sJoJn1uNfclIleCEdPCeJs,4638
|
10
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/perf_events_pb2.py,sha256=_SkRL88v8ExO00XfCvcvPoyNWb_ABXdJDc3jnU3oerw,3757
|
11
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/protolog_common_pb2.py,sha256=FRgRwltZu-i7Eof5JgoNlCvuLwrnmh6i8pp5B0m03lk,1654
|
12
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/sys_stats_counters_pb2.py,sha256=I8IHrMP-c6G7Ydw9iRvz_wyCPbtrFd_i6fopUcjr2l4,11252
|
13
|
+
micromegas/thirdparty/perfetto/protos/perfetto/common/trace_stats_pb2.py,sha256=hdLP0u1WGclB6YqC7TKWKCLqtbVfHEeamFO_y_IZEUc,5005
|
14
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_game_intervention_list_config_pb2.py,sha256=dY2hS2NKjOd8jGXq_hRiTKbzYhsQLYbZHFlI3eCiNrs,1580
|
15
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_input_event_config_pb2.py,sha256=elizJjr4de5U0fegf_ijsHylp4S0Dqs9bSsMUvcs0to,2753
|
16
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_log_config_pb2.py,sha256=O-QIV-x3BQ21g3PSkZyXTKxGo8ys3_vO03ouEukpc6A,1822
|
17
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_polled_state_config_pb2.py,sha256=wKFoEbND-UOHQlUPfMPKWnD28GZGcqn33h64IvcGTq4,1507
|
18
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_sdk_sysprop_guard_config_pb2.py,sha256=lod8kdvLKCz0bRj_y3tizfaBaw7dQUPuOrY4E_-xEew,1672
|
19
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/android_system_property_config_pb2.py,sha256=C7t7VeSfrO3uY4cqmREdUjzcepGIL9QKiY5GILo6O3M,1569
|
20
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/network_trace_config_pb2.py,sha256=ngNZXYzgPoCoPe3X5868zTiyGjmdta-7IqxE6Dl3ixM,1729
|
21
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/packages_list_config_pb2.py,sha256=QTuAhWk0PMO-wXXqj80zXfOg9KfHqj3tKOKWdj2UuJc,1470
|
22
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/pixel_modem_config_pb2.py,sha256=bztUG7uBKg-WVzRBFdjdKkmaApsVdOUhsw8p6RX66yE,1908
|
23
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/protolog_config_pb2.py,sha256=O1ofLMkryd9QjajfrO7BNToROk_TtHOCzZGttQY0tqs,2244
|
24
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_layers_config_pb2.py,sha256=Usr-5K3FQC_cJ7x7Ybpo_adkLdAP8_TVSXWO5yjE294,2493
|
25
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/android/surfaceflinger_transactions_config_pb2.py,sha256=CvjLj83UNPRHpheL9TOba6ylQGCNfxC4qfYtUfPdyqM,1890
|
26
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/chrome_config_pb2.py,sha256=BjHcligtmRI5tDV6IDKmhoa7zs7k52icaKkwWATCMig,1935
|
27
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/chrome/v8_config_pb2.py,sha256=oIGSKv6yKMK-ifLMcAZMp5fbv29K8Du_5Fn-wdNC8Qk,1441
|
28
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/data_source_config_pb2.py,sha256=wjvu2neyEUYO2IDY8L6RJeLPD6bO6vKuxouLOSA1UZ4,16521
|
29
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/etw/etw_config_pb2.py,sha256=3G27hCoun9O5Ee5ZA84tItuWRraff18VK1oXm6n_e_0,1612
|
30
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/ftrace/ftrace_config_pb2.py,sha256=mqUPtbv61ixy7pXvb72qKJ6qb9o1tQS-O1QvcosFg_M,4153
|
31
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/gpu_counter_config_pb2.py,sha256=97hKymmtSoJ0Cc2AOV1-udx72gQJud1yWLireKnAvCU,1583
|
32
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/gpu/vulkan_memory_config_pb2.py,sha256=qp-BHHdZxv9xQZpovo35z0PUXmvcoJyh29Q80uEEcN4,1513
|
33
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/inode_file/inode_file_config_pb2.py,sha256=PuP6lqgaKKih4hdMa6TVQCCzGZ4v0ItJsxX3_zyRHmU,2014
|
34
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/interceptor_config_pb2.py,sha256=dQgB5-Z94iLB_YjQ_RuMgYSy9FHlJf911jui4DwV9pY,1707
|
35
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/interceptors/console_config_pb2.py,sha256=d_YH_oRvFxRxRiAVb97NlB3SjRshrvp_ZTp9mhm40Tg,1765
|
36
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/power/android_power_config_pb2.py,sha256=1SnwJL1_dfNGPZhZSMB7p9DPvcl9F57jxImmuW3o9kI,2250
|
37
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/process_stats/process_stats_config_pb2.py,sha256=Mi9D_cuh_V8-41pMNwgXL9HWh4kdn-Xu5XFmVEXQpdA,2481
|
38
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/heapprofd_config_pb2.py,sha256=RYZXJJMoWWAvmb_VMipew1A0c7kw_FwGUu9yibh1tiQ,2981
|
39
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/java_hprof_config_pb2.py,sha256=k7zzuRH-1tavavh8E0bo4NGoIc7Ec5tTOxq14yWm2iA,2118
|
40
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/profiling/perf_event_config_pb2.py,sha256=cJfnH6I4EtfjEVU89RrFOFxelYQibwy0aWRLtj_Uhu8,3579
|
41
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/atom_ids_pb2.py,sha256=dPdbXbOKewX5ROMJTAL0IxX6R4BmeB7ouGZi80kaKJ8,50023
|
42
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/statsd/statsd_tracing_config_pb2.py,sha256=R_5SdcZtVBBBJ6PTkYlpVCmuzzftpRR14WTYpCppFnU,2159
|
43
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/sys_stats/sys_stats_config_pb2.py,sha256=o6erypHQHn0scqZabZwwphxRvL50AtC38UR-Pl79F-A,2561
|
44
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/system_info/system_info_pb2.py,sha256=vzqFeZbIVX638cyk2Y7PnFBGD3ZF-0kT6K8__UV5H6Y,1397
|
45
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/test_config_pb2.py,sha256=d5NO3cG-1Gsg5AvpzarJzIDQZTKwkpiAEkw8KKwNghc,2437
|
46
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/trace_config_pb2.py,sha256=gCbplyGYzbNXbygk0_SWO1L6fP9UO5kMhxE9MDeGNFY,12753
|
47
|
+
micromegas/thirdparty/perfetto/protos/perfetto/config/track_event/track_event_config_pb2.py,sha256=B76vM-h26uHWAmPye5qdX8G-2917FeVUPLTO4dz36tE,1907
|
48
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_game_intervention_list_pb2.py,sha256=o3Og8gaoY85tptvGqbhav4fDmuQu7bdFtSmrC1yaIY0,2437
|
49
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_log_pb2.py,sha256=wunwCB6VcYttpANz2ZcCdRZz-TtkG3HFb2uxmA2Y79g,2939
|
50
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/android_system_property_pb2.py,sha256=0DDpA6Pr1EF6JXuXbFsHPK6mULsfvyBGqQApH8CsRkc,1779
|
51
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/camera_event_pb2.py,sha256=L-1JrCHvCbFmYJp2MvapL3A0ueGAQgJ9xKcTrBX5xSo,4770
|
52
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/frame_timeline_event_pb2.py,sha256=zYA-5z8aLnwAmILjm76e4JyLZGHX8cjd1WrlyRJX_dM,6289
|
53
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/gpu_mem_event_pb2.py,sha256=hQV1fkNTRYkBUd70cSmAx1hrig_O85fXxqs1eqNUCdk,1488
|
54
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics/rect_pb2.py,sha256=_sADBuiiKG8Us9_-PwKvcWz9BTb1cah6yJSDj384KwU,1507
|
55
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/graphics_frame_event_pb2.py,sha256=rpOeh_DeBWRV9uhs4eK4EA2dbSSL8ygo6dV5TlIwOBg,2574
|
56
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/initial_display_state_pb2.py,sha256=qv8fCMoTudSZd5j-3g6aS48e-SMvopT6n7GgKcneY6k,1507
|
57
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/network_trace_pb2.py,sha256=NJOkspfDcv2iuXXRvCNBveVlp0bjaZbJx65Z5fm_AxQ,3269
|
58
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/packages_list_pb2.py,sha256=WydSM7ezkvIzyVEirsG_aJB0uh77q063OCteJypWSCs,1895
|
59
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/pixel_modem_events_pb2.py,sha256=RW_fi7HcBAFU1nGU6bEjXsh1iUUU9EAWLMCKfnkhQtg,1693
|
60
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/protolog_pb2.py,sha256=_JHiN1J2jWEzewCJ-haeF4wNuEaidmy0680rqIJtx_I,2711
|
61
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/shell_transition_pb2.py,sha256=mI9DVnMwZC5j1GcAWcQevroAVs8iX-h01XMbeLovHG4,2938
|
62
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_common_pb2.py,sha256=yQNUWt555TPASjNpbyiFmIJ5ZKbMQdEf9CHJgNz2Lhw,5238
|
63
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_layers_pb2.py,sha256=W859T2281kkivBHT2TN4n5evjqgnR7F-c5_4mugu8-8,10066
|
64
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/surfaceflinger_transactions_pb2.py,sha256=SnL2JMgRvK11F5u7JJ2njEsgqsj84c4OaLOdWyweLx8,15033
|
65
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/android/winscope_extensions_pb2.py,sha256=pTCV5MsuODtq5tJquARKY7XDCMxvfkmxw8bWrd2DHGU,1437
|
66
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_benchmark_metadata_pb2.py,sha256=icnoA4GcMLQPvui1CyGyjsjn6EkKnOmxtdtaJwLJJOc,1873
|
67
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_metadata_pb2.py,sha256=kFcEhcKzao3K-d5fMjVZWICt33-_B-BkeFhseOZOqYU,4478
|
68
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trace_event_pb2.py,sha256=BoekObHF8jQCOYPv3yOM9JAgVqNUMBbzRIxxaEsuXW0,5581
|
69
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/chrome_trigger_pb2.py,sha256=jpxisSO6olF3omoow9zlze8kmN-z-bSCkGTBtRQ7wtI,1463
|
70
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/chrome/v8_pb2.py,sha256=K5iSLy_obw1jHX_2jYU33eg21UgUwfrLWQjPuSU192E,9314
|
71
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/clock_snapshot_pb2.py,sha256=7ju0r6VyxBwI_eGmNatMDiAyDTgkwncYX2jIYalpuNg,2471
|
72
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_bundle_pb2.py,sha256=xEf_c4ebkLlIy_doDH0m3MyTlpmQci0yi9-1aWnixJo,1662
|
73
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_event_pb2.py,sha256=1USl5ZwAwzlK4VhCF4vJQqLAhIdvn91kVJ21lEU2Daw,1757
|
74
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/etw/etw_pb2.py,sha256=WBpLc1O69m_U7FoA1WIk7m6p8FUx1nbdulM4cHUjI6A,5153
|
75
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/extension_descriptor_pb2.py,sha256=rmls_JjAbUibI3rR0lbjNHkNcK_gKv0ypiZQgKuv4xQ,1624
|
76
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/filesystem/inode_file_map_pb2.py,sha256=_BlOh3ijUngjy4am7I9CuR7reDIcWWn4NxGPwtnu4-g,2080
|
77
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/android_fs_pb2.py,sha256=dA7O8a9bu8PI5KOmhq8uVaPXF6d90pXT6hiKN6eC8Xg,3353
|
78
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/binder_pb2.py,sha256=viiFzXurlej82fi1LMxdZLQY2_ZlYIczvaTW-dUkjwA,3597
|
79
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/block_pb2.py,sha256=kd0vy-dy6FXh-YyknYXwtfmOAkh3LeiRwTxg-Ec_IWM,7856
|
80
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cgroup_pb2.py,sha256=b5UU0v3-0wlEJ1gx6sIKRjOhEBj9jm7z9tn7jDAL1RM,4243
|
81
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/clk_pb2.py,sha256=Xq8v-8dnqns1gyp-PdRg4Bqj0y4yiggvGP7y6Hxv338,1788
|
82
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cma_pb2.py,sha256=1P_cjWWxP_IlVgEhn-TcygjkrX-AYPia3PCTJfsfhP8,2018
|
83
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/compaction_pb2.py,sha256=Gi8leEHTAsPwB1GIbrBV_S2aKFp8j3h7XrKMAd2_2PA,6190
|
84
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cpuhp_pb2.py,sha256=kpeyqQXIzKGO-nPSxxMsdYSft6NJRRl3vA3urj1_2-g,2705
|
85
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/cros_ec_pb2.py,sha256=Mw3CIXVxfwC2D5whEtTZ_EYGVmu1Btz5zTuwhEkTqJI,1690
|
86
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dcvsh_pb2.py,sha256=dd6yxfUcjhqv1TZDse3_k7ZB4cUitiCcWW4B-4YwSfU,1442
|
87
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dma_fence_pb2.py,sha256=l9f3B_h9KK7J0HTt749pB1aKKLWolJVULCRGG2julJ8,2793
|
88
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dmabuf_heap_pb2.py,sha256=RyJMGyLw4Tvvls7_9rcJQ2H8BpU6Cq9gXGYo-mzg-dc,1509
|
89
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/dpu_pb2.py,sha256=_fbm_718-RtaCtuilr9g6K--sZA_aZjv1Lb0V8hkLso,2363
|
90
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/drm_pb2.py,sha256=Ztg-_W-GcOZjNBBxquePvruOwdMK_GJb1RK7LbhxGIU,1808
|
91
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ext4_pb2.py,sha256=SXn_s6F1VUTz_Cp_f0lruBg_nE7X0rCk-s8-bIka0uw,36754
|
92
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/f2fs_pb2.py,sha256=O2QTB0hcAnfvJH8trBtCHow-6JfUFmVHgnftZvOx2ak,16946
|
93
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fastrpc_pb2.py,sha256=FIVAFaWRuDCDj1mn0i00_mWuk7LyrRZVH4HOI6Uf1Y8,2832
|
94
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/fence_pb2.py,sha256=Bezjl9FJwpMq0Sm0l93jPVof1Qoj0MTyx0CKR-sHZnw,2458
|
95
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/filemap_pb2.py,sha256=Zm-m0O4dbOqJ6HB6qGi6r81cGLFDL6HrV4n2Acn_3FU,1957
|
96
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_bundle_pb2.py,sha256=v5cnDeDroY753Cd5zdqov7BGwt1I5O2Kk7uOYW_Ebkc,6268
|
97
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_event_pb2.py,sha256=M2wqpF8pMHKecAWTxOO8FHad7D3U4zCH9q9_qm_2Y8U,67637
|
98
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_pb2.py,sha256=UVmtcyA2dC9aTK3OMPIp0wYsSbvqGKh-_K8Bn4bLhTM,2022
|
99
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ftrace_stats_pb2.py,sha256=fBDCuw7wngdtuWybwqm40-3WN-nFvMEUW4oLhL42QZg,3727
|
100
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/g2d_pb2.py,sha256=jPt96aIxb98j_v-8ETssuWQkHESjn111OczbNR-g4fM,1519
|
101
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/generic_pb2.py,sha256=pfPJ3H3D-hsC-fuFTEmaXQGSTB1Rng6RDTcGl-Kx67Y,1817
|
102
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_icc_trace_pb2.py,sha256=C5aWl_GYXJK4U36pUzxTO3FFYI0hnb6QL8NKQT_l1Fc,1493
|
103
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/google_irm_trace_pb2.py,sha256=QIF0fr0z8hhcVIHtXjt0XTyH96odrOK8YWh9PYliheM,1493
|
104
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_mem_pb2.py,sha256=MlsMbvWXhLYkl_NbySAfcbVpP69QmZAak3jfBEWI7sY,1478
|
105
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/gpu_scheduler_pb2.py,sha256=FjKnPAEpPStnc5GFRsJYpD1JmCBfYvcjo0oe1DoIde4,2218
|
106
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/hyp_pb2.py,sha256=X6mRhduFCNlUrizkcBqp0Ka6IjdNjdrTkQfPfInci_Q,2140
|
107
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/i2c_pb2.py,sha256=SU9jFK8LKYSXDm0x-4KgItg6PwVhFYWn5fZPRfAv3mk,4034
|
108
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ion_pb2.py,sha256=AI3Ak04DneBpBCcml0VMOV27LRW2toyE-ek7GP5Fhgo,1464
|
109
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ipi_pb2.py,sha256=q8xr4LZxAO-08ZMNd8bnnDUMscL_I3oLabKFWUneods,1772
|
110
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/irq_pb2.py,sha256=mJxsN408H1k_NGnGiwOo3NLJzRh1MBSZr0bPtbpfvkg,2253
|
111
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kgsl_pb2.py,sha256=D7PnKs79QwaEMI4WLgvYpPSmbtvOPspgmeWWIcV5YyQ,1451
|
112
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kmem_pb2.py,sha256=MhgD7h5crBcE_bVwMBJsSUYJ3ZKdDwFMVDeOfh84YqE,14172
|
113
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/kvm_pb2.py,sha256=bojNUM5jXy4aNbI6-C800N5n1M1gZL4wQADKNpWxVbs,10185
|
114
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lowmemorykiller_pb2.py,sha256=c3pUcOTxhkHF0ozxiUDY8pBdFMSdnuY7xMjR6ghx5-w,1615
|
115
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/lwis_pb2.py,sha256=nMufscLz8zd-uknVlAKgzcyZH3fDLe87k0uJuFNRInA,1567
|
116
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mali_pb2.py,sha256=J1_eJGDjxlNh0hd1xRUMv7j5aleAHJpACIvoe8T32qM,11494
|
117
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mdss_pb2.py,sha256=_D1A_JrVfuS6oqAlCtl4GOgPlRqdiy4Vr0aH6z5QvOQ,8501
|
118
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/mm_event_pb2.py,sha256=xKQDEvm3WUz3Gvzxj3Yr-cyq3lJX20fc5qHa6RYoAe8,1530
|
119
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/net_pb2.py,sha256=qiQzu5H9BhuI0DuOXqX01vMpinUE6EiK8r2boYCmq0Q,2867
|
120
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/oom_pb2.py,sha256=cmQHBPCtNE6p-hwVKyq-VbwQnYkrDKTCGaHG9YYOCTE,1671
|
121
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/panel_pb2.py,sha256=sXBvfkTrb1rc1rnDscXtHPzC_5NwP5JI0hIVmQCn3fk,2287
|
122
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/perf_trace_counters_pb2.py,sha256=EXMTDpP3Ox1w5axmrziapu-5WjAxPOk9NreQuX-chfc,2070
|
123
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/power_pb2.py,sha256=HrpTdAtK8qTBuEDXp23WNC0ey62fyGhu78sDe0mHP3M,4753
|
124
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/printk_pb2.py,sha256=itlF4Jr1eH2AE-qP_M8OLqVdO5LtkUmFfc66MxNHYDs,1392
|
125
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/raw_syscalls_pb2.py,sha256=VOYGUeP4ifzBChlKEstQ09JFwK9xsTAZy0g-H2RgV4U,1659
|
126
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/regulator_pb2.py,sha256=u3C5-Osfcs_cN5B7wmt3VWJ_rZuKNxpkPioobqgZa38,2809
|
127
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/rpm_pb2.py,sha256=ss3bO8Ffh11IzO-P_8xuMUlv09PK5Gtsepa4QU0gWPk,1423
|
128
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/samsung_pb2.py,sha256=rMD-PMg5Fx7FUYrKvPtMh_23R2OEQk8qzr8ff9C26Eg,1594
|
129
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sched_pb2.py,sha256=gKk0glcN1GAXyYljzphFLwIAgs3zNvJHkMTXoQHPOr4,6483
|
130
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/scm_pb2.py,sha256=XIoBxL8RCyi5DGajpAgWKun3xOk58DpMEWcIFFtt7Mg,1613
|
131
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sde_pb2.py,sha256=q63b9Rj_YIFzamYK1RxOn27NA10vuiUg1B4phw4vA2g,3736
|
132
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/signal_pb2.py,sha256=PaHiI2TD2rpyAOgnpVqjzQuq0ouy1Vxpe24LHrZh-NE,1866
|
133
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/skb_pb2.py,sha256=ARZ-LdkDNYgzKm_XsTYBmIEbnHLh3Qit7d0I1k_qCok,1465
|
134
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sock_pb2.py,sha256=HZEMXmUPX1IBIlvfe7JBM5SMGQmOEkMUG0BwwWbwL9Q,1727
|
135
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/sync_pb2.py,sha256=FzKRFW3-pvrU3ATGFJk6r6P6f6A3pPr8huqvrLpWpdE,1888
|
136
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/synthetic_pb2.py,sha256=OequzHTZePYNausG-ueqRKdHEguuFSdBRfjxomdiDr4,1749
|
137
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/systrace_pb2.py,sha256=bBVfD2BKa2K08SITObUZa-LOEJw6EcI0jVz8aLgHY5U,1499
|
138
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/task_pb2.py,sha256=MiiTcX5oTam2ovvsR-1k7Qze6wNfmQhpQwC1XuHQkos,1821
|
139
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/tcp_pb2.py,sha256=uVHbLsqukAMuOLGCSJJt_esPQ_q8zvuIJfAgVZCMvEQ,1638
|
140
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_exynos_pb2.py,sha256=nspwTzGRz7GhRLWw61jAjybRNsrGet4KaIW8UFiGdlg,2322
|
141
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/thermal_pb2.py,sha256=4lpMg5z1aEj_E6FV_vmxHTFU55PVBop-SV_uOWroHso,1770
|
142
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/trusty_pb2.py,sha256=oN_thmzzyGZ5wyV_D_SujSJCj5YKpaLfX75BvHoFF1g,6082
|
143
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/ufs_pb2.py,sha256=Vg3SiNr-C51f9vwsDR0O-2SlzBgvfvYASBfu31si3Gk,1977
|
144
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/v4l2_pb2.py,sha256=0oYaesqBZS0cLKX_ypPDCH00tgrZ50ivT-am_DuJdeE,6189
|
145
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_gpu_pb2.py,sha256=KvBVYpiAuwqhsYp9fKzxvaRIR0zEym2Hk0cGhdmDPzg,2251
|
146
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/virtio_video_pb2.py,sha256=REJKuliHh9Q1n3cPWfQ15YXfQO1RZGNNpNy-HkVZ2iY,2733
|
147
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/vmscan_pb2.py,sha256=3sISEWY7rckPLx1UGqqM0TO-4GcDFJDg593_PyJszQY,3297
|
148
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ftrace/workqueue_pb2.py,sha256=qto1zAJo4AJVWaeIXxTaRat5TmfsH6tMyqUUuiUtBlc,2312
|
149
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_counter_event_pb2.py,sha256=jNcIeVvgVdlFgEpez9m__wVapYCx2w6JDmQyiG2xApE,2096
|
150
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_log_pb2.py,sha256=ukQdnRXKl_V0vVowJCaAiYopDwy_PqVWGzgXqK5dh2I,1849
|
151
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/gpu_render_stage_event_pb2.py,sha256=kLgIMNKXcWhKIumjhfbxefTHNirJEt_gP0KLinmNEB4,5378
|
152
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_api_event_pb2.py,sha256=qVyHKFOLcP4oVA7Dhb7_b70YomusbjYZCDlocyqnydg,2398
|
153
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/gpu/vulkan_memory_event_pb2.py,sha256=vzRURajxXfYGSsveDL_Y970F0IzTVUvpS3VhL3oEue4,3622
|
154
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/interned_data/interned_data_pb2.py,sha256=K8CqgZeBS_K87XH-6x_pyphfbQkO-rDHX1U9R2rx6YQ,6033
|
155
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/memory_graph_pb2.py,sha256=ucbKsZlC-MuOGteb1st2FApIboLKpeTFyj2OuhxF_aU,3992
|
156
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/perfetto_metatrace_pb2.py,sha256=vj7IhkqbLFmslH5P0vrZWx4bKpLphhKBNL1WPqKrFVs,2627
|
157
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/perfetto/tracing_service_event_pb2.py,sha256=E2Dtc2JK7o1ovCK_iNmD82R8DRL1X20Tw9fRUrOekM0,1807
|
158
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_energy_estimation_breakdown_pb2.py,sha256=KNqC1aFOr2MeUwzmvmDqGKbOcEY1n5OujNjoQfrKIPQ,2354
|
159
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/power/android_entity_state_residency_pb2.py,sha256=8Upv8t2KP-1RuJ_LSonO1rYzEpyR8RIdsF_ZnOZG8kI,2450
|
160
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/power/battery_counters_pb2.py,sha256=a_kWfiLrJGLYn9PlorPvrTkr6D0oD2msV3swogdxULw,1720
|
161
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/power/power_rails_pb2.py,sha256=Y_UzIIROeZKHvNFHFmdDO1Zr3cKHoHQ7N7YPxFkrB4E,2091
|
162
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/deobfuscation_pb2.py,sha256=Lci_mqrKyuudKHIUBHAc6L0tRWi4yB7xthQGPX2kiLY,2218
|
163
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/heap_graph_pb2.py,sha256=4b_Br_KBV-sn_ZaUs4NipLUrYwVmfjhOFVmC4hbNwD4,5706
|
164
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_common_pb2.py,sha256=9y5ZbG5IPwKm9FNOcxOkxe5oihTViUjxwt67sW7YIJg,3424
|
165
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/profile_packet_pb2.py,sha256=R0CebWK4_93eNj684NNg7gJqdzi4E8Km0Pr6wi-R_aQ,9406
|
166
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/profiling/smaps_pb2.py,sha256=9f-MLWRwtKJ4I2sUWiWXLAJD0ygw8ScDVByeDKfwL4U,2240
|
167
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_stats_pb2.py,sha256=aR0QAMRfUgE-Q_0PAPiNEfkhSlru--8pk-RG_IYQQK0,3173
|
168
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ps/process_tree_pb2.py,sha256=brfm8sRwTTG_jK90IWu8DRhh1SZ1bwwDpQLoonCjxsY,2220
|
169
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/remote_clock_sync_pb2.py,sha256=HQEFdB8m7RZ8hTMJCbtkmZSOViX17SwE97A3X7HqTlE,1938
|
170
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/statsd/statsd_atom_pb2.py,sha256=6L8eKZq5foOphcAS_reVXvc5NirfUrBJ4TyKaOsj37A,1562
|
171
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/sys_stats/sys_stats_pb2.py,sha256=mT0oYvJtTq3te7tnBWI2lVxEtxyDYZjZOehvdISEbEk,5404
|
172
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info/cpu_info_pb2.py,sha256=jN3hh8oZeETAqzSi4wkiUaBVYgBBheYZBpK0x2f_Dis,1621
|
173
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/system_info_pb2.py,sha256=A7zU7AVq-9i41uxj8P0mZhoU98cRULkZmE25rRHVfF4,2017
|
174
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/test_event_pb2.py,sha256=ovbLi6_TS0MC-P685D_gxJcm4zxeGTyLWK87HW5tGJM,2293
|
175
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_defaults_pb2.py,sha256=ENsJNaUGaFIkpUpcZa7t-Ue72GhdH0pJw0FrUnfKMng,2250
|
176
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_packet_pb2.py,sha256=5hkSMh_D0J2UCnm7K2CfIQQtDoAtD9yNDoNNiVLQrLA,21973
|
177
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_pb2.py,sha256=ZC7Dal05CR77mENj53oy-AXbcfSQL29NT9H4_PgFGG8,1509
|
178
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/trace_uuid_pb2.py,sha256=-ZysrBTqP-XExwYh9BquupLQAgL8cbWULOxtgwoNGYk,1385
|
179
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_active_processes_pb2.py,sha256=36cB2wyvm6CG1uU7Wl_kiMSfZYibPlql3eG5X_mdbwA,1492
|
180
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_application_state_info_pb2.py,sha256=lHefB_sKDFDSJRQSX9JT8TwjjGkQ1PUD164zxoZKCa0,2115
|
181
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_compositor_scheduler_state_pb2.py,sha256=Kea_VOgYFm_U_cxQ6pDRDubJa-BXhDMERyWUsXGAl4g,15383
|
182
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_content_settings_event_info_pb2.py,sha256=q2fz0Eww1qShm3Ld2et5HLeyxBDARHU1PPpxtWYUOMc,1578
|
183
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_frame_reporter_pb2.py,sha256=V0-p2Qfc4KQwRx5uIPbqJaGaGeqFUL2FGIcZ-NSxQDk,3519
|
184
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_histogram_sample_pb2.py,sha256=xaH6HSjKp4X11IIyxixOmfkpf3UQGXy5DC3u1ViUedM,1797
|
185
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_keyed_service_pb2.py,sha256=7B5PPTstwTto3zl7KqvyCCHrelWtxPgsyMwvlbOq6vo,1471
|
186
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_latency_info_pb2.py,sha256=p2iKIQfIhhBQvwGollbc9aNlDI-yzMaVblhlEJk-SHU,3925
|
187
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_legacy_ipc_pb2.py,sha256=gNe3uEzHAZzxern1OtNnsTjYZZ-I04E_232UC8l3-Dw,3231
|
188
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_message_pump_pb2.py,sha256=ZWlWmrrzK9Uq4vTXeolJ6nHuSUyl2O6ubT4jxZlxEA8,1538
|
189
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_mojo_event_info_pb2.py,sha256=pr1-mNcfqK-_rL51580XhIUNVZs2qYNPThNLzRoK-L8,1785
|
190
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_process_descriptor_pb2.py,sha256=1RMxsx4Dfsbg1CZnzTA6dChYkX1Io4LXosD9sIOGuxo,3820
|
191
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_renderer_scheduler_state_pb2.py,sha256=ZjPtWlCWx34nJWGmqFv2EMgRzARvswZrEY17sdlUybI,1990
|
192
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_thread_descriptor_pb2.py,sha256=-qoiJF8GO1E4A5f453yJEUWCB9EL5WvZUonCN6M6SJI,3569
|
193
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_user_event_pb2.py,sha256=XwhhP23pSlL3DL41KOgYe1BmMPnhZOZrF_Ki_3o7VFA,1506
|
194
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/chrome_window_handle_event_info_pb2.py,sha256=F5Fv5nwskNk5W6Q74V4TQ4MPmUdfep-EwkqKmUTXKVE,1621
|
195
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/counter_descriptor_pb2.py,sha256=qnos1CHyiaoNj7rY5AMWvFk_X7B6UrcpXCDsu3lLRDs,2363
|
196
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/debug_annotation_pb2.py,sha256=Ku45ddUFu0S5wL38QgW7az82YyVAKsVCTSEKE9_6ZuI,3754
|
197
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/log_message_pb2.py,sha256=LT1hIT-Ap0lYM7vEHz6dQIADwLCCStvqQ1_bCdL3f8I,2131
|
198
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/pixel_modem_pb2.py,sha256=lwIEFbjWJh0tSj2nWCTz6dgdHCLSCgxdogWbUsFEuMo,1464
|
199
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/process_descriptor_pb2.py,sha256=hiOy1DNxSw_HvGOcyL6iVMsbprv2ZFKVs69mNCxLHPY,2378
|
200
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/range_of_interest_pb2.py,sha256=u4-wYsl627LgGPeoUfb1ZVPh0j6EwFL8Pi1OCtQrMtc,1482
|
201
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/screenshot_pb2.py,sha256=Bo5nqrxTi4GbRgnCMoDL5paT-qPbL9NkYHPqsB2PJGg,1409
|
202
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/source_location_pb2.py,sha256=QBVg6-viqrKn4FD5JMmmhiTCXdF6WGGfrlqJ747AR5U,1830
|
203
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/task_execution_pb2.py,sha256=ceuFMTEu4sK67kyhY_hlOWf7loLJ_tVP9qQrcuJilQU,1439
|
204
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/thread_descriptor_pb2.py,sha256=Xa0ICG9JlywvyGxMT7kY37O4rltwROBpE66NZTIm3ms,2726
|
205
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_descriptor_pb2.py,sha256=DJ2kO4QtQSCNJBU5jSkeGxGN4t4JNSXXY1MulT1nw5w,3185
|
206
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/track_event/track_event_pb2.py,sha256=NN_FB46IS3mUNigO4yRSFB1WV7nsu6OlnQBn0T71h8g,12251
|
207
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/translation/translation_table_pb2.py,sha256=-hkUdv07TsSDHH1mier2KyAhmivK4GSzEfAzAEYv20U,6630
|
208
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/trigger_pb2.py,sha256=We7Yi8o3cEcrSNxY1zLUUO6tEWnD36C2f3O_s8_qv0I,1435
|
209
|
+
micromegas/thirdparty/perfetto/protos/perfetto/trace/ui_state_pb2.py,sha256=Af-SXwhroNhRXMrtw6e2eU1liCImMRxSdmkt_AuSHf8,1752
|
210
|
+
micromegas/time.py,sha256=teMWk_hniW2jI7MWJ2w0HuckdTiebdr35-snUz_3cfU,911
|
211
|
+
micromegas-0.1.6.dist-info/METADATA,sha256=yZywCrAstjiI57lhWaTOTaCHE3MfqlCuaG0bASmgcCM,839
|
212
|
+
micromegas-0.1.6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
213
|
+
micromegas-0.1.6.dist-info/RECORD,,
|
@@ -1,6 +0,0 @@
|
|
1
|
-
micromegas/__init__.py,sha256=UXvwqJy81hhlwDNlKb2zXjLSR5ZuFBPc_L4BckBPwoM,43
|
2
|
-
micromegas/client.py,sha256=5NAthRRbOM6lk_OIkehqCtN7EEEmeYz2TiFd565sotQ,2010
|
3
|
-
micromegas/request.py,sha256=u6nqXV5iQjLdXjVrzDqrDV1yoqUbeJ9qjiVgz87-uN8,512
|
4
|
-
micromegas-0.1.2.dist-info/METADATA,sha256=k1GD2aohPXhlnnPIcMGdS0f6QakC6AHLzqJXrnot9lA,761
|
5
|
-
micromegas-0.1.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
6
|
-
micromegas-0.1.2.dist-info/RECORD,,
|
File without changes
|