| /include/trace/ |
| D | trace_custom_events.h | 62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 63 struct trace_custom_event_data_offsets_##call { \ 77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 79 trace_custom_raw_output_##call(struct trace_iterator *iter, int flags, \ 84 struct trace_custom_event_raw_##call *field; \ 97 static struct trace_event_functions trace_custom_event_type_funcs_##call = { \ 98 .trace = trace_custom_raw_output_##call, \ 108 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, func, print) \ argument 109 static struct trace_event_fields trace_custom_event_fields_##call[] = { \ 120 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument [all …]
|
| D | trace_events.h | 115 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 116 struct trace_event_data_offsets_##call { \ 187 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 189 trace_raw_output_##call(struct trace_iterator *iter, int flags, \ 194 struct trace_event_raw_##call *field; \ 207 static struct trace_event_functions trace_event_type_funcs_##call = { \ 208 .trace = trace_raw_output_##call, \ 212 #define DEFINE_EVENT_PRINT(template, call, proto, args, print) \ argument 214 trace_raw_output_##call(struct trace_iterator *iter, int flags, \ 223 if (entry->type != event_##call.event.type) { \ [all …]
|
| D | bpf_probe.h | 45 #define __BPF_DECLARE_TRACE(call, proto, args) \ argument 47 __bpf_trace_##call(void *__data, proto) \ 53 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 54 __BPF_DECLARE_TRACE(call, PARAMS(proto), PARAMS(args)) 61 #define __DEFINE_EVENT(template, call, proto, args, size) \ argument 62 static inline void bpf_test_probe_##call(void) \ 64 check_trace_callback_type_##call(__bpf_trace_##template); \ 66 typedef void (*btf_trace_##call)(void *__data, proto); \ 69 btf_trace_##call handler; \ 70 } __bpf_trace_tp_map_##call __used \ [all …]
|
| D | perf.h | 16 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \ argument 18 perf_trace_##call(void *__data, proto) \ 21 struct trace_event_data_offsets_##call __maybe_unused __data_offsets;\ 22 struct trace_event_raw_##call *entry; \ 31 __data_size = trace_event_get_offsets_##call(&__data_offsets, args); \ 64 #define DEFINE_EVENT(template, call, proto, args) \ argument 65 static inline void perf_test_probe_##call(void) \ 67 check_trace_callback_type_##call(perf_trace_##template); \
|
| /include/linux/ |
| D | delayed_call.h | 18 static inline void set_delayed_call(struct delayed_call *call, in set_delayed_call() argument 21 call->fn = fn; in set_delayed_call() 22 call->arg = arg; in set_delayed_call() 25 static inline void do_delayed_call(struct delayed_call *call) in do_delayed_call() argument 27 if (call->fn) in do_delayed_call() 28 call->fn(call->arg); in do_delayed_call() 31 static inline void clear_delayed_call(struct delayed_call *call) in clear_delayed_call() argument 33 call->fn = NULL; in clear_delayed_call()
|
| D | trace_events.h | 413 bool trace_event_dyn_try_get_ref(struct trace_event_call *call); 414 void trace_event_dyn_put_ref(struct trace_event_call *call); 415 bool trace_event_dyn_busy(struct trace_event_call *call); 417 static inline bool trace_event_dyn_try_get_ref(struct trace_event_call *call) in trace_event_dyn_try_get_ref() argument 422 static inline void trace_event_dyn_put_ref(struct trace_event_call *call) in trace_event_dyn_put_ref() argument 425 static inline bool trace_event_dyn_busy(struct trace_event_call *call) in trace_event_dyn_busy() argument 432 static inline bool trace_event_try_get_ref(struct trace_event_call *call) in trace_event_try_get_ref() argument 434 if (call->flags & TRACE_EVENT_FL_DYNAMIC) in trace_event_try_get_ref() 435 return trace_event_dyn_try_get_ref(call); in trace_event_try_get_ref() 437 return try_module_get(call->module); in trace_event_try_get_ref() [all …]
|
| D | syscalls.h | 1153 asmlinkage long sys_socketcall(int call, unsigned long __user *args); 1180 asmlinkage long sys_ipc(unsigned int call, int first, unsigned long second, 1231 int ksys_ipc(unsigned int call, int first, unsigned long second, 1233 int compat_ksys_ipc(u32 call, int first, int second,
|
| D | compat.h | 861 asmlinkage long compat_sys_socketcall(int call, u32 __user *args);
|
| /include/trace/events/ |
| D | rxrpc.h | 696 __field(unsigned int, call) 703 __entry->call = call_debug_id; 710 __entry->call, 816 TP_PROTO(struct rxrpc_call *call), 818 TP_ARGS(call), 821 __field(unsigned int, call) 828 __entry->call = call->debug_id; 829 __entry->compl = call->completion; 830 __entry->error = call->error; 831 __entry->abort_code = call->abort_code; [all …]
|
| D | afs.h | 546 TP_PROTO(struct afs_call *call, struct iov_iter *iter, 549 TP_ARGS(call, iter, want_more, ret), 553 __field(unsigned int, call) 561 __entry->call = call->debug_id; 562 __entry->state = call->state; 563 __entry->unmarshall = call->unmarshall; 570 __entry->call, 579 TP_PROTO(struct rxrpc_call *rxcall, struct afs_call *call), 581 TP_ARGS(rxcall, call), 584 __field(unsigned int, call) [all …]
|
| D | bpf_test_run.h | 46 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 47 DEFINE_EVENT_WRITABLE(template, call, PARAMS(proto), \ 51 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \ argument 52 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
| D | nbd.h | 85 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 86 DEFINE_EVENT_WRITABLE(template, call, PARAMS(proto), \ 90 #define NBD_DEFINE_EVENT(template, call, proto, args, size) \ argument 91 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))
|
| D | rpcrdma.h | 1480 DEFINE_CALLBACK_EVENT(call);
|
| D | sunrpc.h | 303 DEFINE_RPC_STATUS_EVENT(call);
|
| /include/net/ |
| D | af_rxrpc.h | 63 void rxrpc_kernel_shutdown_call(struct socket *sock, struct rxrpc_call *call); 64 void rxrpc_kernel_put_call(struct socket *sock, struct rxrpc_call *call); 69 struct rxrpc_peer *rxrpc_kernel_get_call_peer(struct socket *sock, struct rxrpc_call *call);
|
| D | ax25.h | 167 ax25_address call; member
|
| /include/xen/arm/ |
| D | hypercall.h | 44 long privcmd_call(unsigned call, unsigned long a1,
|
| /include/linux/netfilter/ |
| D | nfnetlink.h | 27 int (*call)(struct sk_buff *skb, const struct nfnl_info *info, member
|