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