/include/net/ |
D | net_debug.h | 55 #define netdev_dbg(__dev, format, args...) \ argument 57 dynamic_netdev_dbg(__dev, format, ##args); \ 60 #define netdev_dbg(__dev, format, args...) \ argument 61 netdev_printk(KERN_DEBUG, __dev, format, ##args) 63 #define netdev_dbg(__dev, format, args...) \ argument 66 netdev_printk(KERN_DEBUG, __dev, format, ##args); \ 74 #define netdev_vdbg(dev, format, args...) \ argument 77 netdev_printk(KERN_DEBUG, dev, format, ##args); \ 84 #define netif_printk(priv, type, level, dev, fmt, args...) \ argument 87 netdev_printk(level, (dev), fmt, ##args); \ [all …]
|
D | handshake.h | 36 int tls_client_hello_anon(const struct tls_handshake_args *args, gfp_t flags); 37 int tls_client_hello_x509(const struct tls_handshake_args *args, gfp_t flags); 38 int tls_client_hello_psk(const struct tls_handshake_args *args, gfp_t flags); 39 int tls_server_hello_x509(const struct tls_handshake_args *args, gfp_t flags); 40 int tls_server_hello_psk(const struct tls_handshake_args *args, gfp_t flags);
|
/include/linux/ |
D | tracepoint.h | 107 #define PARAMS(args...) args argument 147 #define TP_PROTO(args...) args argument 148 #define TP_ARGS(args...) args argument 149 #define TP_CONDITION(args...) args argument 165 #define __DO_TRACE_CALL(name, args) \ argument 173 static_call(tp_func_##name)(__data, args); \ 177 #define __DO_TRACE_CALL(name, args) __traceiter_##name(NULL, args) argument 195 #define __DO_TRACE(name, args, cond, rcuidle) \ argument 217 __DO_TRACE_CALL(name, TP_ARGS(args)); \ 228 #define __DECLARE_TRACE_RCU(name, proto, args, cond) \ argument [all …]
|
D | atomic.h | 58 #define __atomic_op_acquire(op, args...) \ argument 60 typeof(op##_relaxed(args)) __ret = op##_relaxed(args); \ 65 #define __atomic_op_release(op, args...) \ argument 68 op##_relaxed(args); \ 71 #define __atomic_op_fence(op, args...) \ argument 73 typeof(op##_relaxed(args)) __ret; \ 75 __ret = op##_relaxed(args); \
|
D | android_hook_defs.h | 33 #define DECLARE_INDIRECT_HOOK(name, proto, args) \ argument 39 __trace_##name(args); \ 42 #define DEFINE_INDIRECT_HOOK(name, proto, args) \ argument 45 trace_##name(args); \
|
D | sprintf.h | 13 __printf(3, 0) int vsnprintf(char *buf, size_t size, const char *fmt, va_list args); 15 __printf(3, 0) int vscnprintf(char *buf, size_t size, const char *fmt, va_list args); 17 __printf(2, 0) __malloc char *kvasprintf(gfp_t gfp, const char *fmt, va_list args); 18 __printf(2, 0) const char *kvasprintf_const(gfp_t gfp, const char *fmt, va_list args);
|
D | pwm.h | 88 struct pwm_args args; member 160 struct pwm_args *args) in pwm_get_args() argument 162 *args = pwm->args; in pwm_get_args() 185 struct pwm_args args; in pwm_init_state() local 191 pwm_get_args(pwm, &args); in pwm_init_state() 193 state->period = args.period; in pwm_init_state() 194 state->polarity = args.polarity; in pwm_init_state() 306 const struct of_phandle_args *args); 414 const struct of_phandle_args *args); 416 const struct of_phandle_args *args); [all …]
|
D | async_tx.h | 146 init_async_submit(struct async_submit_ctl *args, enum async_tx_flags flags, in init_async_submit() argument 151 args->flags = flags; in init_async_submit() 152 args->depend_tx = tx; in init_async_submit() 153 args->cb_fn = cb_fn; in init_async_submit() 154 args->cb_param = cb_param; in init_async_submit() 155 args->scribble = scribble; in init_async_submit()
|
D | netlink.h | 111 #define NL_SET_ERR_MSG_FMT(extack, fmt, args...) do { \ argument 117 "%s" fmt "%s", "", ##args, "") >= \ 120 ##args, "\n"); \ 130 #define NL_SET_ERR_MSG_FMT_MOD(extack, fmt, args...) \ argument 131 NL_SET_ERR_MSG_FMT((extack), KBUILD_MODNAME ": " fmt, ##args) 165 #define NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, pol, fmt, args...) do { \ argument 172 "%s" fmt "%s", "", ##args, "") >= \ 175 ##args, "\n"); \ 187 #define NL_SET_ERR_MSG_ATTR_FMT(extack, attr, msg, args...) \ argument 188 NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, NULL, msg, ##args) [all …]
|
D | kernel.h | 211 extern char *next_arg(char *args, char **param, char **val); 279 #define __trace_printk_check_format(fmt, args...) \ argument 282 ____trace_printk_check_format(fmt, ##args); \ 324 #define do_trace_printk(fmt, args...) \ argument 330 __trace_printk_check_format(fmt, ##args); \ 333 __trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \ 335 __trace_printk(_THIS_IP_, fmt, ##args); \
|
/include/trace/ |
D | define_trace.h | 27 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument 28 DEFINE_TRACE(name, PARAMS(proto), PARAMS(args)) 31 #define TRACE_EVENT_CONDITION(name, proto, args, cond, tstruct, assign, print) \ argument 34 PARAMS(args), \ 40 #define TRACE_EVENT_FN(name, proto, args, tstruct, \ argument 42 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 45 #define TRACE_EVENT_FN_COND(name, proto, args, cond, tstruct, \ argument 47 DEFINE_TRACE_FN(name, reg, unreg, PARAMS(proto), PARAMS(args)) 50 #define TRACE_EVENT_NOP(name, proto, args, struct, assign, print) argument 53 #define DEFINE_EVENT_NOP(template, name, proto, args) argument [all …]
|
D | bpf_probe.h | 45 #define __BPF_DECLARE_TRACE(call, proto, args) \ argument 50 CONCATENATE(bpf_trace_run, COUNT_ARGS(args))(prog, CAST_TO_U64(args)); \ 54 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 55 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args)) 62 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument 76 .num_args = COUNT_ARGS(args), \ 83 #define __CHECK_WRITABLE_BUF_SIZE(call, proto, args, size) \ argument 91 (void)BUILD_BUG_ON_ZERO(size != sizeof(*FIRST(args))); \ 95 #define DEFINE_EVENT_WRITABLE(template, call, proto, args, size) \ argument 96 __CHECK_WRITABLE_BUF_SIZE(call, PARAMS(proto), PARAMS(args), size) \ [all …]
|
D | trace_events.h | 39 #define TRACE_EVENT(name, proto, args, tstruct, assign, print) \ argument 42 PARAMS(args), \ 46 DEFINE_EVENT(name, name, PARAMS(proto), PARAMS(args)); 51 #define DECLARE_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument 61 #define DEFINE_EVENT(template, name, proto, args) \ argument 66 #define DEFINE_EVENT_FN(template, name, proto, args, reg, unreg) \ argument 67 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) 70 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument 71 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args)) 75 #define TRACE_EVENT_FN(name, proto, args, tstruct, \ argument [all …]
|
D | trace_custom_events.h | 27 #define TRACE_CUSTOM_EVENT(name, proto, args, tstruct, assign, print) \ argument 30 PARAMS(args), \ 34 DEFINE_CUSTOM_EVENT(name, name, PARAMS(proto), PARAMS(args)); 41 #define DECLARE_CUSTOM_EVENT_CLASS(name, proto, args, tstruct, assign, print) \ argument 51 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) \ argument 62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 68 #define DEFINE_CUSTOM_EVENT(template, name, proto, args) argument 77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 108 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, func, print) \ argument 120 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument [all …]
|
D | perf.h | 16 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 31 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \ 64 #define DEFINE_EVENT(template, call, proto, args) \ argument 72 #define DEFINE_EVENT_PRINT(template, name, proto, args, print) \ argument 73 DEFINE_EVENT(template, name, PARAMS(proto), PARAMS(args))
|
/include/trace/hooks/ |
D | vendor_hooks.h | 22 #define DEFINE_HOOK_FN(_name, _reg, _unreg, proto, args) \ argument 47 ((void(*)(void *, proto))(it_func))(__data, args); \ 55 #define DECLARE_RESTRICTED_HOOK(name, proto, args, cond) \ argument 56 DEFINE_HOOK_FN(name, NULL, NULL, PARAMS(proto), PARAMS(args)) 63 #define __DO_RESTRICTED_HOOK_CALL(name, args) \ argument 70 static_call(tp_func_##name)(__data, args); \ 74 #define __DO_RESTRICTED_HOOK_CALL(name, args) __traceiter_##name(NULL, args) argument 77 #define DO_RESTRICTED_HOOK(name, args, cond) \ argument 82 __DO_RESTRICTED_HOOK_CALL(name, TP_ARGS(args)); \ 85 #define __DECLARE_RESTRICTED_HOOK(name, proto, args, cond, data_proto) \ argument [all …]
|
/include/trace/events/ |
D | syscalls.h | 26 __array( unsigned long, args, 6 ) 31 syscall_get_arguments(current, regs, __entry->args); 36 __entry->args[0], __entry->args[1], __entry->args[2], 37 __entry->args[3], __entry->args[4], __entry->args[5]),
|
D | bpf_test_run.h | 29 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 31 PARAMS(args), size) 34 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 35 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
D | xen.h | 42 __array(unsigned long, args, 6) 46 memcpy(__entry->args, mc->args, sizeof(ulong) * nargs); 47 memset(__entry->args + nargs, 0, sizeof(ulong) * (6 - nargs)); 51 __entry->args[0], __entry->args[1], __entry->args[2], 52 __entry->args[3], __entry->args[4], __entry->args[5]) 56 TP_PROTO(size_t args), 57 TP_ARGS(args), 59 __field(size_t, args) 61 TP_fast_assign(__entry->args = args), 62 TP_printk("alloc entry %zu arg bytes", __entry->args) [all …]
|
D | nbd.h | 85 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 87 PARAMS(args), size) 90 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 91 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
/include/media/ |
D | v4l2-device.h | 292 #define __v4l2_device_call_subdevs_p(v4l2_dev, sd, cond, o, f, args...) \ argument 296 (sd)->ops->o->f((sd) , ##args); \ 317 #define __v4l2_device_call_subdevs(v4l2_dev, cond, o, f, args...) \ argument 322 f , ##args); \ 349 #define __v4l2_device_call_subdevs_until_err_p(v4l2_dev, sd, cond, o, f, args...) \ argument 355 __err = (sd)->ops->o->f((sd) , ##args); \ 384 #define __v4l2_device_call_subdevs_until_err(v4l2_dev, cond, o, f, args...) \ argument 388 f , ##args); \ 411 #define v4l2_device_call_all(v4l2_dev, grpid, o, f, args...) \ argument 417 ##args); \ [all …]
|
/include/kunit/ |
D | static_stub.h | 14 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) do {} while (0) argument 59 #define KUNIT_STATIC_STUB_REDIRECT(real_fn_name, args...) \ argument 71 return replacement(args); \
|
/include/uapi/linux/netfilter/ |
D | x_tables.h | 129 #define XT_MATCH_ITERATE(type, e, fn, args...) \ argument 140 __ret = fn(__m , ## args); \ 148 #define XT_ENTRY_ITERATE_CONTINUE(type, entries, size, n, fn, args...) \ argument 160 __ret = fn(__entry , ## args); \ 168 #define XT_ENTRY_ITERATE(type, entries, size, fn, args...) \ argument 169 XT_ENTRY_ITERATE_CONTINUE(type, entries, size, 0, fn, args)
|
/include/uapi/linux/netfilter_bridge/ |
D | ebtables.h | 218 #define EBT_MATCH_ITERATE(e, fn, args...) \ argument 230 __ret = fn(__match , ## args); \ 241 #define EBT_WATCHER_ITERATE(e, fn, args...) \ argument 253 __ret = fn(__watcher , ## args); \ 264 #define EBT_ENTRY_ITERATE(entries, size, fn, args...) \ argument 272 __ret = fn(__entry , ## args); \
|
/include/linux/usb/ |
D | composite.h | 622 #define DBG(d, fmt, args...) \ argument 623 dev_dbg(&(d)->gadget->dev , fmt , ## args) 624 #define VDBG(d, fmt, args...) \ argument 625 dev_vdbg(&(d)->gadget->dev , fmt , ## args) 626 #define ERROR(d, fmt, args...) \ argument 627 dev_err(&(d)->gadget->dev , fmt , ## args) 628 #define WARNING(d, fmt, args...) \ argument 629 dev_warn(&(d)->gadget->dev , fmt , ## args) 630 #define INFO(d, fmt, args...) \ argument 631 dev_info(&(d)->gadget->dev , fmt , ## args)
|