Lines Matching defs:proto
16 #define __DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
18 do_perf_trace_##call(void *__data, proto) \
65 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
66 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \
69 perf_trace_##call(void *__data, proto) \
79 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \
80 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \
83 perf_trace_##call(void *__data, proto) \
99 #define DEFINE_EVENT(template, call, proto, args) \
107 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \
108 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))