hc
2023-11-06 15ade055295d13f95d49e3d99b09f3bbfb4a43e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef METRICGROUP_H
#define METRICGROUP_H 1
 
#include "linux/list.h"
#include "rblist.h"
#include <subcmd/parse-options.h>
#include "evlist.h"
#include "strbuf.h"
 
struct metric_event {
   struct rb_node nd;
   struct perf_evsel *evsel;
   struct list_head head; /* list of metric_expr */
};
 
struct metric_expr {
   struct list_head nd;
   const char *metric_expr;
   const char *metric_name;
   struct perf_evsel **metric_events;
};
 
struct metric_event *metricgroup__lookup(struct rblist *metric_events,
                    struct perf_evsel *evsel,
                    bool create);
int metricgroup__parse_groups(const struct option *opt,
           const char *str,
           struct rblist *metric_events);
 
void metricgroup__print(bool metrics, bool groups, char *filter, bool raw);
bool metricgroup__has_metric(const char *metric);
#endif