Lines Matching defs:config
24 static void __event_init_opts(struct event *e, u64 config,
32 e->attr.config = config;
44 void event_init_opts(struct event *e, u64 config, int type, char *name)
46 __event_init_opts(e, config, type, name, false);
49 void event_init_named(struct event *e, u64 config, char *name)
51 event_init_opts(e, config, PERF_TYPE_RAW, name);
54 void event_init(struct event *e, u64 config)
56 event_init_opts(e, config, PERF_TYPE_RAW, "event");
59 void event_init_sampling(struct event *e, u64 config)
61 __event_init_opts(e, config, PERF_TYPE_RAW, "event", true);