parse-events.h (2d055bf253c0d606c5de3fe7749e3188080780ad) | parse-events.h (95088a591e197610bd03f4059f5fdbe9e376425b) |
---|---|
1#ifndef __PERF_PARSE_EVENTS_H 2#define __PERF_PARSE_EVENTS_H 3/* 4 * Parse symbolic events/counts passed in as options: 5 */ 6 7#include <linux/list.h> 8#include <stdbool.h> --- 132 unchanged lines hidden (view full) --- 141 struct list_head *list, 142 char *bpf_file_name, 143 bool source, 144 struct list_head *head_config); 145/* Provide this function for perf test */ 146struct bpf_object; 147int parse_events_load_bpf_obj(struct parse_events_evlist *data, 148 struct list_head *list, | 1#ifndef __PERF_PARSE_EVENTS_H 2#define __PERF_PARSE_EVENTS_H 3/* 4 * Parse symbolic events/counts passed in as options: 5 */ 6 7#include <linux/list.h> 8#include <stdbool.h> --- 132 unchanged lines hidden (view full) --- 141 struct list_head *list, 142 char *bpf_file_name, 143 bool source, 144 struct list_head *head_config); 145/* Provide this function for perf test */ 146struct bpf_object; 147int parse_events_load_bpf_obj(struct parse_events_evlist *data, 148 struct list_head *list, |
149 struct bpf_object *obj); | 149 struct bpf_object *obj, 150 struct list_head *head_config); |
150int parse_events_add_numeric(struct parse_events_evlist *data, 151 struct list_head *list, 152 u32 type, u64 config, 153 struct list_head *head_config); 154int parse_events_add_cache(struct list_head *list, int *idx, 155 char *type, char *op_result1, char *op_result2, 156 struct parse_events_error *error, 157 struct list_head *head_config); --- 33 unchanged lines hidden --- | 151int parse_events_add_numeric(struct parse_events_evlist *data, 152 struct list_head *list, 153 u32 type, u64 config, 154 struct list_head *head_config); 155int parse_events_add_cache(struct list_head *list, int *idx, 156 char *type, char *op_result1, char *op_result2, 157 struct parse_events_error *error, 158 struct list_head *head_config); --- 33 unchanged lines hidden --- |