Lines Matching refs:proto
80 #define __BPF_DECLARE_TRACE(call, proto, args) \ argument
82 __bpf_trace_##call(void *__data, proto) \
89 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument
90 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args))
97 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument
102 typedef void (*btf_trace_##call)(void *__data, proto); \
119 #define DEFINE_EVENT_WRITABLE(template, call, proto, args, size) \ argument
126 FIRST(proto); \
129 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), size)
132 #define DEFINE_EVENT(template, call, proto, args) \ argument
133 __DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args), 0)
136 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
137 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
140 #define DECLARE_TRACE(call, proto, args) \ argument
141 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args)) \
142 __DEFINE_EVENT(call, call, PARAMS(proto), PARAMS(args), 0)