Home | History | Annotate | Download | only in net

Lines Matching defs:events_

50   // If |event_limit_specificed_| and the size of |events_| is larger than
52 // size of |events_| is equal to |max_events_saved_|.
55 // Start at the head of |events_| and remove all entries that occurred
67 // |events_|.
70 // Returns the number of timestamps in |events_| within the interval spanning
75 size_t Size() const { return events_.size(); }
76 bool Empty() { return events_.empty(); }
77 Timestamp Front() { return events_.front(); }
78 void Clear() { events_.clear(); }
92 std::deque<Timestamp> events_;