Home | History | Annotate | Download | only in metrics

Lines Matching defs:EventType

61     public @interface EventType {}
63 public final @EventType int eventType;
66 public NetworkEvent(@EventType int eventType, long durationMs) {
67 this.eventType = eventType;
71 public NetworkEvent(@EventType int eventType) {
72 this(eventType, 0);
76 eventType = in.readInt();
82 out.writeInt(eventType);
105 Decoder.constants.get(eventType), durationMs);