Lines Matching refs:args
16 #define __DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
31 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \
65 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
66 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \
74 do_perf_trace_##call(__data, args); \
78 #define DECLARE_EVENT_SYSCALL_CLASS(call, proto, args, tstruct, assign, print) \ argument
79 __DECLARE_EVENT_CLASS(call, PARAMS(proto), PARAMS(args), PARAMS(tstruct), \
89 do_perf_trace_##call(__data, args); \
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))