Home | History | Annotate | Download | only in simpleperf

Lines Matching defs:EventType

33 // EventType represents one type of event, like cpu_cycle_event, cache_misses_event.
35 // (type, config) pair. EventType connects the two representations, and tells the user if
38 struct EventType {
39 EventType(const std::string& name, uint32_t type, uint64_t config,
45 EventType() : type(0), config(0) {
61 static std::string BuildString(const std::vector<const EventType*>& event_types);
67 std::vector<EventType> saved_event_types_;
70 const std::vector<EventType>& GetAllEventTypes();
71 const EventType* FindEventTypeByName(const std::string& name, bool report_error = true);
75 EventType event_type;