Lines Matching refs:args
59 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
64 CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(prog, CAST_TO_U64(args)); \
72 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument
82 .num_args = COUNT_ARGS(args), \
89 #define DEFINE_EVENT_WRITABLE(template, call, proto, args, size) \ argument
97 (void)BUILD_BUG_ON_ZERO(size != sizeof(*FIRST(args))); \
99 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), size)
102 #define DEFINE_EVENT(template, call, proto, args) \ argument
103 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), 0)
106 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
107 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))