Searched refs:call (Results 26 - 50 of 588) sorted by relevance

1234567891011>>

/linux-master/include/trace/
H A Dtrace_custom_events.h62 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
63 struct trace_custom_event_data_offsets_##call { \
77 #define DECLARE_CUSTOM_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
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) \
109 static struct trace_event_fields trace_custom_event_fields_##call[] = { \
120 #define DECLARE_CUSTOM_EVENT_CLASS(call, prot
[all...]
H A Dperf.h16 #define DECLARE_EVENT_CLASS(call, proto, args, tstruct, assign, print) \
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) \
65 static inline void perf_test_probe_##call(void) \
67 check_trace_callback_type_##call(perf_trace_##template); \
/linux-master/scripts/
H A DMakefile.kasan14 cc-param = $(call cc-option, -mllvm -$(1), $(call cc-option, --param $(1)))
33 CFLAGS_KASAN_SHADOW := $(call cc-option, -fsanitize=kernel-address \
35 $(call cc-option, -fsanitize=kernel-address \
43 $(call cc-param,asan-globals=1) \
44 $(call cc-param,asan-instrumentation-with-call-threshold=$(call_threshold)) \
45 $(call cc-param,asan-instrument-allocas=1)
48 CFLAGS_KASAN += $(call cc-param,asan-stack=$(stack_enable))
53 CFLAGS_KASAN += $(call c
[all...]
H A DMakefile.dtbinst23 $(call cmd,dtb_install)
25 dtbs := $(patsubst $(obj)/%,%,$(call read-file, $(obj)/dtbs-list))
31 $$(call cmd,dtb_install)
34 $(foreach d, $(sort $(dir $(dtbs))), $(eval $(call gen_install_rules,$(d))))
H A DMakefile.compiler4 # Usage: CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- m68k-linux-)
19 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
32 # Usage: aflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
34 as-option = $(call try-run,\
38 # Usage: aflags-y += $(call as-instr,instr,option1,option2)
40 as-instr = $(call try-run,\
44 # Usage: MY_CFLAGS += $(call __cc-option,$(CC),$(MY_CFLAGS),-march=winchip-c6,-march=i586)
45 __cc-option = $(call try-run,\
49 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
51 cc-option = $(call __c
[all...]
/linux-master/arch/csky/kernel/
H A Dsyscall_table.c8 #define __SYSCALL(nr, call)[nr] = (call),
H A Dftrace.c42 uint16_t *call, bool nolr)
46 call[0] = nolr ? NOP : PUSH_LR;
51 call[1] = MOVIH_LINK;
52 call[2] = callee >> 16;
53 call[3] = ORI_LINK;
54 call[4] = callee & 0xffff;
55 call[5] = JSR_LINK;
56 call[6] = 0;
60 call[1] = BSR_LINK |
62 call[
41 make_jbsr(unsigned long callee, unsigned long pc, uint16_t *call, bool nolr) argument
94 uint16_t call[7]; local
[all...]
/linux-master/arch/openrisc/kernel/
H A Dsys_call_table.c20 #define __SYSCALL(nr, call) [nr] = (call),
/linux-master/arch/hexagon/kernel/
H A Dsyscalltab.c3 * System call table for Hexagon
15 #define __SYSCALL(nr, call) [nr] = (call),
/linux-master/drivers/tee/amdtee/
H A DMakefile4 amdtee-objs += call.o
/linux-master/arch/arc/kernel/
H A Dsys.c13 #define __SYSCALL(nr, call) [nr] = (call),
/linux-master/tools/power/acpi/
H A DMakefile18 $(call descend,tools/$@,all)
20 $(call descend,tools/$(@:_clean=),clean)
22 $(call descend,tools/$(@:_install=),install)
24 $(call descend,tools/$(@:_uninstall=),uninstall)
/linux-master/arch/nios2/kernel/
H A Dsyscall_table.c13 #define __SYSCALL(nr, call) [nr] = (call),
/linux-master/arch/openrisc/
H A DMakefile31 KBUILD_CFLAGS += $(call cc-option,-mhard-mul)
33 KBUILD_CFLAGS += $(call cc-option,-msoft-mul)
37 KBUILD_CFLAGS += $(call cc-option,-mhard-div)
39 KBUILD_CFLAGS += $(call cc-option,-msoft-div)
43 KBUILD_CFLAGS += $(call cc-option,-mcmov)
47 KBUILD_CFLAGS += $(call cc-option,-mror)
51 KBUILD_CFLAGS += $(call cc-option,-mrori)
55 KBUILD_CFLAGS += $(call cc-option,-msext)
/linux-master/net/rxrpc/
H A Doutput.c48 static void rxrpc_tx_backoff(struct rxrpc_call *call, int ret) argument
51 if (call->tx_backoff < 1000)
52 call->tx_backoff += 100;
54 call->tx_backoff = 0;
60 * lets the far side know we're still interested in this call and helps keep
66 static void rxrpc_set_keepalive(struct rxrpc_call *call, ktime_t now) argument
68 ktime_t delay = ms_to_ktime(READ_ONCE(call->next_rx_timo) / 6);
70 call->keepalive_at = ktime_add(ktime_get_real(), delay);
71 trace_rxrpc_timer_set(call, delay, rxrpc_timer_trace_keepalive);
77 static void rxrpc_fill_out_ack(struct rxrpc_call *call, argument
150 rxrpc_begin_rtt_probe(struct rxrpc_call *call, rxrpc_serial_t serial, ktime_t now, enum rxrpc_rtt_tx_trace why) argument
178 rxrpc_send_ack_packet(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
232 rxrpc_send_ACK(struct rxrpc_call *call, u8 ack_reason, rxrpc_serial_t serial, enum rxrpc_propose_ack_trace why) argument
263 rxrpc_send_abort_packet(struct rxrpc_call *call) argument
327 rxrpc_prepare_data_subpacket(struct rxrpc_call *call, struct rxrpc_txbuf *txb, rxrpc_serial_t serial) argument
384 rxrpc_prepare_data_packet(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
399 rxrpc_tstamp_data_packets(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
432 rxrpc_send_data_packet(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
699 rxrpc_instant_resend(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
709 rxrpc_transmit_one(struct rxrpc_call *call, struct rxrpc_txbuf *txb) argument
[all...]
H A Dtxbuf.c19 struct rxrpc_txbuf *rxrpc_alloc_data_txbuf(struct rxrpc_call *call, size_t data_size, argument
35 mutex_lock(&call->conn->tx_data_alloc_lock);
36 buf = page_frag_alloc_align(&call->conn->tx_data_alloc, total, gfp,
38 mutex_unlock(&call->conn->tx_data_alloc_lock);
50 txb->call_debug_id = call->debug_id;
55 txb->flags = call->conn->out_clientflag;
57 txb->seq = call->tx_prepared + 1;
64 whdr->epoch = htonl(call->conn->proto.epoch);
65 whdr->cid = htonl(call->cid);
66 whdr->callNumber = htonl(call
85 rxrpc_alloc_ack_txbuf(struct rxrpc_call *call, size_t sack_size) argument
209 rxrpc_shrink_call_tx_buffer(struct rxrpc_call *call) argument
[all...]
H A Dcall_accept.c2 /* incoming call handling
25 static void rxrpc_dummy_notify(struct sock *sk, struct rxrpc_call *call, argument
31 * Preallocate a single service call, connection and peer and, if possible,
41 struct rxrpc_call *call, *xcall; local
98 call = rxrpc_alloc_call(rx, gfp, debug_id);
99 if (!call)
101 call->flags |= (1 << RXRPC_CALL_IS_SERVICE);
102 rxrpc_set_call_state(call, RXRPC_CALL_SERVER_PREALLOC);
103 __set_bit(RXRPC_CALL_EV_INITIAL_PING, &call->events);
105 trace_rxrpc_call(call
220 struct rxrpc_call *call = b->call_backlog[tail]; local
251 struct rxrpc_call *call; local
337 struct rxrpc_call *call = NULL; local
[all...]
/linux-master/arch/microblaze/boot/
H A DMakefile11 $(call if_changed,objcopy)
14 $(call if_changed,uimage)
17 $(call if_changed,gzip)
26 $(call if_changed,objcopy)
29 $(call if_changed,uimage)
32 $(call if_changed,copy)
35 $(call if_changed,strip)
/linux-master/arch/arm64/boot/
H A DMakefile22 $(call if_changed,objcopy)
25 $(call if_changed,bzip2)
28 $(call if_changed,gzip)
31 $(call if_changed,lz4)
34 $(call if_changed,lzma)
37 $(call if_changed,lzo)
40 $(call if_changed,zstd)
/linux-master/arch/csky/boot/
H A DMakefile5 $(call if_changed,objcopy)
15 $(call if_changed,$(compress-y))
23 $(call if_changed,uimage)
/linux-master/tools/tracing/rtla/
H A DMakefile.config13 $(call feature_check,libtraceevent)
15 $(call detected,CONFIG_LIBTRACEEVENT)
23 $(call lib_setup,traceevent)
29 $(call feature_check,libtracefs)
31 $(call detected,CONFIG_LIBTRACEFS)
39 $(call lib_setup,tracefs)
H A DMakefile.rtla10 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
11 $(call allow-override,AR,$(CROSS_COMPILE)ar)
12 $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
13 $(call allow-override,PKG_CONFIG,pkg-config)
14 $(call allow-override,LD_SO_CONF_PATH,/etc/ld.so.conf.d/)
15 $(call allow-override,LDCONFIG,ldconfig)
41 $(call QUIET_INSTALL,rtla)$(INSTALL) rtla -m 755 $(DESTDIR)$(BINDIR)
/linux-master/tools/verification/rv/
H A DMakefile.config13 $(call feature_check,libtraceevent)
15 $(call detected,CONFIG_LIBTRACEEVENT)
23 $(call lib_setup,traceevent)
29 $(call feature_check,libtracefs)
31 $(call detected,CONFIG_LIBTRACEFS)
39 $(call lib_setup,tracefs)
H A DMakefile.rv10 $(call allow-override,CC,$(CROSS_COMPILE)gcc)
11 $(call allow-override,AR,$(CROSS_COMPILE)ar)
12 $(call allow-override,STRIP,$(CROSS_COMPILE)strip)
13 $(call allow-override,PKG_CONFIG,pkg-config)
14 $(call allow-override,LD_SO_CONF_PATH,/etc/ld.so.conf.d/)
15 $(call allow-override,LDCONFIG,ldconfig)
40 $(call QUIET_INSTALL,rv)$(INSTALL) $(OUTPUT)rv -m 755 $(DESTDIR)$(BINDIR)
/linux-master/include/trace/events/
H A Dbpf_test_run.h29 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \
30 DEFINE_EVENT_WRITABLE(template, call, PARAMS(proto), \
34 #define BPF_TEST_RUN_DEFINE_EVENT(template, call, proto, args, size) \
35 DEFINE_EVENT(template, call, PARAMS(proto), PARAMS(args))

Completed in 395 milliseconds

1234567891011>>