UNPKG

perfetto-protos

Version:

Perfetto protos exposed via protobuf-es for browser and node

79 lines 2.27 kB
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; import type { Message } from "@bufbuild/protobuf"; /** * Describes the file protos/perfetto/metrics/android/android_blocking_call.proto. */ export declare const file_protos_perfetto_metrics_android_android_blocking_call: GenFile; /** * Blocking call on the main thread. * * @generated from message perfetto.protos.AndroidBlockingCall */ export type AndroidBlockingCall = Message<"perfetto.protos.AndroidBlockingCall"> & { /** * Name of the blocking call * * @generated from field: optional string name = 1; */ name: string; /** * Number of times it happened within the CUJ * * @generated from field: optional int64 cnt = 2; */ cnt: bigint; /** * Total duration within the CUJ * * @generated from field: optional int64 total_dur_ms = 3; */ totalDurMs: bigint; /** * Maximal duration within the CUJ * * @generated from field: optional int64 max_dur_ms = 4; */ maxDurMs: bigint; /** * Minimal duration within the CUJ * * @generated from field: optional int64 min_dur_ms = 5; */ minDurMs: bigint; /** * Total duration within the CUJ in nanoseconds * * @generated from field: optional int64 total_dur_ns = 6; */ totalDurNs: bigint; /** * Maximal duration within the CUJ in nanoseconds * * @generated from field: optional int64 max_dur_ns = 7; */ maxDurNs: bigint; /** * Minimal duration within the CUJ in nanoseconds * * @generated from field: optional int64 min_dur_ns = 8; */ minDurNs: bigint; /** * Avg duration within the CUJ * * @generated from field: optional int64 avg_dur_ms = 9; */ avgDurMs: bigint; /** * Avg duration within the CUJ in nanoseconds * * @generated from field: optional int64 avg_dur_ns = 10; */ avgDurNs: bigint; }; /** * Describes the message perfetto.protos.AndroidBlockingCall. * Use `create(AndroidBlockingCallSchema)` to create a new message. */ export declare const AndroidBlockingCallSchema: GenMessage<AndroidBlockingCall>; //# sourceMappingURL=android_blocking_call_pb.d.ts.map