Lines Matching refs:proto
162 #define __DO_TRACE(tp, proto, args, cond, rcuidle) \ argument
193 ((void(*)(proto))(it_func))(args); \
206 #define __DECLARE_TRACE_RCU(name, proto, args, cond, data_proto, data_args) \ argument
207 static inline void trace_##name##_rcuidle(proto) \
216 #define __DECLARE_TRACE_RCU(name, proto, args, cond, data_proto, data_args) argument
231 #define __DECLARE_TRACE(name, proto, args, cond, data_proto, data_args) \ argument
233 static inline void trace_##name(proto) \
246 __DECLARE_TRACE_RCU(name, PARAMS(proto), PARAMS(args), \
299 #define __DECLARE_TRACE(name, proto, args, cond, data_proto, data_args) \ argument
300 static inline void trace_##name(proto) \
302 static inline void trace_##name##_rcuidle(proto) \
395 #define DECLARE_TRACE(name, proto, args) \ argument
396 __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
398 PARAMS(void *__data, proto), \
401 #define DECLARE_TRACE_CONDITION(name, proto, args, cond) \ argument
402 __DECLARE_TRACE(name, PARAMS(proto), PARAMS(args), \
404 PARAMS(void *__data, proto), \
519 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) argument
520 #define DEFINE_EVENT(template, name, proto, args) \ argument
521 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
522 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg)\ argument
523 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
524 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument
525 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
526 #define DEFINE_EVENT_CONDITION(template, name, proto, \ argument
528 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
531 #define TRACE_EVENT(name, proto, args, struct, assign, print) \ argument
532 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
533 #define TRACE_EVENT_FN(name, proto, args, struct, \ argument
535 DECLARE_TRACE(name, PARAMS(proto), PARAMS(args))
536 #define TRACE_EVENT_FN_COND(name, proto, args, cond, struct, \ argument
538 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
540 #define TRACE_EVENT_CONDITION(name, proto, args, cond, \ argument
542 DECLARE_TRACE_CONDITION(name, PARAMS(proto), \
549 #define DECLARE_EVENT_NOP(name, proto, args) \ argument
550 static inline void trace_##name(proto) \
557 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) \ argument
558 DECLARE_EVENT_NOP(name, PARAMS(proto), PARAMS(args))
560 #define DECLARE_EVENT_CLASS_NOP(name, proto, args, tstruct, assign, print) argument
561 #define DEFINE_EVENT_NOP(template, name, proto, args) \ argument
562 DECLARE_EVENT_NOP(name, PARAMS(proto), PARAMS(args))