Lines Matching refs:proto
59 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
61 __bpf_trace_##call(void *__data, proto) \
72 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument
77 typedef void (*btf_trace_##call)(void *__data, proto); \
94 #define DEFINE_EVENT_WRITABLE(template, call, proto, args, size) \ argument
101 FIRST(proto); \
104 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), size)
107 #define DEFINE_EVENT(template, call, proto, args) \ argument
108 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), 0)
111 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
112 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))