Lines Matching refs:proto
217 #define __DECLARE_TRACE_RCU(name, proto, args, cond) \ argument
218 static inline void trace_##name##_rcuidle(proto) \
226 #define __DECLARE_TRACE_RCU(name, proto, args, cond) argument
240 #define __DECLARE_TRACE(name, proto, args, cond, data_proto) \ argument
244 static inline void __nocfi trace_##name(proto) \
254 __DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args), \
290 #define DEFINE_TRACE_FN(_name, _reg, _unreg, proto, args) \ argument
294 int __traceiter_##_name(void *__data, proto); \
306 int __nocfi __traceiter_##_name(void *__data, proto) \
317 ((void(*)(void *, proto))(it_func))(__data, args); \
324 #define DEFINE_TRACE(name, proto, args) \ argument
325 DEFINE_TRACE_FN(name, NULL, NULL, PARAMS(proto), PARAMS(args));
338 #define __DECLARE_TRACE(name, proto, args, cond, data_proto) \ argument
339 static inline void trace_##name(proto) \
341 static inline void trace_##name##_rcuidle(proto) \
364 #define DEFINE_TRACE_FN(name, reg, unreg, proto, args) argument
365 #define DEFINE_TRACE(name, proto, args) argument
415 #define DECLARE_TRACE(name, proto, args) \ argument
416 __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
418 PARAMS(void *__data, proto))
420 #define DECLARE_TRACE_CONDITION(name, proto, args, cond) \ argument
421 __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
423 PARAMS(void *__data, proto))
537 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) argument
538 #define DEFINE_EVENT(template, name, proto, args) \ argument
539 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
540 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg)\ argument
541 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
542 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
543 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
544 #define DEFINE_EVENT_CONDITION(template, name, proto, \ argument
546 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
549 #define TRACE_EVENT(name, proto, args, struct, assign, print) \ argument
550 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
551 #define TRACE_EVENT_FN(name, proto, args, struct, \ argument
553 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
554 #define TRACE_EVENT_FN_COND(name, proto, args, cond, struct, \ argument
556 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
558 #define TRACE_EVENT_CONDITION(name, proto, args, cond, \ argument
560 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
567 #define DECLARE_EVENT_NOP(name, proto, args) \ argument
568 static inline void trace_##name(proto) \
575 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) \ argument
576 DECLARE_EVENT_NOP(name, PARAMS(proto), PARAMS(args))
578 #define DECLARE_EVENT_CLASS_NOP(name, proto, args, tstruct, assign, print) argument
579 #define DEFINE_EVENT_NOP(template, name, proto, args) \ argument
580 DECLARE_EVENT_NOP(name, PARAMS(proto), PARAMS(args))